ethereum dataset holds the standardized Ethereum tables. The four core tables follow the shared EVM layout; Ethereum additionally carries beacon_validators and uncle_blocks, which no other chain in the family publishes.
Every column is documented at EVM βΈ Overview.
Tables
| Table | Description |
|---|---|
blocks | One row per block, with its gas and fee totals. |
transactions | One row per transaction, with its receipt fields on the same row. |
logs | One row per event log a contract emitted. |
traces | One row per internal call recorded during execution. |
beacon_validators | Beacon chain validator balances and statuses, snapshotted per slot. |
uncle_blocks | Headers of the uncle blocks that canonical blocks reference. |
blocks also carries a 1970-01-01 partition holding rows whose source timestamp is zero; the chainβs history starts 2015-07. uncle_blocks is a closed record: it ends at its 2022-09-15 partition, the day Ethereum stopped producing uncles.
Sample queries
- Daily transactions
- Daily ETH burn
- One contract's logs
Count daily transactions and the accounts that sent them.
Notes
beacon_validators covers the consensus side of the chain. Ethereum runs two chains in step: the execution chain that holds transactions, and the beacon chain that agrees on them. One row is one validator at one slot, with its balance and status at that moment.
uncle_blocks holds a closed chapter. Before the 2022 switch away from mining, a block produced slightly too late became an uncle, referenced by a later canonical block and rewarded in part. The table stops at 2022-09-15 because Ethereum stopped producing them.