| BLOCK_NUMBER | NUMBER | Also known as block height. The block number, which indicates the length of the blockchain, increases after the addition of each new block. |
| BLOCK_HASH | TEXT | The hash of the block header for a given block. |
| BLOCK_TIMESTAMP | TIMESTAMP_NTZ | The date and time at which the block was produced. |
| NETWORK | TEXT | The network on the blockchain used by a transaction. |
| TX_COUNT | NUMBER | Total number of transactions within a block. |
| SIZE | NUMBER | Block size, which is determined by a given block’s gas limit. |
| MINER | TEXT | The address of the beneficiary to whom the mining rewards were given |
| EXTRA_DATA | TEXT | Any data included by the miner for a given block. |
| PARENT_HASH | TEXT | The hash of the block from which a given block is generated. Also known as the parent block. |
| GAS_USED | NUMBER | Total gas used in the block. |
| GAS_LIMIT | NUMBER | Total gas limit provided by all transactions in the block. |
| DIFFICULTY | NUMBER | The effort required to mine the block. |
| TOTAL_DIFFICULTY | NUMBER | Total difficulty of the chain at a given block. |
| SHA3_UNCLES | TEXT | The mechanism which Ethereum Javascript RLP encodes an empty string. |
| UNCLE_BLOCKS | VARIANT | Uncle blocks occur when two blocks are mined and broadcasted at the same time, with the same block number. The block validated across the most nodes will be added to the primary chain, and the other one becomes an uncle block. Miners do receive rewards for uncle blocks. |
| NONCE | NUMBER | The number of transactions sent from a given address. |
| RECEIPTS_ROOT | TEXT | The root of the state trie. |
| STATE_ROOT | TEXT | The root of the final state trie of the block |
| TRANSACTIONS_ROOT | TEXT | The root of the transaction trie of the block |
| LOGS_BLOOM | TEXT | The bloom filter for the logs of the block. |
| BASE_FEE_PER_GAS | NUMBER | A string of the base fee encoded in hexadecimal format. Please note that this response field will not be included in a block requested before the EIP-1559 upgrade |
| WITHDRAWALS_ROOT | TEXT | The root of the withdrawals trie. |
| FACT_BLOCKS_ID | TEXT | The unique identifier for each row in the table. |
| INSERTED_TIMESTAMP | TIMESTAMP_NTZ | The UTC timestamp at which the row was inserted into the table. |
| MODIFIED_TIMESTAMP | TIMESTAMP_NTZ | The UTC timestamp at which the row was last modified. |
| BLOCKCHAIN | TEXT | This column is being removed for standardization purposes. Please remove from your queries by March 10, 2025. |
| HASH | TEXT | This column is being deprecated for standardization purposes. Please update your queries to use the block_hash column instead by March 10, 2025. |
| BLOCK_HEADER_JSON | OBJECT | This column is being removed for standardization purposes and will be replaced with new columns associated with the keys extracted from this json. Please remove from your queries by March 10, 2025. |