abaWallets spent the most on fees Query
    Updated 2022-07-03
    SELECT top 20 SENDER as wallet, Sum(FEE) sum_fee_pay
    FROM flipside_prod_db.algorand.transactions
    WHERE DATE_TRUNC('day', block_timestamp) >= '2022-01-01'
    GROUP BY SENDER
    HAVING sum_fee_pay >= 1000
    order by sum_fee_pay desc
    Run a query to Download Data