2021-03-11 12:33:36 +00:00
|
|
|
# Ethereum 2.0 The Merge
|
|
|
|
|
2021-06-18 10:09:30 +00:00
|
|
|
**Warning**: This document is currently based on [Phase 0](../phase0/beacon-chain.md) and will be rebased on [Altair](../altair/beacon-chain.md).
|
2021-03-17 16:39:35 +00:00
|
|
|
|
2021-03-11 12:33:36 +00:00
|
|
|
**Notice**: This document is a work-in-progress for researchers and implementers.
|
|
|
|
|
|
|
|
## 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)
|
2021-03-29 18:56:43 +00:00
|
|
|
- [Custom types](#custom-types)
|
2021-03-11 12:33:36 +00:00
|
|
|
- [Constants](#constants)
|
|
|
|
- [Execution](#execution)
|
|
|
|
- [Containers](#containers)
|
|
|
|
- [Extended containers](#extended-containers)
|
|
|
|
- [`BeaconBlockBody`](#beaconblockbody)
|
|
|
|
- [`BeaconState`](#beaconstate)
|
|
|
|
- [New containers](#new-containers)
|
2021-04-08 08:29:05 +00:00
|
|
|
- [`ExecutionPayload`](#executionpayload)
|
|
|
|
- [`ExecutionPayloadHeader`](#executionpayloadheader)
|
2021-03-11 12:33:36 +00:00
|
|
|
- [Helper functions](#helper-functions)
|
2021-06-18 10:09:30 +00:00
|
|
|
- [Predicates](#predicates)
|
|
|
|
- [`is_merge_complete`](#is_merge_complete)
|
|
|
|
- [`is_merge_block`](#is_merge_block)
|
2021-05-06 00:21:52 +00:00
|
|
|
- [`is_execution_enabled`](#is_execution_enabled)
|
2021-06-18 10:09:30 +00:00
|
|
|
- [Misc](#misc)
|
|
|
|
- [`compute_timestamp_at_slot`](#compute_timestamp_at_slot)
|
|
|
|
- [Beacon chain state transition function](#beacon-chain-state-transition-function)
|
|
|
|
- [Execution engine](#execution-engine)
|
|
|
|
- [`on_payload`](#on_payload)
|
2021-03-11 12:33:36 +00:00
|
|
|
- [Block processing](#block-processing)
|
2021-06-18 10:09:30 +00:00
|
|
|
- [Execution payload processing](#execution-payload-processing)
|
|
|
|
- [`process_execution_payload`](#process_execution_payload)
|
|
|
|
- [Testing](#testing)
|
2021-03-11 12:33:36 +00:00
|
|
|
|
|
|
|
<!-- END doctoc generated TOC please keep comment here to allow auto update -->
|
|
|
|
<!-- /TOC -->
|
|
|
|
|
|
|
|
## Introduction
|
|
|
|
|
2021-06-18 10:09:30 +00:00
|
|
|
This patch adds transaction execution to the beacon chain as part of the Merge fork.
|
2021-03-11 12:33:36 +00:00
|
|
|
|
2021-03-26 19:20:23 +00:00
|
|
|
## Custom types
|
|
|
|
|
2021-06-18 10:09:30 +00:00
|
|
|
*Note*: The `Transaction` type is a stub which is not final.
|
2021-03-26 19:20:23 +00:00
|
|
|
|
|
|
|
| Name | SSZ equivalent | Description |
|
|
|
|
| - | - | - |
|
2021-06-18 10:09:30 +00:00
|
|
|
| `OpaqueTransaction` | `ByteList[MAX_BYTES_PER_OPAQUE_TRANSACTION]` | a [typed transaction envelope](https://eips.ethereum.org/EIPS/eip-2718#opaque-byte-array-rather-than-an-rlp-array) structured as `TransactionType \|\| TransactionPayload` |
|
|
|
|
| `Transaction` | `Union[OpaqueTransaction]` | a transaction |
|
2021-03-26 19:20:23 +00:00
|
|
|
|
2021-03-11 12:33:36 +00:00
|
|
|
## Constants
|
|
|
|
|
|
|
|
### Execution
|
|
|
|
|
|
|
|
| Name | Value |
|
|
|
|
| - | - |
|
2021-03-26 19:20:23 +00:00
|
|
|
| `MAX_BYTES_PER_OPAQUE_TRANSACTION` | `uint64(2**20)` (= 1,048,576) |
|
2021-06-18 10:09:30 +00:00
|
|
|
| `MAX_TRANSACTIONS_PER_PAYLOAD` | `uint64(2**14)` (= 16,384) |
|
2021-03-24 10:30:29 +00:00
|
|
|
| `BYTES_PER_LOGS_BLOOM` | `uint64(2**8)` (= 256) |
|
2021-03-11 12:33:36 +00:00
|
|
|
|
|
|
|
## Containers
|
|
|
|
|
|
|
|
### Extended containers
|
|
|
|
|
|
|
|
#### `BeaconBlockBody`
|
|
|
|
|
|
|
|
```python
|
|
|
|
class BeaconBlockBody(phase0.BeaconBlockBody):
|
2021-06-18 10:09:30 +00:00
|
|
|
# Execution
|
2021-04-08 08:29:05 +00:00
|
|
|
execution_payload: ExecutionPayload # [New in Merge]
|
2021-03-11 12:33:36 +00:00
|
|
|
```
|
|
|
|
|
|
|
|
#### `BeaconState`
|
|
|
|
|
|
|
|
```python
|
2021-03-22 15:14:31 +00:00
|
|
|
class BeaconState(phase0.BeaconState):
|
2021-06-18 10:09:30 +00:00
|
|
|
# Execution
|
2021-04-08 08:29:05 +00:00
|
|
|
latest_execution_payload_header: ExecutionPayloadHeader # [New in Merge]
|
2021-03-11 12:33:36 +00:00
|
|
|
```
|
|
|
|
|
|
|
|
### New containers
|
|
|
|
|
2021-04-08 08:29:05 +00:00
|
|
|
#### `ExecutionPayload`
|
2021-03-11 12:33:36 +00:00
|
|
|
|
|
|
|
```python
|
2021-04-08 08:29:05 +00:00
|
|
|
class ExecutionPayload(Container):
|
2021-06-18 10:09:30 +00:00
|
|
|
# Execution block header fields
|
2021-04-08 08:48:03 +00:00
|
|
|
parent_hash: Hash32
|
2021-06-18 10:09:30 +00:00
|
|
|
coinbase: Bytes20 # 'beneficiary' in the yellow paper
|
2021-03-11 12:33:36 +00:00
|
|
|
state_root: Bytes32
|
2021-06-18 10:09:30 +00:00
|
|
|
receipt_root: Bytes32 # 'receipts root' in the yellow paper
|
2021-06-18 18:28:38 +00:00
|
|
|
logs_bloom: ByteVector[BYTES_PER_LOGS_BLOOM]
|
|
|
|
random: Bytes32 # 'difficulty' in the yellow paper
|
2021-06-18 10:09:30 +00:00
|
|
|
block_number: uint64 # 'number' in the yellow paper
|
2021-03-11 12:33:36 +00:00
|
|
|
gas_limit: uint64
|
|
|
|
gas_used: uint64
|
2021-04-13 13:08:47 +00:00
|
|
|
timestamp: uint64
|
2021-06-18 10:09:30 +00:00
|
|
|
# Extra payload fields
|
|
|
|
block_hash: Hash32 # Hash of execution block
|
|
|
|
transactions: List[Transaction, MAX_TRANSACTIONS_PER_PAYLOAD]
|
2021-03-11 12:33:36 +00:00
|
|
|
```
|
|
|
|
|
2021-04-08 08:29:05 +00:00
|
|
|
#### `ExecutionPayloadHeader`
|
2021-04-02 14:48:02 +00:00
|
|
|
|
|
|
|
```python
|
2021-04-08 08:29:05 +00:00
|
|
|
class ExecutionPayloadHeader(Container):
|
2021-06-18 10:09:30 +00:00
|
|
|
# Execution block header fields
|
2021-04-08 08:48:03 +00:00
|
|
|
parent_hash: Hash32
|
2021-04-02 14:48:02 +00:00
|
|
|
coinbase: Bytes20
|
|
|
|
state_root: Bytes32
|
|
|
|
receipt_root: Bytes32
|
|
|
|
logs_bloom: ByteVector[BYTES_PER_LOGS_BLOOM]
|
2021-06-17 15:20:17 +00:00
|
|
|
random: Bytes32
|
2021-06-18 10:09:30 +00:00
|
|
|
block_number: uint64
|
2021-04-02 14:48:02 +00:00
|
|
|
gas_limit: uint64
|
|
|
|
gas_used: uint64
|
2021-04-13 13:08:47 +00:00
|
|
|
timestamp: uint64
|
2021-06-18 10:09:30 +00:00
|
|
|
# Extra payload fields
|
|
|
|
block_hash: Hash32 # Hash of execution block
|
2021-04-06 05:48:33 +00:00
|
|
|
transactions_root: Root
|
2021-04-02 14:48:02 +00:00
|
|
|
```
|
|
|
|
|
2021-06-18 10:09:30 +00:00
|
|
|
## Helper functions
|
2021-05-10 13:48:37 +00:00
|
|
|
|
2021-06-18 10:09:30 +00:00
|
|
|
### Predicates
|
2021-05-10 13:48:37 +00:00
|
|
|
|
2021-06-18 10:09:30 +00:00
|
|
|
#### `is_merge_complete`
|
2021-05-10 13:48:37 +00:00
|
|
|
|
|
|
|
```python
|
2021-06-18 10:09:30 +00:00
|
|
|
def is_merge_complete(state: BeaconState) -> bool:
|
|
|
|
return state.latest_execution_payload_header != ExecutionPayloadHeader()
|
2021-05-10 13:48:37 +00:00
|
|
|
```
|
|
|
|
|
2021-06-18 10:09:30 +00:00
|
|
|
#### `is_merge_block`
|
2021-03-11 12:33:36 +00:00
|
|
|
|
2021-06-18 10:09:30 +00:00
|
|
|
```python
|
|
|
|
def is_merge_block(state: BeaconState, body: BeaconBlockBody) -> bool:
|
|
|
|
return not is_merge_complete(state) and body.execution_payload != ExecutionPayload()
|
|
|
|
```
|
2021-03-11 12:33:36 +00:00
|
|
|
|
2021-05-06 00:21:52 +00:00
|
|
|
#### `is_execution_enabled`
|
|
|
|
|
|
|
|
```python
|
2021-06-18 10:09:30 +00:00
|
|
|
def is_execution_enabled(state: BeaconState, body: BeaconBlockBody) -> bool:
|
|
|
|
return is_merge_block(state, body) or is_merge_complete(state)
|
2021-05-06 00:21:52 +00:00
|
|
|
```
|
|
|
|
|
2021-06-18 10:09:30 +00:00
|
|
|
### Misc
|
2021-03-11 12:33:36 +00:00
|
|
|
|
2021-06-18 10:09:30 +00:00
|
|
|
#### `compute_timestamp_at_slot`
|
2021-03-11 12:33:36 +00:00
|
|
|
|
2021-06-18 10:09:30 +00:00
|
|
|
*Note*: This function is unsafe with respect to overflows and underflows.
|
2021-03-11 12:33:36 +00:00
|
|
|
|
|
|
|
```python
|
2021-06-18 10:09:30 +00:00
|
|
|
def compute_timestamp_at_slot(state: BeaconState, slot: Slot) -> uint64:
|
|
|
|
slots_since_genesis = slot - GENESIS_SLOT
|
|
|
|
return uint64(state.genesis_time + slots_since_genesis * SECONDS_PER_SLOT)
|
2021-03-11 12:33:36 +00:00
|
|
|
```
|
|
|
|
|
2021-06-18 10:09:30 +00:00
|
|
|
## Beacon chain state transition function
|
2021-04-08 09:26:32 +00:00
|
|
|
|
2021-06-18 10:09:30 +00:00
|
|
|
### Execution engine
|
|
|
|
|
|
|
|
The implementation-dependent `ExecutionEngine` protocol encapsulates the execution sub-system logic via:
|
|
|
|
|
|
|
|
* a state object `self.execution_state` of type `ExecutionState`
|
|
|
|
* a state transition function `self.on_payload` which mutates `self.execution_state`
|
|
|
|
|
|
|
|
#### `on_payload`
|
2021-04-14 06:53:30 +00:00
|
|
|
|
2021-04-08 09:26:32 +00:00
|
|
|
```python
|
2021-06-18 10:09:30 +00:00
|
|
|
def on_payload(self: ExecutionEngine, execution_payload: ExecutionPayload) -> bool:
|
|
|
|
"""
|
|
|
|
Returns ``True`` iff ``execution_payload`` is valid with respect to ``self.execution_state``.
|
|
|
|
"""
|
|
|
|
...
|
2021-04-08 09:26:32 +00:00
|
|
|
```
|
|
|
|
|
2021-06-18 10:09:30 +00:00
|
|
|
The above function is accessed through the `EXECUTION_ENGINE` module which instantiates the `ExecutionEngine` protocol.
|
|
|
|
|
2021-03-11 12:33:36 +00:00
|
|
|
### Block processing
|
|
|
|
|
|
|
|
```python
|
|
|
|
def process_block(state: BeaconState, block: BeaconBlock) -> None:
|
|
|
|
process_block_header(state, block)
|
|
|
|
process_randao(state, block.body)
|
2021-03-20 13:21:11 +00:00
|
|
|
process_eth1_data(state, block.body)
|
2021-03-11 12:33:36 +00:00
|
|
|
process_operations(state, block.body)
|
2021-06-18 10:09:30 +00:00
|
|
|
if is_execution_enabled(state, block.body):
|
2021-06-18 18:28:38 +00:00
|
|
|
# [New in Merge]
|
2021-06-11 10:05:19 +00:00
|
|
|
randao_mix = get_randao_mix(state, get_current_epoch(state))
|
|
|
|
process_execution_payload(state, block.body.execution_payload, randao_mix, EXECUTION_ENGINE)
|
2021-03-11 12:33:36 +00:00
|
|
|
```
|
|
|
|
|
2021-06-18 10:09:30 +00:00
|
|
|
### Execution payload processing
|
2021-03-11 12:33:36 +00:00
|
|
|
|
2021-06-18 10:09:30 +00:00
|
|
|
#### `process_execution_payload`
|
2021-03-11 12:33:36 +00:00
|
|
|
|
|
|
|
```python
|
2021-05-12 00:40:23 +00:00
|
|
|
def process_execution_payload(state: BeaconState,
|
2021-06-18 18:28:38 +00:00
|
|
|
payload: ExecutionPayload,
|
2021-06-11 10:05:19 +00:00
|
|
|
randao_mix: Bytes32,
|
2021-05-12 00:40:23 +00:00
|
|
|
execution_engine: ExecutionEngine) -> None:
|
2021-06-18 18:28:38 +00:00
|
|
|
# Verify consistency of the parent hash, block number and random
|
2021-06-18 10:09:30 +00:00
|
|
|
if is_merge_complete(state):
|
|
|
|
assert payload.parent_hash == state.latest_execution_payload_header.block_hash
|
|
|
|
assert payload.block_number == state.latest_execution_payload_header.block_number + uint64(1)
|
2021-06-18 18:28:38 +00:00
|
|
|
assert payload.random == randao_mix
|
2021-06-18 10:09:30 +00:00
|
|
|
# Verify timestamp
|
|
|
|
assert payload.timestamp == compute_timestamp_at_slot(state, state.slot)
|
|
|
|
# Verify the execution payload is valid
|
|
|
|
assert execution_engine.on_payload(payload)
|
|
|
|
# Cache execution payload
|
2021-04-08 08:29:05 +00:00
|
|
|
state.latest_execution_payload_header = ExecutionPayloadHeader(
|
2021-06-18 10:09:30 +00:00
|
|
|
parent_hash=payload.parent_hash,
|
|
|
|
coinbase=payload.coinbase,
|
|
|
|
state_root=payload.state_root,
|
|
|
|
receipt_root=payload.receipt_root,
|
2021-06-18 18:28:38 +00:00
|
|
|
logs_bloom=payload.logs_bloom,
|
|
|
|
random=payload.random,
|
2021-06-18 10:09:30 +00:00
|
|
|
block_number=payload.block_number,
|
|
|
|
gas_limit=payload.gas_limit,
|
|
|
|
gas_used=payload.gas_used,
|
|
|
|
timestamp=payload.timestamp,
|
|
|
|
block_hash=payload.block_hash,
|
|
|
|
transactions_root=hash_tree_root(payload.transactions),
|
2021-04-02 14:48:02 +00:00
|
|
|
)
|
2021-03-11 12:33:36 +00:00
|
|
|
```
|
2021-06-08 12:44:53 +00:00
|
|
|
|
2021-06-18 10:09:30 +00:00
|
|
|
## Testing
|
2021-06-08 12:44:53 +00:00
|
|
|
|
2021-06-18 10:09:30 +00:00
|
|
|
*Note*: The function `initialize_beacon_state_from_eth1` is modified for pure Merge testing only.
|
2021-06-08 12:44:53 +00:00
|
|
|
|
2021-06-18 10:09:30 +00:00
|
|
|
*Note*: The function `initialize_beacon_state_from_eth1` is modified to use `MERGE_FORK_VERSION` and initialize `latest_execution_payload_header`.
|
2021-06-08 12:44:53 +00:00
|
|
|
|
|
|
|
```python
|
|
|
|
def initialize_beacon_state_from_eth1(eth1_block_hash: Bytes32,
|
|
|
|
eth1_timestamp: uint64,
|
|
|
|
deposits: Sequence[Deposit]) -> BeaconState:
|
2021-06-11 16:50:11 +00:00
|
|
|
randao_seed = eth1_block_hash
|
2021-06-08 12:44:53 +00:00
|
|
|
fork = Fork(
|
|
|
|
previous_version=GENESIS_FORK_VERSION,
|
|
|
|
current_version=MERGE_FORK_VERSION, # [Modified in Merge]
|
|
|
|
epoch=GENESIS_EPOCH,
|
|
|
|
)
|
|
|
|
state = BeaconState(
|
|
|
|
genesis_time=eth1_timestamp + GENESIS_DELAY,
|
|
|
|
fork=fork,
|
|
|
|
eth1_data=Eth1Data(block_hash=eth1_block_hash, deposit_count=uint64(len(deposits))),
|
|
|
|
latest_block_header=BeaconBlockHeader(body_root=hash_tree_root(BeaconBlockBody())),
|
2021-06-11 16:50:11 +00:00
|
|
|
randao_mixes=[randao_seed] * EPOCHS_PER_HISTORICAL_VECTOR, # Seed RANDAO with Eth1 entropy
|
2021-06-08 12:44:53 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
# Process deposits
|
|
|
|
leaves = list(map(lambda deposit: deposit.data, deposits))
|
|
|
|
for index, deposit in enumerate(deposits):
|
|
|
|
deposit_data_list = List[DepositData, 2**DEPOSIT_CONTRACT_TREE_DEPTH](*leaves[:index + 1])
|
|
|
|
state.eth1_data.deposit_root = hash_tree_root(deposit_data_list)
|
|
|
|
process_deposit(state, deposit)
|
|
|
|
|
|
|
|
# Process activations
|
|
|
|
for index, validator in enumerate(state.validators):
|
|
|
|
balance = state.balances[index]
|
|
|
|
validator.effective_balance = min(balance - balance % EFFECTIVE_BALANCE_INCREMENT, MAX_EFFECTIVE_BALANCE)
|
|
|
|
if validator.effective_balance == MAX_EFFECTIVE_BALANCE:
|
|
|
|
validator.activation_eligibility_epoch = GENESIS_EPOCH
|
|
|
|
validator.activation_epoch = GENESIS_EPOCH
|
|
|
|
|
|
|
|
# Set genesis validators root for domain separation and chain versioning
|
|
|
|
state.genesis_validators_root = hash_tree_root(state.validators)
|
|
|
|
|
2021-06-18 10:09:30 +00:00
|
|
|
# [New in Merge] Initialize the execution payload header (with block number set to 0)
|
|
|
|
state.latest_execution_payload_header.block_hash = eth1_block_hash
|
|
|
|
state.latest_execution_payload_header.timestamp = eth1_timestamp
|
2021-06-18 18:28:38 +00:00
|
|
|
state.latest_execution_payload_header.random = randao_seed
|
2021-06-08 12:44:53 +00:00
|
|
|
|
|
|
|
return state
|
|
|
|
```
|