Delamir-6014Untitled Query
    Updated 2022-07-22
    select
    block_timestamp::date as date,
    sum(fee) as paid_fee,
    sum(paid_fee) over(order by date) as total_fee
    from flipside_prod_db.algorand.transactions
    where date >= '2022-01-01'
    group by 1

    Run a query to Download Data