mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-08 02:31:19 +00:00
17 lines
452 B
Go
17 lines
452 B
Go
package blob
|
|
|
|
type SidecarsResponse struct {
|
|
Data []*Sidecar `json:"data"`
|
|
}
|
|
|
|
type Sidecar struct {
|
|
BlockRoot string `json:"block_root"`
|
|
Index string `json:"index"`
|
|
Slot string `json:"slot"`
|
|
BlockParentRoot string `json:"block_parent_root"`
|
|
ProposerIndex string `json:"proposer_index"`
|
|
Blob string `json:"blob"`
|
|
KZGCommitment string `json:"kzg_commitment"`
|
|
KZGProof string `json:"kzg_proof"`
|
|
}
|