cardano dataset holds the standardized Cardano tables. History starts 2017-09.
Tables
| Table | Since |
|---|---|
blocks | 2017-09 |
transactions | 2017-09 |
transactions_utxos | 2017-09 |
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 Cardano tables.
cardano dataset holds the standardized Cardano tables. History starts 2017-09.
| Table | Since |
|---|---|
blocks | 2017-09 |
transactions | 2017-09 |
transactions_utxos | 2017-09 |
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 `cardano.transactions`
where block_timestamp >= timestamp('2026-08-16')
and block_timestamp < timestamp('2026-08-23')
group by day
order by day