Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 12 additions & 9 deletions specs/electra/builder.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,23 @@ specification.

| Name | Value |
| - | - |
| `MAX_DEPOSIT_REQUESTS_PER_PAYLOAD` | `uint64(2**13)` (= 8,192) | Maximum number of deposit receipts allowed in each payload |
| `MAX_DEPOSIT_REQUESTS_PER_PAYLOAD` | `uint64(2**13)` (= 8,192) | Maximum number of execution layer deposit requests in each payload |
| `MAX_WITHDRAWAL_REQUESTS_PER_PAYLOAD` | `uint64(2**4)` (= 16)| Maximum number of execution layer withdrawal requests in each payload |
| `MAX_CONSOLIDATION_REQUESTS_PER_PAYLOAD` | `uint64(1)` (= 1) | Maximum number of execution layer consolidation requests in each payload |

## Containers

#### New `DepositRequest`

```python
class DepositRequest(Container):
pubkey: BLSPubkey
withdrawal_credentials: Bytes32
amount: Gwei
signature: BLSSignature
index: uint64
```

#### New `WithdrawalRequest`

```python
Expand All @@ -55,14 +66,6 @@ class ConsolidationRequest(Container):
target_pubkey: BLSPubkey
```

#### New `PendingConsolidation`

```python
class PendingConsolidation(Container):
source_index: ValidatorIndex
target_index: ValidatorIndex
```

#### New `ExecutionRequests`

```python
Expand Down
Loading