Skip to main content

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

ColumnTypeDescription
block_numberBIGINTBlock number of the parent transaction.
block_timeTIMESTAMPTZUTC timestamp of the block.
tx_indexINTEGERZero-based index of the parent transaction within the block.
trace_addressTEXTPosition in the call tree (e.g., “0”, “0.0”, “0.1”).
call_typeTEXTThe type of call: CALL, DELEGATECALL, STATICCALL, CREATE, CREATE2.
from_addressBYTEAThe address of the caller (20 bytes, enforced).
to_addressBYTEAThe address of the callee; null for failed CREATE/CREATE2 (when present, 20 bytes).
value_weiNUMERICThe native value (in wei) transferred in this call; non-negative.
gasNUMERICThe gas allocated for this call (optional; non-negative when set).
gas_usedNUMERICThe gas actually consumed by this call (optional; non-negative when set).
inputBYTEAThe input data (calldata) for this call (optional).
outputBYTEAThe return data from the call (optional; if enabled, null = reverted).
errorTEXTThe error message if the call reverted.
tx_successBOOLEANThe success of the underlying transaction that caused this internal transaction.
_tracing_idBYTEAInternal tracing ID for observability (unique).
_created_atTIMESTAMPTZRecord creation timestamp.
_updated_atTIMESTAMPTZRecord 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

Transactions

Top-level transactions that spawned these calls.

Contracts

Contract metadata for the callee addresses.

Logs

Events emitted during the same transaction context.
Last modified on April 4, 2026