roketFEES PAID Per User
    Updated 2022-07-07
    SELECT DISTINCT(SENDER) AS users , SUM(FEE) FROM flipside_prod_db.algorand.transactions
    WHERE BLOCK_TIMESTAMP::DATE > '2022-01-01' and fee is not null
    GROUP BY users ORDER BY SUM(FEE) DESC LIMIT 15
    Run a query to Download Data