Skip to content

Commit 0252e12

Browse files
committed
Add notes
1 parent db2c01a commit 0252e12

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

specs/electra/beacon-chain.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -199,6 +199,8 @@ class DepositReceipt(Container):
199199

200200
#### `PendingBalanceDeposit`
201201

202+
*Note*: The container is new in EIP7251.
203+
202204
```python
203205
class PendingBalanceDeposit(Container):
204206
index: ValidatorIndex
@@ -207,6 +209,8 @@ class PendingBalanceDeposit(Container):
207209

208210
#### `PendingPartialWithdrawal`
209211

212+
*Note*: The container is new in EIP7251.
213+
210214
```python
211215
class PendingPartialWithdrawal(Container):
212216
index: ValidatorIndex
@@ -215,6 +219,8 @@ class PendingPartialWithdrawal(Container):
215219
```
216220
#### `ExecutionLayerWithdrawalRequest`
217221

222+
*Note*: The container is new in EIP7251.
223+
218224
```python
219225
class ExecutionLayerWithdrawalRequest(Container):
220226
source_address: ExecutionAddress
@@ -224,6 +230,8 @@ class ExecutionLayerWithdrawalRequest(Container):
224230

225231
#### `Consolidation`
226232

233+
*Note*: The container is new in EIP7251.
234+
227235
```python
228236
class Consolidation(Container):
229237
source_index: ValidatorIndex
@@ -232,13 +240,19 @@ class Consolidation(Container):
232240
```
233241

234242
#### `SignedConsolidation`
243+
244+
*Note*: The container is new in EIP7251.
245+
235246
```python
236247
class SignedConsolidation(Container):
237248
message: Consolidation
238249
signature: BLSSignature
239250
```
240251

241252
#### `PendingConsolidation`
253+
254+
*Note*: The container is new in EIP7251.
255+
242256
```python
243257
class PendingConsolidation(Container):
244258
source_index: ValidatorIndex

0 commit comments

Comments
 (0)