Skip to main content
The arbitrum dataset holds the standardized Arbitrum tables. Every column is documented at EVM β–Έ Overview.

Tables

TableDescription
blocksOne row per block, with its gas and fee totals.
transactionsOne row per transaction, with its receipt fields on the same row.
logsOne row per event log a contract emitted.
tracesOne row per internal call recorded during execution.
The four tables do not all start on the same date: blocks and logs begin 2021-05, transactions begins 2022-08, and traces begins 2023-06. blocks also carries a 1970-01-01 partition holding rows whose source timestamp is zero; the chain’s real history starts 2021-05.

Sample queries

The partition column differs by table: transactions, logs and traces split on block_timestamp, blocks splits on timestamp. Bound the right column in every query and keep it bare on the left of the comparison; wrapping it in a function reads every partition.
Count daily transactions and the accounts that sent them.