Raw
Blocks
Table Columns
Unique Key: number
Column Name | Data Type | Description |
---|---|---|
timestamp | TIMESTAMP_NTZ(9) | The unix timestamp for when the block was collated. |
number | BIGINT | The length of the chain, in blocks. |
hash | VARCHAR | Unique identifier of a block. |
parent_hash | VARCHAR | Unique identifier of the block preceding this block, also known as the parent block. |
nonce | VARCHAR | The hash of the generated proof-of-work. null if pending. |
sha3_uncles | VARCHAR | An array of uncle hashes. |
logs_bloom | VARCHAR | The bloom filter for the logs of the block. |
transactions_root | VARCHAR | The root of the transaction trie of the block. |
state_root | VARCHAR | The root of the final state trie of the block. |
receipts_root | VARCHAR | The root of the receipts trie of the block. |
miner | VARCHAR | The address of the beneficiary to whom the mining rewards were given. |
difficulty | BIGINT | The integer of the difficulty for this block. |
total_difficulty | VARCHAR | The integer of the total difficulty of the chain until this block. |
size | BIGINT | The size of the block, in bytes, as determined by the gas_limit. |
extra_data | VARCHAR | The “extra data” field of this block. |
gas_limit | BIGINT | Gas limit of the current block. |
gas_used | BIGINT | Total gas used in the block. |
transaction_count | BIGINT | Number of transactions included in this block. |
base_fee_per_gas | BIGINT | Post London Upgrade (EIP1559), this represents the minimum gas_used required for a transaction to be included in a block. Represented in wei. |
blob_gas_used | BIGINT | Total blob gas used by all blob transactions in the block. Introduced in EIP-4844 (Dencun upgrade) for proto-danksharding. |
excess_blob_gas | BIGINT | The excess blob gas from the previous block, used to calculate blob gas price. |
parent_beacon_block_root | VARCHAR | The root of the parent beacon block, linking execution layer blocks to consensus layer blocks. |
withdrawals_root | VARCHAR | Root hash of the withdrawals list in the block; part of the block header introduced in Ethereum post-merge for validator withdrawals. |
withdrawals | VARIANT | List of validator withdrawals (from the beacon chain) included in the block |
requests_hash | VARCHAR | Hash of execution requests included in the block. Used by some EVM-compatible chains for cross-chain communication and execution requests. |
_created_at | TIMESTAMP_NTZ(9) | Timestamp when the record was created. |
_updated_at | TIMESTAMP_NTZ(9) | Timestamp when the record was last updated. |