zakkisyed#6 Algorand: Total fees spent for transactions
    Updated 2022-08-30
    select sum(fee) as total_fees, count(distinct tx_id) as total_txs, total_fees/total_txs as avg_tx_fee, avg_tx_fee*0.3 as avg_tx_fee_usd

    from flipside_prod_db.algorand.transactions

    where date_trunc(day,block_timestamp) >= '2022-1-1'
    Run a query to Download Data