Block Proof
EthBlockProof
class EthBlockProof(Container):
executionPayload : Union [ # the merkle prooof from the executionPayload.state down to the blockBodyRoot hash
DenepExecutionPayload, # DenepExecutionPayload
GnosisExecutionPayload] # GnosisExecutionPayload
proof : List [bytes32, 256] # the merkle prooof from the executionPayload.state down to the blockBodyRoot hash
header : BeaconBlockHeader # the header of the beacon block
header_proof : Union [ # the proof for the correctness of the header
EthSignatureBlockProof, # proof fby provding signature of the sync_committee
EthHistoricBlockProof, # proof for a historic block using the state_root of a current block.
EthHeadersBlockProof] # proof block giving headers up to a verifyable header.EthBlockNumberProof
EthBlockData
Last updated