Add notes
This commit is contained in:
parent
db2c01a5f5
commit
0252e12d73
|
@ -199,6 +199,8 @@ class DepositReceipt(Container):
|
||||||
|
|
||||||
#### `PendingBalanceDeposit`
|
#### `PendingBalanceDeposit`
|
||||||
|
|
||||||
|
*Note*: The container is new in EIP7251.
|
||||||
|
|
||||||
```python
|
```python
|
||||||
class PendingBalanceDeposit(Container):
|
class PendingBalanceDeposit(Container):
|
||||||
index: ValidatorIndex
|
index: ValidatorIndex
|
||||||
|
@ -207,6 +209,8 @@ class PendingBalanceDeposit(Container):
|
||||||
|
|
||||||
#### `PendingPartialWithdrawal`
|
#### `PendingPartialWithdrawal`
|
||||||
|
|
||||||
|
*Note*: The container is new in EIP7251.
|
||||||
|
|
||||||
```python
|
```python
|
||||||
class PendingPartialWithdrawal(Container):
|
class PendingPartialWithdrawal(Container):
|
||||||
index: ValidatorIndex
|
index: ValidatorIndex
|
||||||
|
@ -215,6 +219,8 @@ class PendingPartialWithdrawal(Container):
|
||||||
```
|
```
|
||||||
#### `ExecutionLayerWithdrawalRequest`
|
#### `ExecutionLayerWithdrawalRequest`
|
||||||
|
|
||||||
|
*Note*: The container is new in EIP7251.
|
||||||
|
|
||||||
```python
|
```python
|
||||||
class ExecutionLayerWithdrawalRequest(Container):
|
class ExecutionLayerWithdrawalRequest(Container):
|
||||||
source_address: ExecutionAddress
|
source_address: ExecutionAddress
|
||||||
|
@ -224,6 +230,8 @@ class ExecutionLayerWithdrawalRequest(Container):
|
||||||
|
|
||||||
#### `Consolidation`
|
#### `Consolidation`
|
||||||
|
|
||||||
|
*Note*: The container is new in EIP7251.
|
||||||
|
|
||||||
```python
|
```python
|
||||||
class Consolidation(Container):
|
class Consolidation(Container):
|
||||||
source_index: ValidatorIndex
|
source_index: ValidatorIndex
|
||||||
|
@ -232,6 +240,9 @@ class Consolidation(Container):
|
||||||
```
|
```
|
||||||
|
|
||||||
#### `SignedConsolidation`
|
#### `SignedConsolidation`
|
||||||
|
|
||||||
|
*Note*: The container is new in EIP7251.
|
||||||
|
|
||||||
```python
|
```python
|
||||||
class SignedConsolidation(Container):
|
class SignedConsolidation(Container):
|
||||||
message: Consolidation
|
message: Consolidation
|
||||||
|
@ -239,6 +250,9 @@ class SignedConsolidation(Container):
|
||||||
```
|
```
|
||||||
|
|
||||||
#### `PendingConsolidation`
|
#### `PendingConsolidation`
|
||||||
|
|
||||||
|
*Note*: The container is new in EIP7251.
|
||||||
|
|
||||||
```python
|
```python
|
||||||
class PendingConsolidation(Container):
|
class PendingConsolidation(Container):
|
||||||
source_index: ValidatorIndex
|
source_index: ValidatorIndex
|
||||||
|
|
Loading…
Reference in New Issue