gigiokobaTotal Amount Sent by Each Sender
    Updated 2024-05-13
    SELECT sender, SUM(amount) AS total_sent
    FROM axelar.core.fact_transfers
    GROUP BY sender
    ORDER BY total_sent DESC
    LIMIT 10;

    QueryRunArchived: QueryRun has been archived