block_number | BIGINT | Block number of the parent transaction. |
block_time | TIMESTAMPTZ | UTC timestamp of the block. |
tx_index | INTEGER | Zero-based index of the parent transaction within the block. |
trace_address | TEXT | Position in the call tree (e.g., “0”, “0.0”, “0.1”). |
call_type | TEXT | The type of call: CALL, DELEGATECALL, STATICCALL, CREATE, CREATE2. |
from_address | BYTEA | The address of the caller (20 bytes). |
to_address | BYTEA | The address of the callee (20 bytes); null for failed CREATE/CREATE2. |
value_wei | NUMERIC | The native value (in wei) transferred in this call. |
gas | NUMERIC | The gas allocated for this call. |
gas_used | NUMERIC | The gas actually consumed by this call. |
input | BYTEA | The input data (calldata) for this call. |
output | BYTEA | The return data from the call (null if reverted). |
error | TEXT | The error message if the call reverted. |
tx_success | BOOLEAN | The success of the underlying transaction that caused this internal transaction. |
_tracing_id | BYTEA | Internal tracing ID for observability. |
_created_at | TIMESTAMPTZ | Record creation timestamp. |
_updated_at | TIMESTAMPTZ | Record last update timestamp. |