Skip to main content

Overview

Columns

ColumnTypeDescription
chain_idBIGINTEVM chain identifier; see Chain.
tx_hashBYTEAKeccak-256 hash of the transaction (32 bytes)
from_addressBYTEASender address (20 bytes)
to_addressBYTEARecipient address (null for contract creation, 20 bytes if present)
block_numberBIGINTBlock height containing this transaction.
block_timeTIMESTAMPTZUTC timestamp of the block.
tx_indexINTEGERZero-based index of the transaction within the block; directly verified by RLP.
created_contract_addressBYTEAContract address created by this transaction (20 bytes); null for non-creation.
gas_usedNUMERIC(78)Gas consumed by this transaction.
effective_gas_price_weiNUMERIC(78)Effective gas price paid in wei.
status_successBOOLEANExecution status: TRUE if successful, FALSE if reverted.
rootBYTEAPre-Byzantium: state root (32 bytes) after tx execution; NULL for Byzantium+.
tx_typeSMALLINTType of transaction (e.g., 2=EIP-1559, 1=legacy).
trace_failedBOOLEANTRUE if trace failed, FALSE if succeeded, NULL if trace not available.
value_weiNUMERICValue transferred in wei.
inputBYTEACalldata sent with the transaction.
nonceBIGINTSender nonce.
gas_limitNUMERICGas limit provided by the sender.
gas_price_weiNUMERICGas price in wei (legacy).
max_fee_per_gas_weiNUMERICMax fee per gas (EIP-1559).
max_priority_fee_per_gas_weiNUMERICMax priority fee per gas (EIP-1559).
_tracing_idBYTEATracing ID of the genesis tx record.
_created_atTIMESTAMPTZRecord creation timestamp.
_updated_atTIMESTAMPTZRecord last update timestamp.

Use Cases

  • Transaction flow analysis and wallet tracking
  • Gas fee analytics and EIP-1559 impact studies
  • Contract deployment and creation tracking
  • Failed transaction analysis and debugging
  • MEV and arbitrage transaction identification
  • Cross-chain transaction pattern analysis

Blocks

Block headers that contain these transactions.

Logs

Smart contract events emitted by transactions.

Internal Transactions

Nested calls spawned within each transaction.
Last modified on March 21, 2026