|
10 | 10 | - [Data structures](#data-structures) |
11 | 11 | - [**`FlashblocksPayloadV1`**](#flashblockspayloadv1) |
12 | 12 | - [**`ExecutionPayloadFlashblockResultV1`**](#executionpayloadflashblockresultv1) |
13 | | - - [**`ExecutionPayloadStaticV1`**](#executionpayloadstaticv1) |
| 13 | + - [**`ExecutionPayloadBaseV1`**](#executionpayloadbasev1) |
14 | 14 | - [**`Metadata`**](#metadata) |
15 | 15 | - [**`AccountMetadata`**](#accountmetadata) |
16 | 16 | - [**`StorageSlot`**](#storageslot) |
@@ -118,7 +118,7 @@ class FlashblocksPayloadV1(): |
118 | 118 | payload_id: Bytes8 |
119 | 119 | index: uint64 |
120 | 120 | parent_flash_hash: Optional[Bytes32] |
121 | | - base: Optional[ExecutionPayloadStaticV1] |
| 121 | + base: Optional[ExecutionPayloadBaseV1] |
122 | 122 | diff: ExecutionPayloadFlashblockResultV1 |
123 | 123 | metadata: FlashblocksMetadata |
124 | 124 | ``` |
@@ -166,12 +166,12 @@ class ExecutionPayloadFlashblockResultV1(): |
166 | 166 |
|
167 | 167 | All fields in this structure represent the cumulative state of the entire block up to and including the current flashblock, not just the changes from this specific flashblock. |
168 | 168 |
|
169 | | -### **`ExecutionPayloadStaticV1`** |
| 169 | +### **`ExecutionPayloadBaseV1`** |
170 | 170 |
|
171 | 171 | Container representing immutable fundamental block properties established at initial block creation, unchanged throughout construction. |
172 | 172 |
|
173 | 173 | ```python |
174 | | -class ExecutionPayloadStaticV1(): |
| 174 | +class ExecutionPayloadBaseV1(): |
175 | 175 | parent_beacon_block_root: Bytes32 |
176 | 176 | parent_hash: Bytes32 |
177 | 177 | fee_recipient: ExecutionAddress |
|
0 commit comments