ThatGuyAlgorand - Algorand Fees 2022 - 1. daily fees
    Updated 2022-07-07
    SELECT block_timestamp::date as date, sum(fee) as sum_fee
    FROM flipside_prod_db.algorand.transactions
    WHERE block_timestamp >= '2022-01-01'
    GROUP BY 1
    ORDER BY 1
    Run a query to Download Data