Merge pull request #3997 from jtraglia/group-types

This commit is contained in:
Justin Traglia 2024-10-27 09:50:57 -05:00 committed by GitHub
commit 9849fb39e7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -24,12 +24,12 @@
- [Validator cycle](#validator-cycle)
- [Containers](#containers)
- [New containers](#new-containers)
- [`DepositRequest`](#depositrequest)
- [`PendingDeposit`](#pendingdeposit)
- [`PendingPartialWithdrawal`](#pendingpartialwithdrawal)
- [`PendingConsolidation`](#pendingconsolidation)
- [`DepositRequest`](#depositrequest)
- [`WithdrawalRequest`](#withdrawalrequest)
- [`ConsolidationRequest`](#consolidationrequest)
- [`PendingConsolidation`](#pendingconsolidation)
- [`ExecutionRequests`](#executionrequests)
- [Modified Containers](#modified-containers)
- [`AttesterSlashing`](#attesterslashing)
@ -201,19 +201,6 @@ The following values are (non-configurable) constants used throughout the specif
### New containers
#### `DepositRequest`
*Note*: The container is new in EIP6110.
```python
class DepositRequest(Container):
pubkey: BLSPubkey
withdrawal_credentials: Bytes32
amount: Gwei
signature: BLSSignature
index: uint64
```
#### `PendingDeposit`
*Note*: The container is new in EIP7251.
@ -237,6 +224,30 @@ class PendingPartialWithdrawal(Container):
amount: Gwei
withdrawable_epoch: Epoch
```
#### `PendingConsolidation`
*Note*: The container is new in EIP7251.
```python
class PendingConsolidation(Container):
source_index: ValidatorIndex
target_index: ValidatorIndex
```
#### `DepositRequest`
*Note*: The container is new in EIP6110.
```python
class DepositRequest(Container):
pubkey: BLSPubkey
withdrawal_credentials: Bytes32
amount: Gwei
signature: BLSSignature
index: uint64
```
#### `WithdrawalRequest`
*Note*: The container is new in EIP7251:EIP7002.
@ -259,16 +270,6 @@ class ConsolidationRequest(Container):
target_pubkey: BLSPubkey
```
#### `PendingConsolidation`
*Note*: The container is new in EIP7251.
```python
class PendingConsolidation(Container):
source_index: ValidatorIndex
target_index: ValidatorIndex
```
#### `ExecutionRequests`
*Note*: This container holds requests from the execution layer that are received in [