Blazesolana weekly trans
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
›
⌄
-- forked from solana trans @ https://flipsidecrypto.xyz/edit/queries/0909c89c-052e-4ec2-9eeb-132412fe2ba2
select
date_trunc('week',block_timestamp) as week,
count(distinct tx_id) as sol_transactions
from
solana.core.fact_transactions
where
date_trunc('week',block_timestamp) >date_trunc('week',CURRENT_TIMESTAMP) - interval '12 months'
and succeeded =true
group by 1
Run a query to Download Data