mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-03 16:37:39 +00:00
15 lines
553 B
Go
15 lines
553 B
Go
|
package structs
|
||
|
|
||
|
type SidecarsResponse struct {
|
||
|
Data []*Sidecar `json:"data"`
|
||
|
}
|
||
|
|
||
|
type Sidecar struct {
|
||
|
Index string `json:"index"`
|
||
|
Blob string `json:"blob"`
|
||
|
SignedBeaconBlockHeader *SignedBeaconBlockHeader `json:"signed_block_header"`
|
||
|
KzgCommitment string `json:"kzg_commitment"`
|
||
|
KzgProof string `json:"kzg_proof"`
|
||
|
CommitmentInclusionProof []string `json:"kzg_commitment_inclusion_proof"`
|
||
|
}
|