The tables split by day on block_timestamp (blocks on timestamp). Bound that column in every query; without a bound the query reads the whole table.
Daily transactions
Count daily transactions over one week.
select timestamp_trunc(block_timestamp, day) as day, count(*) as transactionsfrom `flow.transactions`where block_timestamp >= timestamp('2026-08-16') and block_timestamp < timestamp('2026-08-23')group by dayorder by day
Assistant
Responses are generated using AI and may contain mistakes.