introduce merge fork version
This commit is contained in:
parent
79fc41146d
commit
e2be7614cc
|
@ -13,8 +13,8 @@
|
||||||
- [Introduction](#introduction)
|
- [Introduction](#introduction)
|
||||||
- [Custom types](#custom-types)
|
- [Custom types](#custom-types)
|
||||||
- [Constants](#constants)
|
- [Constants](#constants)
|
||||||
- [Transition](#transition)
|
|
||||||
- [Execution](#execution)
|
- [Execution](#execution)
|
||||||
|
- [Configuration](#configuration)
|
||||||
- [Containers](#containers)
|
- [Containers](#containers)
|
||||||
- [Extended containers](#extended-containers)
|
- [Extended containers](#extended-containers)
|
||||||
- [`BeaconBlockBody`](#beaconblockbody)
|
- [`BeaconBlockBody`](#beaconblockbody)
|
||||||
|
@ -50,12 +50,6 @@ We define the following Python custom types for type hinting and readability:
|
||||||
|
|
||||||
## Constants
|
## Constants
|
||||||
|
|
||||||
### Transition
|
|
||||||
|
|
||||||
| Name | Value |
|
|
||||||
| - | - |
|
|
||||||
| `TRANSITION_TOTAL_DIFFICULTY` | **TBD** |
|
|
||||||
|
|
||||||
### Execution
|
### Execution
|
||||||
|
|
||||||
| Name | Value |
|
| Name | Value |
|
||||||
|
@ -64,6 +58,16 @@ We define the following Python custom types for type hinting and readability:
|
||||||
| `MAX_EXECUTION_TRANSACTIONS` | `uint64(2**14)` (= 16,384) |
|
| `MAX_EXECUTION_TRANSACTIONS` | `uint64(2**14)` (= 16,384) |
|
||||||
| `BYTES_PER_LOGS_BLOOM` | `uint64(2**8)` (= 256) |
|
| `BYTES_PER_LOGS_BLOOM` | `uint64(2**8)` (= 256) |
|
||||||
|
|
||||||
|
## Configuration
|
||||||
|
|
||||||
|
Warning: this configuration is not definitive.
|
||||||
|
|
||||||
|
| Name | Value |
|
||||||
|
| - | - |
|
||||||
|
| `MERGE_FORK_VERSION` | `Version('0x02000000')` |
|
||||||
|
| `MERGE_FORK_EPOCH` | `Epoch(18446744073709551615)` **TBD** |
|
||||||
|
| `TRANSITION_TOTAL_DIFFICULTY` | **TBD** |
|
||||||
|
|
||||||
## Containers
|
## Containers
|
||||||
|
|
||||||
### Extended containers
|
### Extended containers
|
||||||
|
|
Loading…
Reference in New Issue