Block Tables
Block Info Table Schema
Table Name: BlockInfo
Description: Stores p2p & mev-boost data for each block.
Key: Block number (u64
)
Value: BlockMetadataInner
Fields:
- block_hash:
- Type:
U256
- Description: The block hash.
- Type:
- block_timestamp:
- Type:
u64
- Description: Block timestamp.
- Type:
- relay_timestamp:
- Type:
Option<u64>
- Description: Timestamp when the block was received by the first relay.
- Type:
- p2p_timestamp:
- Type:
Option<u64>
- Description: Timestamp when the block was first seen by a fibernode.
- Type:
- proposer_fee_recipient:
- Type:
Option<Address>
- Description: Address of the proposer fee recipient.
- Type:
- proposer_mev_reward:
- Type:
Option<u128>
- Description: Amount of MEV reward payed to the proposer.
- Type:
- private_flow:
- Type:
Vec<TxHash>
- Description: List of transaction hashes that were not seen in the mempool via Chainbound fibernodes.
- Type:
TxTraces Table Schema
Table Name: TxTraces
Description: Contains the transaction traces produced by the custom revm-inspector
for each block.
Key: Block number (u64
)
Value: TxTracesInner
Fields:
- traces:
- Type:
Option<Vec<TxTrace>>
- Description: A block's transaction traces.
- Type: