Documentation Index
Fetch the complete documentation index at: https://docs.blockdb.io/llms.txt
Use this file to discover all available pages before exploring further.
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) - Unique:
_tracing_id - Foreign key:
(block_number, tx_index)→blockdb_evm.b0102_transactions_v1 - API: POST /evm/raw/internal-transactions
- CSV Sample: Download
- JSON Sample: Download
Sample Viewer
Columns
| Column | Type | Description |
|---|---|---|
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, enforced). |
to_address | BYTEA | The address of the callee; null for failed CREATE/CREATE2 (when present, 20 bytes). |
value_wei | NUMERIC | The native value (in wei) transferred in this call; non-negative. |
gas | NUMERIC | The gas allocated for this call (optional; non-negative when set). |
gas_used | NUMERIC | The gas actually consumed by this call (optional; non-negative when set). |
input | BYTEA | The input data (calldata) for this call (optional). |
output | BYTEA | The return data from the call (optional; if enabled, null = 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 (unique). |
_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.