Overview
- Dataset ID:
0111 - Table:
blockdb_evm.b0111_internal_transactions_v1 - Description: Internal transactions (call traces) from debug_traceTransaction
- Primary Key:
block_number, tx_index, trace_address - Foreign Key:
(block_number, tx_index)→blockdb_evm.b0102_transactions_v1 - API: POST /evm/raw/internal-transactions
- Sample: Hugging Face Sample
Columns
| Column | Type | Description |
|---|---|---|
chain_id | BIGINT | EVM chain identifier; see Chain. |
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. |
Use Cases
- Contract creation and factory flow analysis
- Internal call graphs and cross-contract dependencies
- Value flow and gas consumption per call
- Debugging failed transactions and revert reasons
- MEV and arbitrage path reconstruction
Related Datasets
Transactions
Top-level transactions that spawned these calls.
Contracts
Contract metadata for the callee addresses.
Logs
Events emitted during the same transaction context.