prysm-pulse/beacon-chain/rpc/prysm/beacon/structs.go

13 lines
321 B
Go
Raw Normal View History

package beacon
import "github.com/prysmaticlabs/prysm/v4/beacon-chain/rpc/eth/shared"
type GetWeakSubjectivityResponse struct {
Data *WeakSubjectivityData `json:"data"`
}
type WeakSubjectivityData struct {
WsCheckpoint *shared.Checkpoint `json:"ws_checkpoint"`
StateRoot string `json:"state_root"`
}