maymoth55 Top 5 Wallets by Total BUSD Sent
    Updated 2024-09-20
    SELECT from_address, SUM(amount) AS total_sent
    FROM polygon.core.ez_token_transfers
    WHERE symbol = 'BUSD'
    GROUP BY from_address
    ORDER BY total_sent DESC
    LIMIT 5;

    QueryRunArchived: QueryRun has been archived