| BLOCK_NUMBER | NUMBER | Sequential counter representing the position of a block in the blockchain since genesis (block 0). |
| BLOCK_TIMESTAMP | TIMESTAMP_NTZ | UTC timestamp when the block was produced by validators/miners. |
| TX_HASH | TEXT | Unique 66-character identifier for the transaction. |
| FROM_ADDRESS | TEXT | The externally-owned account (EOA) or contract address that initiated the transaction. |
| TO_ADDRESS | TEXT | The destination address for the transaction - either an EOA or contract address. |
| ORIGIN_FUNCTION_SIGNATURE | TEXT | Function signature (first 4 bytes) of the called method. |
| VALUE | FLOAT | Amount of native tokens transferred, in token units (not Wei). |
| VALUE_PRECISE_RAW | TEXT | String representation of numeric values preserving exact precision without any adjustments. |
| VALUE_PRECISE | TEXT | String representation of numeric values adjusted for human readability while maintaining precision. |
| TX_FEE | FLOAT | Total fee paid for transaction execution in native token units. |
| TX_FEE_PRECISE | TEXT | Exact transaction fee as string to prevent floating-point precision loss. |
| TX_SUCCEEDED | BOOLEAN | Boolean indicator of transaction success. |
| TX_TYPE | NUMBER | Transaction envelope type (EIP-2718). |
| NONCE | NUMBER | Sequential counter of transactions sent by the from_address. |
| TX_POSITION | NUMBER | Zero-indexed position of transaction within its block. |
| INPUT_DATA | TEXT | Encoded data sent with the transaction, containing function calls and parameters. |
| GAS_PRICE | FLOAT | Price per gas unit in Gwei (1 Gwei = 1e-9 native token). |
| EFFECTIVE_GAS_PRICE | FLOAT | Actual price paid per gas unit for EIP-1559 transactions, in Gwei. |
| GAS_USED | NUMBER | Actual gas units consumed by transaction execution. |
| GAS_LIMIT | NUMBER | Maximum gas units the sender is willing to consume for this transaction. |
| CUMULATIVE_GAS_USED | NUMBER | Running total of gas consumed by all transactions up to and including this transaction within the block. |
| MAX_FEE_PER_GAS | FLOAT | Maximum total fee per gas unit sender is willing to pay (EIP-1559), in Gwei. |
| MAX_PRIORITY_FEE_PER_GAS | FLOAT | Maximum tip per gas unit for validator (EIP-1559), in Gwei. |
| Y_PARITY | NUMBER | Y coordinate parity for signature recovery (EIP-2098). |
| ACCESS_LIST | VARIANT | Array of addresses and storage keys for optimized gas costs (EIP-2930). |
| R | TEXT | R component of ECDSA signature (32 bytes). |
| S | TEXT | S component of ECDSA signature (32 bytes). |
| V | NUMBER | Recovery identifier for ECDSA signature. |
| FACT_TRANSACTIONS_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. |