Logs Proof
OpLogsTx
class OpLogsTx(Container):
transactionIndex : Uint32 # the index of the transaction in the block
proof : List [bytes_1024, 256] # the Merkle Patricia Proof of the transaction receipt ending in the receipt root
tx_proof : List [bytes_1024, 64] # the Merkle Patricia Proof of the transaction (empty for preconf blocks since full execution payload is available)OpLogsBlock
class OpLogsBlock(Container):
block_proof : Union [ # proof for the block (preconfirmation)
OpPreconf, # preconfirmation proof (sequencer-signed execution payload)
Bytes32] # blockhash hint identifying the cached execution payload
txs : List [OpLogsTx, 256] # the transactions of the block with their proofsLast updated