Add `Signature` SSZ obj
This commit is contained in:
parent
accd3cfd01
commit
8d5fd404a7
|
@ -21,6 +21,8 @@
|
||||||
- [Validator registry delta flags](#validator-registry-delta-flags)
|
- [Validator registry delta flags](#validator-registry-delta-flags)
|
||||||
- [Signature domains](#signature-domains)
|
- [Signature domains](#signature-domains)
|
||||||
- [Data structures](#data-structures)
|
- [Data structures](#data-structures)
|
||||||
|
- [Signatures](#signatures)
|
||||||
|
- [`Signature`](#signature)
|
||||||
- [Beacon chain operations](#beacon-chain-operations)
|
- [Beacon chain operations](#beacon-chain-operations)
|
||||||
- [Proposer slashings](#proposer-slashings)
|
- [Proposer slashings](#proposer-slashings)
|
||||||
- [`ProposerSlashing`](#proposerslashing)
|
- [`ProposerSlashing`](#proposerslashing)
|
||||||
|
@ -253,6 +255,17 @@ Unless otherwise indicated, code appearing in `this style` is to be interpreted
|
||||||
|
|
||||||
## Data structures
|
## Data structures
|
||||||
|
|
||||||
|
### Signatures
|
||||||
|
|
||||||
|
#### `Signature`
|
||||||
|
|
||||||
|
```python
|
||||||
|
{
|
||||||
|
'z_1': 'bytes48',
|
||||||
|
'z_2': 'bytes48',
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
### Beacon chain operations
|
### Beacon chain operations
|
||||||
|
|
||||||
#### Proposer slashings
|
#### Proposer slashings
|
||||||
|
|
Loading…
Reference in New Issue