| 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_TIMESTAMP | TIMESTAMP_NTZ | The date and time at which the block was produced. |
| TX_HASH | TEXT | Transaction hash is a unique 66-character identifier that is generated when a transaction is executed. |
| TX_POSITION | NUMBER | The position of the transaction within the block. |
| TRACE_INDEX | NUMBER | The index of the trace within the transaction. |
| FROM_ADDRESS | TEXT | The sending address of this transaction. |
| TO_ADDRESS | TEXT | The receiving address of this transaction. This can be a contract address. |
| INPUT | TEXT | The input data for this trace. |
| OUTPUT | TEXT | The output data for this trace. |
| TYPE | TEXT | The type of internal transaction. Common trace types are CALL, DELEGATECALL, and STATICCALL. |
| TRACE_ADDRESS | TEXT | The trace address for this trace. |
| SUB_TRACES | NUMBER | The amount of nested sub traces for this trace. |
| VALUE | FLOAT | The value transacted in the native asset. |
| VALUE_PRECISE_RAW | TEXT | The precise, unadjusted amount of the transaction. This is returned as a string to avoid precision loss. |
| VALUE_PRECISE | TEXT | The precise, adjusted amount of the transaction. This is returned as a string to avoid precision loss. |
| VALUE_HEX | TEXT | The value of the transaction in hexadecimal format. |
| GAS | NUMBER | The gas supplied for this trace. |
| GAS_USED | NUMBER | The gas used for this trace. |
| ORIGIN_FROM_ADDRESS | TEXT | The sending address of this trace. This is not necessarily the from address of the transaction. |
| ORIGIN_TO_ADDRESS | TEXT | The receiving address of this trace. This is not necessarily the to address of the transaction. |
| ORIGIN_FUNCTION_SIGNATURE | TEXT | The function signature of the contract call that triggered this transaction. |
| TRACE_SUCCEEDED | BOOLEAN | The boolean value representing if the trace succeeded. |
| ERROR_REASON | TEXT | The reason for the trace failure, if any. |
| REVERT_REASON | TEXT | The reason for the revert, if available. |
| TX_SUCCEEDED | BOOLEAN | Whether the transaction was successful, returned as a boolean. |
| FACT_TRACES_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. |