alleriaAlgorand Fees 2022 - Wallets Most Fee
    Updated 2022-07-06
    SELECT
    sender,
    COUNT(tx_id) as tx_count,
    COUNT(DISTINCT tx_id) as number_of_transactions,
    SUM(fee) as total_fee
    FROM algorand.transactions
    WHERE date(block_timestamp) > '2021-12-31'
    AND fee is not NULL
    GROUP BY sender
    ORDER BY total_fee DESC
    LIMIT 10

    Run a query to Download Data