| BLOCK_NUMBER | NUMBER | The block number of this transaction. |
| BLOCK_TIMESTAMP | TIMESTAMP_NTZ | The block timestamp of this transaction. |
| TX_HASH | TEXT | The transaction hash for the trace. Please note, this is not necessarily unique in this table as transactions frequently have multiple traces. |
| 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 trace. This is not necessarily the from address of the transaction. |
| TO_ADDRESS | TEXT | The receiving address of this trace. This is not necessarily the to address of the transaction. |
| 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 amount of the native asset transferred in this trace. |
| 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 | |
| ORIGIN_TO_ADDRESS | TEXT | |
| ORIGIN_FUNCTION_SIGNATURE | TEXT | |
| 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. |
| IDENTIFIER | TEXT | This column is being deprecated for standardization purposes. Please update your queries to use the trace_address column instead by March 10, 2025. |
| DATA | OBJECT | This column is being deprecated for standardization purposes. Please remove from your queries by March 10, 2025. |
| TX_STATUS | TEXT | This column is being deprecated for standardization purposes. Please update your queries to use the tx_succeeded column instead by March 10, 2025. |
| TRACE_STATUS | TEXT | This column is being deprecated for standardization purposes. Please update your queries to use the trace_succeeded column instead by March 10, 2025. |
| 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. |