Overview
- Dataset ID:
0101 - Table:
blockdb_evm.b0101_blocks_v1 - Description: Canonical block headers with BlockDB integrity metadata
- Primary Key:
block_number - API: POST /evm/raw/blocks
- Sample: Hugging Face Sample
Columns
| Column | Type | Description |
|---|---|---|
chain_id | BIGINT | EVM chain identifier; see Chain. |
block_number | BIGINT | Monotonic block height (chain-local). Primary key. |
block_hash | BYTEA | 32B Keccak block hash. |
parent_block_hash | BYTEA | 32B hash of the parent block. |
receipt_root | BYTEA | 32B receipts trie root from block header. |
miner | BYTEA | 20B fee recipient (coinbase) address. |
gas_limit | BIGINT | Block gas limit. |
extra_data | BYTEA | Up to 32B extra data from header. |
size | BIGINT | Encoded block size (bytes). |
timestamp_utc | TIMESTAMPTZ | Block timestamp as timestamptz (UTC, microsecond precision). |
_tracing_id | BYTEA | BlockDB tracing ID; unique. |
_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. |
Use Cases
- Chain reconstruction and blockchain state verification
- Block production and mining analytics
- Gas market analysis and block space utilization
- Chain reorganization detection and handling
- Foundation for transaction and log indexing
- Block-level time series analysis and chain health monitoring
Related Datasets
Transactions
EVM transaction records with gas, status, and calldata.
Logs
Smart contract event logs tied to each block.
Internal Transactions
Nested calls and value flows within transactions.