Skip to main content
Schema: monad.core Table: fact_traces Type: Fact Table

What

This table contains detailed execution traces of all internal transactions within the EVM. While fact_transactions shows external calls, this table reveals the complete execution flow including contract-to-contract calls, value transfers, and computation paths.

Key Use Cases

  • Analyzin

Columns

Column NameData TypeDescription
BLOCK_NUMBERNUMBERSequential counter representing the position of a block i…
BLOCK_TIMESTAMPTIMESTAMP_NTZUTC timestamp when the block was produced by validators/m…
ERROR_REASONTEXTTechnical reason for trace failure.
Example: ‘Out of gas’ | | FACT_TRACES_ID | TEXT | Primary key - unique identifier for each row ensuring dat… | | FROM_ADDRESS | TEXT | Address that initiated this specific internal call. Exam… | | GAS | TEXT | Gas allocated to this specific trace execution. Example:… | | GAS_USED | TEXT | Actual gas consumed by this trace execution. Example: 12… | | INPUT | TEXT | Hex-encoded input data for this trace (function call data… | | INSERTED_TIMESTAMP | TIMESTAMP_NTZ | UTC timestamp when the record was first added to the Flip… | | MODIFIED_TIMESTAMP | TIMESTAMP_NTZ | UTC timestamp of the most recent update to this record. … | | ORIGIN_FROM_ADDRESS | TEXT | The externally-owned account (EOA) or contract address th… | | ORIGIN_FUNCTION_SIGNATURE | TEXT | Function signature (first 4 bytes) of the called method. … | | ORIGIN_TO_ADDRESS | TEXT | The destination address for the transaction - either an E… | | OUTPUT | TEXT | Hex-encoded output data from trace execution. Example: ’… | | REVERT_REASON | TEXT | Human-readable revert message from contract require/rever… | | SUB_TRACES | TEXT | Count of immediate child traces spawned by this trace. E… | | TO_ADDRESS | TEXT | Destination address for this internal call. Example: ‘0x… | | TRACE_ADDRESS | TEXT | Array describing the trace’s position in the execution tr… | | TRACE_INDEX | NUMBER | Sequential index of trace within the transaction’s execut… | | TRACE_SUCCEEDED | TEXT | Boolean indicating if the trace executed successfully. E… | | TX_HASH | TEXT | Unique 66-character identifier for the transaction. **Fo… | | TX_POSITION | TEXT | Zero-indexed position of transaction within its block. *… | | TX_SUCCEEDED | TEXT | Boolean indicator of transaction success. Values:
  • … | | TYPE | TEXT | The type of EVM operation performed.
Example: ‘CALL’ | | VALUE | TEXT | Amount of native tokens transferred, in token units (not … | | VALUE_HEX | TEXT | Hexadecimal representation of transaction values as provi… | | VALUE_PRECISE | TEXT | String representation of numeric values adjusted for huma… | | VALUE_PRECISE_RAW | TEXT | String representation of numeric values preserving exact … |