Skip to main content

Overview

  • Dataset ID: 0102
  • Table: blockdb0102_transactions_v1
  • Description: Transactions included in blocks
  • Primary Key: tx_hash

Columns

ColumnTypeDescription
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_numberBIGINTCanonical block height within the originating chain.
tx_indexINTEGERZero-based index of the transaction within the block; directly verified by RLP
created_contract_addressBYTEAContract address created by this transaction (20 bytes)
gas_usedBIGINTGas consumed by this transaction; indirectly verified by RLP (calcualte cumulative gas from it)
effective_gas_price_weiNUMERIC(38,0)Effective gas price paid in wei
status_successBOOLEANExecution status: TRUE if successful, FALSE if reverted, NULL for pre-Byzantium; directly verified by RLP
rootBYTEAPre-Byzantium: state root (32 bytes) after tx execution; NULL for Byzantium+; directly verified by RLP
tx_typeSMALLINTType of transaction (e.g., 2=EIP-1559, 1=legacy)
_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