block_number | BIGINT | Sequential number of the block in the blockchain |
block_hash | BYTEA | Keccak-256 hash of the current block (32 bytes) |
parent_block_hash | BYTEA | Keccak-256 hash of the previous block (32 bytes) |
receipt_root | BYTEA | Hashed txs receipts with logs used for verification, no need to import by Data Engines |
miner | BYTEA | Fee-recipient / coinbase address for the block (20-byte 0x address). |
gas_limit | BIGINT | Maximum cumulative gas allowed for all transactions in the block. |
extra_data | BYTEA | Arbitrary ≤32-byte payload the block producer embeds in the header. |
size | BIGINT | Total block size in bytes, including header, transactions, and receipts. |
timestamp_utc | TIMESTAMPTZ | UTC timestamp when the block was mined |
_tracing_id | BYTEA | Tracing ID of the genesis block record. |
_computed_receipt_root | BYTEA | Recomputed receipts root (BlockDB integrity check). |
_computed_receipt_timestamp_utc | TIMESTAMPTZ | UTC timestamp when receipts root was (re)computed. |
_created_at | TIMESTAMPTZ | Record creation timestamp. |
_updated_at | TIMESTAMPTZ | Record last update timestamp. |