Blazesolana trans
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
›
⌄
select
date_trunc('day',block_timestamp) as day,
count(distinct tx_id) as sol_transactions
from
solana.core.fact_transactions
where
date_trunc('day',block_timestamp) >date_trunc('day',CURRENT_TIMESTAMP) - interval '12 months'
and succeeded =true
group by 1
Run a query to Download Data