Pine AnalyticsBlast 1
Updated 2024-10-05
99
1
2
3
4
5
6
7
8
9
10
11
12
13
›
⌄
select
date_trunc('day', block_timestamp) as Date,
case when block_timestamp > '2024-06-27' then 'After Airdrop' else
'Before Airdrop' end as Time_Period,
count(distinct tx_hash) as Transactions,
count(distinct from_address) as Users,
sum(tx_fee) as Fee_Volume_ETH
from blast.core.fact_transactions
where Status = 'SUCCESS'
group by 1,2
QueryRunArchived: QueryRun has been archived