Skip to main content

Overview

  • Dataset ID: 0103
  • Table: blockdb0103_logs_v1
  • Description: Event logs emitted by contract transactions
  • Primary Key: block_number, tx_index, log_index

Columns

ColumnTypeDescription
block_numberBIGINTCanonical block height within the originating chain.
tx_indexINTEGERZero-based transaction index within the block, used for deterministic ordering.
log_indexINTEGERPosition of the log within the transaction; indirectly verified by RLP (All logs must be present)
contract_addressBYTEAAddress of the contract that emitted the log (20 bytes); directly verified by RLP
topic_zeroBYTEAPrimary topic hash identifying the event type (32 bytes); directly verified by RLP
data_topicsBYTEA[]Optional raw concatenation of topics[1..n] (implementation detail); directly verified by RLP
dataBYTEARaw event data; directly verified by RLP
_tracing_idBYTEATracing ID of the genesis log record.
_created_atTIMESTAMPTZRecord creation timestamp.
_updated_atTIMESTAMPTZRecord last update timestamp.

Use Cases

  • DeFi protocol event tracking (swaps, transfers, mints, burns)
  • Token transfer and balance change monitoring
  • Smart contract interaction analysis
  • Event-driven analytics and alerting systems
  • Protocol state reconstruction from events
  • Cross-contract event correlation and analysis