2024-05-28 08:24:11 +00:00
|
|
|
# EIP6800 -- The Beacon Chain
|
2023-01-26 08:14:08 +00:00
|
|
|
|
|
|
|
## Table of contents
|
|
|
|
|
|
|
|
<!-- TOC -->
|
|
|
|
<!-- START doctoc generated TOC please keep comment here to allow auto update -->
|
|
|
|
<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
|
|
|
|
|
|
|
|
- [Introduction](#introduction)
|
|
|
|
- [Custom types](#custom-types)
|
|
|
|
- [Preset](#preset)
|
|
|
|
- [Execution](#execution)
|
|
|
|
- [Containers](#containers)
|
|
|
|
- [Extended containers](#extended-containers)
|
|
|
|
- [`ExecutionPayload`](#executionpayload)
|
|
|
|
- [`ExecutionPayloadHeader`](#executionpayloadheader)
|
|
|
|
- [New containers](#new-containers)
|
|
|
|
- [`SuffixStateDiff`](#suffixstatediff)
|
|
|
|
- [`StemStateDiff`](#stemstatediff)
|
|
|
|
- [`IPAProof`](#ipaproof)
|
|
|
|
- [`VerkleProof`](#verkleproof)
|
|
|
|
- [`ExecutionWitness`](#executionwitness)
|
|
|
|
- [Beacon chain state transition function](#beacon-chain-state-transition-function)
|
|
|
|
- [Block processing](#block-processing)
|
|
|
|
- [Execution payload](#execution-payload)
|
|
|
|
- [`process_execution_payload`](#process_execution_payload)
|
|
|
|
- [Testing](#testing)
|
|
|
|
|
|
|
|
<!-- END doctoc generated TOC please keep comment here to allow auto update -->
|
|
|
|
<!-- /TOC -->
|
|
|
|
|
|
|
|
## Introduction
|
|
|
|
|
2024-05-27 10:46:30 +00:00
|
|
|
This upgrade adds transaction execution to the beacon chain as part of the eip6800 upgrade.
|
2023-01-26 08:14:08 +00:00
|
|
|
|
|
|
|
## Custom types
|
|
|
|
|
|
|
|
| Name | SSZ equivalent | Description |
|
|
|
|
| - | - | - |
|
2023-01-27 10:47:26 +00:00
|
|
|
| `BanderwagonGroupElement` | `Bytes32` | |
|
|
|
|
| `BanderwagonFieldElement` | `Bytes32` | |
|
2023-01-26 08:14:08 +00:00
|
|
|
| `Stem` | `Bytes31` | |
|
|
|
|
|
|
|
|
## Preset
|
|
|
|
|
|
|
|
### Execution
|
|
|
|
|
|
|
|
| Name | Value |
|
|
|
|
| - | - |
|
2024-05-28 08:24:11 +00:00
|
|
|
| `MAX_STEMS` | `uint64(2**16)` (= 65,536) |
|
|
|
|
| `MAX_COMMITMENTS_PER_STEM` | `uint64(33)` |
|
|
|
|
| `VERKLE_WIDTH` | `uint64(2**8)` (= 256) |
|
|
|
|
| `IPA_PROOF_DEPTH` | `uint64(2**3)` (= 8) |
|
2023-01-26 08:14:08 +00:00
|
|
|
|
|
|
|
## Containers
|
|
|
|
|
|
|
|
### Extended containers
|
|
|
|
|
|
|
|
#### `ExecutionPayload`
|
|
|
|
|
|
|
|
```python
|
|
|
|
class ExecutionPayload(Container):
|
|
|
|
# Execution block header fields
|
|
|
|
parent_hash: Hash32
|
|
|
|
fee_recipient: ExecutionAddress # 'beneficiary' in the yellow paper
|
|
|
|
state_root: Bytes32
|
|
|
|
receipts_root: Bytes32
|
|
|
|
logs_bloom: ByteVector[BYTES_PER_LOGS_BLOOM]
|
|
|
|
prev_randao: Bytes32 # 'difficulty' in the yellow paper
|
|
|
|
block_number: uint64 # 'number' in the yellow paper
|
|
|
|
gas_limit: uint64
|
|
|
|
gas_used: uint64
|
|
|
|
timestamp: uint64
|
|
|
|
extra_data: ByteList[MAX_EXTRA_DATA_BYTES]
|
|
|
|
base_fee_per_gas: uint256
|
2024-05-27 10:46:30 +00:00
|
|
|
# Extra payload fields
|
2023-01-26 08:14:08 +00:00
|
|
|
block_hash: Hash32 # Hash of execution block
|
|
|
|
transactions: List[Transaction, MAX_TRANSACTIONS_PER_PAYLOAD]
|
2024-05-27 10:46:30 +00:00
|
|
|
withdrawals: List[Withdrawal, MAX_WITHDRAWALS_PER_PAYLOAD]
|
2024-05-28 08:24:11 +00:00
|
|
|
blob_gas_used: uint64
|
|
|
|
excess_blob_gas: uint64
|
|
|
|
execution_witness: ExecutionWitness # [New in EIP6800]
|
2023-01-26 08:14:08 +00:00
|
|
|
```
|
|
|
|
|
|
|
|
#### `ExecutionPayloadHeader`
|
|
|
|
|
|
|
|
```python
|
|
|
|
class ExecutionPayloadHeader(Container):
|
|
|
|
# Execution block header fields
|
|
|
|
parent_hash: Hash32
|
|
|
|
fee_recipient: ExecutionAddress
|
|
|
|
state_root: Bytes32
|
|
|
|
receipts_root: Bytes32
|
|
|
|
logs_bloom: ByteVector[BYTES_PER_LOGS_BLOOM]
|
|
|
|
prev_randao: Bytes32
|
|
|
|
block_number: uint64
|
|
|
|
gas_limit: uint64
|
|
|
|
gas_used: uint64
|
|
|
|
timestamp: uint64
|
|
|
|
extra_data: ByteList[MAX_EXTRA_DATA_BYTES]
|
|
|
|
base_fee_per_gas: uint256
|
2024-05-27 10:46:30 +00:00
|
|
|
# Extra payload fields
|
2023-01-26 08:14:08 +00:00
|
|
|
block_hash: Hash32 # Hash of execution block
|
|
|
|
transactions_root: Root
|
2024-05-27 10:46:30 +00:00
|
|
|
withdrawals_root: Root
|
2024-05-28 08:24:11 +00:00
|
|
|
blob_gas_used: uint64
|
|
|
|
excess_data_gas: uint64
|
|
|
|
execution_witness_root: Root # [New in EIP6800]
|
2023-01-26 08:14:08 +00:00
|
|
|
```
|
|
|
|
|
|
|
|
### New containers
|
|
|
|
|
|
|
|
#### `SuffixStateDiff`
|
|
|
|
|
|
|
|
```python
|
|
|
|
class SuffixStateDiff(Container):
|
2024-05-28 08:24:11 +00:00
|
|
|
suffix: Bytes1
|
2023-01-26 08:14:08 +00:00
|
|
|
# Null means not currently present
|
2023-02-10 13:51:14 +00:00
|
|
|
current_value: Optional[Bytes32]
|
2023-01-26 08:14:08 +00:00
|
|
|
# Null means value not updated
|
2023-02-10 13:51:14 +00:00
|
|
|
new_value: Optional[Bytes32]
|
2023-01-26 08:14:08 +00:00
|
|
|
```
|
|
|
|
|
2024-05-27 12:10:58 +00:00
|
|
|
*Note*: on the Kaustinen testnet, `new_value` is omitted from the container.
|
2023-01-26 08:14:08 +00:00
|
|
|
|
|
|
|
#### `StemStateDiff`
|
|
|
|
|
|
|
|
```python
|
|
|
|
class StemStateDiff(Container):
|
|
|
|
stem: Stem
|
|
|
|
# Valid only if list is sorted by suffixes
|
|
|
|
suffix_diffs: List[SuffixStateDiff, VERKLE_WIDTH]
|
|
|
|
```
|
|
|
|
|
|
|
|
#### `IPAProof`
|
|
|
|
|
|
|
|
```python
|
2024-05-28 08:24:11 +00:00
|
|
|
class IPAProof(Container):
|
2023-03-10 08:34:44 +00:00
|
|
|
cl: Vector[BanderwagonGroupElement, IPA_PROOF_DEPTH]
|
|
|
|
cr: Vector[BanderwagonGroupElement, IPA_PROOF_DEPTH]
|
2023-01-27 10:47:26 +00:00
|
|
|
final_evaluation = BanderwagonFieldElement
|
2023-01-26 08:14:08 +00:00
|
|
|
```
|
|
|
|
|
|
|
|
#### `VerkleProof`
|
|
|
|
|
|
|
|
```python
|
|
|
|
class VerkleProof(Container):
|
2023-01-27 10:47:26 +00:00
|
|
|
other_stems: List[Bytes31, MAX_STEMS]
|
2024-05-27 09:53:38 +00:00
|
|
|
depth_extension_present: ByteList[MAX_STEMS]
|
2023-01-27 10:47:26 +00:00
|
|
|
commitments_by_path: List[BanderwagonGroupElement, MAX_STEMS * MAX_COMMITMENTS_PER_STEM]
|
2023-03-09 14:33:15 +00:00
|
|
|
d: BanderwagonGroupElement
|
2024-05-28 08:24:11 +00:00
|
|
|
ipa_proof: IPAProof
|
2023-01-26 08:14:08 +00:00
|
|
|
```
|
|
|
|
|
|
|
|
#### `ExecutionWitness`
|
|
|
|
|
|
|
|
```python
|
2024-05-28 08:24:11 +00:00
|
|
|
class ExecutionWitness(Container):
|
|
|
|
state_diff: List[StemStateDiff, MAX_STEMS]
|
2023-01-26 08:14:08 +00:00
|
|
|
verkle_proof: VerkleProof
|
|
|
|
```
|
|
|
|
|
|
|
|
## Beacon chain state transition function
|
|
|
|
|
|
|
|
### Block processing
|
|
|
|
|
|
|
|
#### Execution payload
|
|
|
|
|
|
|
|
##### `process_execution_payload`
|
|
|
|
|
|
|
|
```python
|
2024-05-28 08:24:11 +00:00
|
|
|
def process_execution_payload(state: BeaconState, body: BeaconBlockBody, execution_engine: ExecutionEngine) -> None:
|
|
|
|
payload = body.execution_payload
|
|
|
|
|
2023-01-26 08:14:08 +00:00
|
|
|
# Verify consistency of the parent hash with respect to the previous execution payload header
|
2024-05-28 08:24:11 +00:00
|
|
|
assert payload.parent_hash == state.latest_execution_payload_header.block_hash
|
2023-01-26 08:14:08 +00:00
|
|
|
# Verify prev_randao
|
|
|
|
assert payload.prev_randao == get_randao_mix(state, get_current_epoch(state))
|
|
|
|
# Verify timestamp
|
|
|
|
assert payload.timestamp == compute_timestamp_at_slot(state, state.slot)
|
2024-05-28 08:24:11 +00:00
|
|
|
|
|
|
|
# Verify commitments are under limit
|
|
|
|
assert len(body.blob_kzg_commitments) <= MAX_BLOBS_PER_BLOCK
|
|
|
|
|
2023-01-26 08:14:08 +00:00
|
|
|
# Verify the execution payload is valid
|
2024-05-28 08:24:11 +00:00
|
|
|
# Pass `versioned_hashes` to Execution Engine
|
|
|
|
# Pass `parent_beacon_block_root` to Execution Engine
|
|
|
|
versioned_hashes = [kzg_commitment_to_versioned_hash(commitment) for commitment in body.blob_kzg_commitments]
|
|
|
|
assert execution_engine.verify_and_notify_new_payload(
|
|
|
|
NewPayloadRequest(
|
|
|
|
execution_payload=payload,
|
|
|
|
versioned_hashes=versioned_hashes,
|
|
|
|
parent_beacon_block_root=state.latest_block_header.parent_root,
|
|
|
|
)
|
|
|
|
)
|
2024-05-27 10:46:30 +00:00
|
|
|
|
2023-01-26 08:14:08 +00:00
|
|
|
# Cache execution payload header
|
|
|
|
state.latest_execution_payload_header = ExecutionPayloadHeader(
|
|
|
|
parent_hash=payload.parent_hash,
|
|
|
|
fee_recipient=payload.fee_recipient,
|
|
|
|
state_root=payload.state_root,
|
|
|
|
receipts_root=payload.receipts_root,
|
|
|
|
logs_bloom=payload.logs_bloom,
|
|
|
|
prev_randao=payload.prev_randao,
|
|
|
|
block_number=payload.block_number,
|
|
|
|
gas_limit=payload.gas_limit,
|
|
|
|
gas_used=payload.gas_used,
|
|
|
|
timestamp=payload.timestamp,
|
|
|
|
extra_data=payload.extra_data,
|
|
|
|
base_fee_per_gas=payload.base_fee_per_gas,
|
|
|
|
block_hash=payload.block_hash,
|
|
|
|
transactions_root=hash_tree_root(payload.transactions),
|
2024-05-27 10:46:30 +00:00
|
|
|
withdrawals_root=hash_tree_root(payload.withdrawals),
|
|
|
|
excess_data_gas=payload.excess_data_gas,
|
2024-05-28 08:39:35 +00:00
|
|
|
execution_witness_root=hash_tree_root(payload.execution_witness), # [New in EIP6800]
|
2023-01-26 08:14:08 +00:00
|
|
|
)
|
|
|
|
```
|
|
|
|
|
|
|
|
## Testing
|
|
|
|
|
2024-05-27 10:46:30 +00:00
|
|
|
TBD
|