Skip to main content
Schema: aurora.core Table: fact_traces Type: View This table contains flattened trace data for internal contract calls on the Ethereum blockchain. Hex encoded fields can be decoded to integers by using TO_NUMBER(<FIELD>, 'XXXXXXXXXXXX'), with the number of Xs being the max length of the encoded field. You must also remove the 0x from your field to use the TO_NUMBER() function, if applicable.

Columns

Column NameData TypeDescription
TX_HASHTEXTThe transaction hash for the trace. Please note, this is not necessarily unique in this table as transactions frequently have multiple traces.
BLOCK_NUMBERNUMBERThe block number of this transaction.
BLOCK_TIMESTAMPTIMESTAMP_NTZThe block timestamp of this transaction.
FROM_ADDRESSTEXTThe sending address of this trace. This is not necessarily the from address of the transaction.
TO_ADDRESSTEXTThe receiving address of this trace. This is not necessarily the to address of the transaction.
VALUEFLOATThe amount of ETH transferred in this trace.
VALUE_PRECISE_RAWTEXTThe precise, unadjusted amount of the transaction. This is returned as a string to avoid precision loss.
VALUE_PRECISETEXTThe precise, adjusted amount of the transaction. This is returned as a string to avoid precision loss.
GASNUMBERThe gas supplied for this trace.
GAS_USEDNUMBERThe gas used for this trace.
INPUTTEXTThe input data for this trace.
OUTPUTTEXTThe output data for this trace.
TYPETEXTThe type of internal transaction. Common trace types are CALL, DELEGATECALL, and STATICCALL.
IDENTIFIERTEXTThis field represents the position and type of the trace within the transaction.
DATAOBJECTThe raw JSON data for this trace.
TX_STATUSTEXTStatus of the transaction.
Note: this may be null for the transactions that are reverted, as described in the docs landing page.
SUB_TRACESNUMBERThe amount of nested sub traces for this trace.
TRACE_STATUSTEXTThe status of the trace, either SUCCESS or FAIL
ERROR_REASONTEXTThe reason for the trace failure, if any.
TRACE_INDEXNUMBERThe index of the trace within the transaction.
FACT_TRACES_IDTEXTA uniquely generated identifier assigned by a surrogate key
INSERTED_TIMESTAMPTIMESTAMP_NTZThe timestamp at which the record was initially created and inserted into this table.
MODIFIED_TIMESTAMPTIMESTAMP_NTZThe timestamp at which this record was last modified by an internal process.