Raw
Traces
Table Columns
Unique Key: trace_id
Column Name | Data Type | Description |
---|---|---|
call_type | VARCHAR | The type of method such as call , delegatecall , staticcall . Learn more here. |
caller_address | VARCHAR | The address of the account or contract that initiated this call. |
class_hash | VARCHAR | The hash of the contract class being called, if applicable. |
contract_address | VARCHAR | The address of the contract being called. |
entry_point_type | VARCHAR | The type of entry point (e.g., ‘EXTERNAL’, ‘CONSTRUCTOR’, ‘L1_HANDLER’). |
entry_point_selector | VARCHAR | The selector of the entry point function being called. |
calldata | VARIANT | The calldata passed to this function call. |
result | VARIANT | The return value of this function call. |
messages | VARIANT | Array of messages sent during this call. |
events | VARIANT | Array of events emitted during this call. |
trace_address | VARCHAR | The address of the trace within the call graph. |
subtrace_count | BIGINT | Number of subtraces (nested calls) within this trace. |
storage_diff_count | BIGINT | Number of storage changes made during this call. |
is_reverted | BOOLEAN | Whether this call was reverted. |
revert_reason | VARCHAR | The reason for the revert, if applicable. |
l1_data_gas | BIGINT | The L1 data gas consumed by this call. |
l1_gas | BIGINT | The L1 gas consumed by this call. |
l2_gas | BIGINT | The L2 gas consumed by this call. |
fee_transfer_invocation | VARIANT | Data related to fee transfer invocation, if applicable. |
validate_invocation | VARIANT | Data related to validation invocation, if applicable. |
constructor_invocation | VARIANT | Data related to constructor invocation, if applicable. |
function_invocation | VARIANT | Data related to function invocation, if applicable. |
state_diff | VARIANT | Changes to the state made during this call. |
block_number | BIGINT | The length of the chain, in blocks. |
block_timestamp | TIMESTAMP_NTZ(9) | The time when the block that contains this trace was included on the blockchain. |
block_hash | VARCHAR | Unique identifier of the block that includes this trace. |
transaction_hash | VARCHAR | Unique identifier of the transaction that this trace belongs to. |
transaction_index | BIGINT | The position of this transaction in the block that it belongs to. The first transaction has index 0. |
transaction_type | VARCHAR | The type of transaction that contained this trace. |
trace_id | VARCHAR | Unique identifier for this trace. Generated by combining the trace_type , transaction_hash , and trace_address . |
_created_at | TIMESTAMP_NTZ(9) | Timestamp of the entry creation. |
_updated_at | TIMESTAMP_NTZ(9) | Timestamp of the entry update. |