ValiMohammadiUntitled Query
Updated 2022-07-07
99
1
2
3
4
5
6
7
8
9
10
›
⌄
select
block_timestamp::date as day,
count(distinct tx_id) as number_of_transactions,
count(distinct sender) as number_of_wallets,
sum(fee) as fee_amount,
sum(fee_amount) over (order by day) as cummulative_fee_amount
from flipside_prod_db.algorand.transactions
where day >= '2022-01-01'
group by day
order by fee_amount
Run a query to Download Data