mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-08 02:31:19 +00:00
37739b4193
Co-authored-by: Nishant Das <nishdas93@gmail.com>
17 lines
664 B
Go
17 lines
664 B
Go
package blob
|
|
|
|
import "github.com/prysmaticlabs/prysm/v4/beacon-chain/rpc/eth/shared"
|
|
|
|
type SidecarsResponse struct {
|
|
Data []*Sidecar `json:"data"`
|
|
}
|
|
|
|
type Sidecar struct {
|
|
Index string `json:"index"`
|
|
Blob string `json:"blob"`
|
|
SignedBeaconBlockHeader *shared.SignedBeaconBlockHeader `json:"signed_block_header"`
|
|
KzgCommitment string `json:"kzg_commitment"`
|
|
KzgProof string `json:"kzg_proof"`
|
|
CommitmentInclusionProof []string `json:"kzg_commitment_inclusion_proof"`
|
|
}
|