KingTigerMafia-7mwRZbCost of transaction fees per day
    Updated 2022-07-03
    SELECT block_timestamp::date AS date,
    sum(fee) AS total_fee_per_day,
    COUNT(DISTINCT sender) AS total_sender_per_day
    FROM flipside_prod_db.algorand.transactions
    WHERE date >= '2022-01-01'
    GROUP BY date
    ORDER BY date asc
    Run a query to Download Data