mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-22 19:40:37 +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"`
|
|
}
|