binhachonAlgorand Fees 2022 - #1
    Updated 2022-07-03
    select
    date_trunc('day', block_timestamp) as time,
    sum(fee) as daily_fee,
    sum(daily_fee) over (order by time) as cum_fee,
    avg(fee) as avg_fee
    from flipside_prod_db.algorand.transactions
    where time >= '2022-01-01'
    and fee > 0
    group by 1

    Run a query to Download Data