| 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. |
| TX_POSITION | NUMBER | Zero-indexed position of transaction within its block. |
| TRACE_INDEX | NUMBER | Sequential index of trace within the transaction’s execution. |
| FROM_ADDRESS | TEXT | Address that initiated this specific internal call. |
| TO_ADDRESS | TEXT | Destination address for this internal call. |
| INPUT | TEXT | Hex-encoded input data for this trace (function call data). |
| OUTPUT | TEXT | Hex-encoded output data from trace execution. |
| TYPE | TEXT | The type of EVM operation performed. |
| TRACE_ADDRESS | TEXT | Array describing the trace’s position in the execution tree. |
| SUB_TRACES | NUMBER | Count of immediate child traces spawned by this trace. |
| 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. |
| VALUE_HEX | TEXT | Hexadecimal representation of transaction values as provided by the blockchain RPC. |
| GAS | NUMBER | Gas allocated to this specific trace execution. |
| GAS_USED | NUMBER | Actual gas consumed by this trace execution. |
| ORIGIN_FROM_ADDRESS | TEXT | The externally-owned account (EOA) or contract address that initiated the transaction. |
| ORIGIN_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. |
| TRACE_SUCCEEDED | BOOLEAN | Boolean indicating if the trace executed successfully. |
| ERROR_REASON | TEXT | Technical reason for trace failure. |
| REVERT_REASON | TEXT | Human-readable revert message from contract require/revert statements. |
| TX_SUCCEEDED | BOOLEAN | Boolean indicator of transaction success. |
| FACT_TRACES_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. |