boomer77Untitled Query
9
1
2
3
4
5
6
7
›
⌄
with all_tx as (select date_trunc('day', block_timestamp) as dt, count(distinct tx_id) as total_tx
from solana.transactions
where block_timestamp >= '2022-01-01'
group by 1)
select *
from all_tx
Run a query to Download Data