We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1a5671d commit 99ccfe0Copy full SHA for 99ccfe0
specs/electra/beacon-chain.md
@@ -291,6 +291,23 @@ class Attestation(Container):
291
signature: BLSSignature
292
```
293
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
306
+class SignedAggregateAndProof(Container):
307
+ message: AggregateAndProof # [New in Electra:EIP7549]
308
+ signature: BLSSignature
309
310
311
#### `IndexedAttestation`
312
313
```python
0 commit comments