Skip to main content
Schema: sei.core_evm Table: fact_traces Type: Base Table This table contains flattened trace data for internal contract calls on the SEI EVM Blockchain. Hex encoded fields can be decoded to integers by using utils.udf_hex_to_int().

Columns

Column NameData TypeDescription
BLOCK_NUMBERNUMBERThe block number of this transaction.
BLOCK_TIMESTAMPTIMESTAMP_NTZThe block timestamp of this transaction.
TX_HASHTEXTThe transaction hash for the trace. Please note, this is not necessarily unique in this table as transactions frequently have multiple traces.
TX_POSITIONNUMBERThe position of the transaction within the block.
TRACE_INDEXNUMBERThe index of the trace within the 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.
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.
TRACE_ADDRESSTEXTThis field represents the position of the trace within the transaction.
SUB_TRACESNUMBERThe amount of nested sub traces for this trace.
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.
VALUE_HEXTEXT
GASNUMBERThe gas supplied for this trace.
GAS_USEDNUMBERThe gas used for this trace.
ORIGIN_FROM_ADDRESSTEXTThe from address at the transaction level.
ORIGIN_TO_ADDRESSTEXTThe to address at the transaction level.
ORIGIN_FUNCTION_SIGNATURETEXTThe function signature at the transaction level.
TRACE_SUCCEEDEDBOOLEANWhether the trace succeeded or failed
ERROR_REASONTEXTThe reason for the trace failure, if any.
REVERT_REASONTEXTThe reason for the trace revert, if any.
TX_SUCCEEDEDBOOLEANWhether the transaction succeeded or failed
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.
TRACE_STATUSTEXTThe status of the trace, either SUCCESS or FAIL
FACT_TRACES_IDTEXTThe unique identifier for each row in the table.
INSERTED_TIMESTAMPTIMESTAMP_NTZThe utc timestamp at which the row was inserted into the table.
MODIFIED_TIMESTAMPTIMESTAMP_NTZThe utc timestamp at which the row was last modified.