Skip to content

Commit 99ccfe0

Browse files
committed
Add electra version of AggregateAndProof
1 parent 1a5671d commit 99ccfe0

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

specs/electra/beacon-chain.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -291,6 +291,23 @@ class Attestation(Container):
291291
signature: BLSSignature
292292
```
293293

294+
#### `AggregateAndProof`
295+
296+
```python
297+
class AggregateAndProof(Container):
298+
aggregator_index: ValidatorIndex
299+
aggregate: Attestation # [New in Electra:EIP7549]
300+
selection_proof: BLSSignature
301+
```
302+
303+
#### `SignedAggregateAndProof`
304+
305+
```python
306+
class SignedAggregateAndProof(Container):
307+
message: AggregateAndProof # [New in Electra:EIP7549]
308+
signature: BLSSignature
309+
```
310+
294311
#### `IndexedAttestation`
295312

296313
```python

0 commit comments

Comments
 (0)