| BLOCK_NUMBER | NUMBER | Sequential counter representing the position of a block in the blockchain since genesis (block 0). |
| BLOCK_HASH | TEXT | The unique 32-byte Keccak-256 hash of the block header, prefixed with ‘0x’. |
| BLOCK_TIMESTAMP | TIMESTAMP_NTZ | UTC timestamp when the block was produced by validators/miners. |
| NETWORK | TEXT | Network identifier within the blockchain (e.g., ‘mainnet’, ‘testnet’). |
| TX_COUNT | NUMBER | Number of transactions included in the block. |
| SIZE | NUMBER | Block size in bytes. |
| MINER | TEXT | Address that received block rewards. |
| MIX_HASH | TEXT | 256-bit hash used in PoW mining process. Post-merge, contains prevRandao for randomness. |
| EXTRA_DATA | TEXT | Arbitrary data included by block producer (max 32 bytes). |
| PARENT_HASH | TEXT | Hash of the previous block (block_number - 1). |
| GAS_USED | NUMBER | Total gas consumed by all transactions in the block. |
| GAS_LIMIT | NUMBER | Maximum gas allowed for all transactions in this block. |
| BASE_FEE_PER_GAS | NUMBER | Base fee per gas unit in wei (EIP-1559 chains only). |
| BLOB_GAS_USED | NUMBER | Gas consumed by blob transactions (EIP-4844, post-Dencun). |
| EXCESS_BLOB_GAS | NUMBER | Excess blob gas above target, affects next block’s blob base fee. |
| DIFFICULTY | NUMBER | Mining difficulty at block production time. |
| SHA3_UNCLES | TEXT | Keccak-256 hash of uncle blocks list. |
| UNCLE_BLOCKS | VARIANT | Array of uncle block headers (PoW only). |
| NONCE | NUMBER | Proof-of-Work nonce value. For PoW chains, this demonstrates computational work. Post-merge Ethereum and PoS chains typically show 0x0000000000000000. |
| RECEIPTS_ROOT | TEXT | Merkle root of all transaction receipts in the block. |
| STATE_ROOT | TEXT | Merkle root of the entire blockchain state after executing this block. |
| TRANSACTIONS_ROOT | TEXT | Merkle root of all transactions in the block. |
| LOGS_BLOOM | TEXT | 2048-bit bloom filter containing all log addresses and topics from the block’s transactions. |
| PARENT_BEACON_BLOCK_ROOT | TEXT | Root hash of the parent beacon chain block (post-merge Ethereum). |
| WITHDRAWALS | VARIANT | Array of validator withdrawals from beacon chain. |
| WITHDRAWALS_ROOT | TEXT | Merkle root of all withdrawals in the block. |
| FACT_BLOCKS_ID | TEXT | Primary key - unique identifier for each row ensuring data integrity. |
| INSERTED_TIMESTAMP | TIMESTAMP_NTZ | UTC timestamp when the record was first added to the Flipside database. |
| MODIFIED_TIMESTAMP | TIMESTAMP_NTZ | UTC timestamp of the most recent update to this record. |