KaskoazulStepN Tx per day
Updated 2022-02-28
99
1
2
3
4
5
6
7
8
9
10
11
12
13
›
⌄
select
block_timestamp::date,
count(tx_id) as TotalTX,
count(distinct tx_from_address) as TotalWalletsFrom,
count(distinct tx_to_address) as TotalWalletsTo,
TotalWalletsFrom + TotalWalletsTo as TotalWallets
from solana.transactions
where block_timestamp::date >= '2022-01-01' and block_timestamp::date <= '2022-02-26'
and succeeded = 'TRUE'
and (pre_mint = 'AFbX8oGjGpmVFywbVouvhQSRmiW2aR1mohfahi4Y2AdB'
or post_mint = 'AFbX8oGjGpmVFywbVouvhQSRmiW2aR1mohfahi4Y2AdB')
group by 1
Run a query to Download Data