Documentation Index
Fetch the complete documentation index at: https://docs.allium.so/llms.txt
Use this file to discover all available pages before exploring further.
Table Details
| Property | Value |
|---|---|
| Table Name | avalanche_fuji.raw.blocks |
| Table Status | Beta 🌱 |
| Unique Key | number |
| Clustering Key(s) | to_date("timestamp") |
| Search Optimization | miner |
Table Columns
| Column Name | Data Type | Description |
|---|---|---|
| timestamp | TIMESTAMP_NTZ(9) | The unix timestamp for when the block was collated. |
| number | NUMBER(38,0) | The length of the chain, in blocks. |
| hash | VARCHAR(66) | Unique identifier of a block. |
| parent_hash | VARCHAR(66) | Unique identifier of the block preceding this block, also known as the parent block. |
| nonce | VARCHAR(42) | The hash of the generated proof-of-work. null if pending. |
| sha3_uncles | VARCHAR(66) | An array of uncle hashes. |
| logs_bloom | VARCHAR(16777216) | The bloom filter for the logs of the block. |
| transactions_root | VARCHAR(66) | The root of the transaction trie of the block. |
| state_root | VARCHAR(66) | The root of the final state trie of the block. |
| receipts_root | VARCHAR(66) | The root of the receipts trie of the block. |
| miner | VARCHAR(42) | The address of the beneficiary to whom the mining rewards were given. |
| difficulty | NUMBER(38,0) | The integer of the difficulty for this block. |
| total_difficulty | NUMBER(38,0) | The integer of the total difficulty of the chain until this block. |
| size | NUMBER(38,0) | The size of the block, in bytes, as determined by the gas_limit. |
| extra_data | VARCHAR(16777216) | The “extra data” field of this block. |
| gas_limit | NUMBER(38,0) | Gas limit of the current block. |
| gas_used | NUMBER(38,0) | Total gas used in the block. |
| transaction_count | NUMBER(38,0) | Number of transactions included in this block. |
| base_fee_per_gas | NUMBER(38,0) | 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 | NUMBER(38,0) | Total blob gas used by all blob transactions in the block. Introduced in EIP-4844 (Dencun upgrade) for proto-danksharding. |
| excess_blob_gas | NUMBER(38,0) | The excess blob gas from the previous block, used to calculate blob gas price. |
| withdrawals | VARIANT | List of validator withdrawals (from the beacon chain) included in the block |
| parent_beacon_block_root | VARCHAR(66) | The root of the parent beacon block, linking execution layer blocks to consensus layer blocks. |
| min_delay_excess | NUMBER(38,0) | Avalanche C-Chain specific. Tracks excess block production delay used to dynamically adjust minimum inter-block timing. |
| block_extra_data | VARCHAR(16777216) | Avalanche C-Chain specific. Additional block metadata appended by the C-Chain consensus engine beyond the standard EVM extra_data field. |
| timestamp_milliseconds | NUMBER(38,0) | Block timestamp in milliseconds, providing higher precision than the standard seconds-based timestamp. |
| block_gas_cost | NUMBER(38,0) | Avalanche C-Chain specific. Dynamic gas cost component used by the C-Chain fee mechanism to throttle block production rate. |
| ext_data_gas_used | NUMBER(38,0) | Gas consumed by atomic transactions in this block (cross-chain transfers to/from Avalanche’s X-Chain and P-Chain). |
| ext_data_hash | VARCHAR(66) | Hash of the extended block data containing atomic (cross-chain) transactions. |
| _created_at | TIMESTAMP_NTZ(9) | Timestamp when the record was created. |
| _updated_at | TIMESTAMP_NTZ(9) | Timestamp when the record was last updated. |