flow dataset holds the standardized Flow tables. History starts 2018-12.
Tables
| Table | Since |
|---|---|
blocks | 2018-12 |
events | 2018-12 |
fee_events | 2024-09 |
transactions | 2018-12 |
Sample queries
- Daily transactions
Count daily transactions over one week.
Documentation Index
Fetch the complete documentation index at: /docs/llms.txt
Use this file to discover all available pages before exploring further.
The standardized Flow tables.
flow dataset holds the standardized Flow tables. History starts 2018-12.
| Table | Since |
|---|---|
blocks | 2018-12 |
events | 2018-12 |
fee_events | 2024-09 |
transactions | 2018-12 |
block_timestamp (blocks on timestamp). Bound that column in every query; without a bound the query reads the whole table.select
timestamp_trunc(block_timestamp, day) as day,
count(*) as transactions
from `flow.transactions`
where block_timestamp >= timestamp('2026-08-16')
and block_timestamp < timestamp('2026-08-23')
group by day
order by day