datavortexTop Senders
    Updated 2024-09-17
    SELECT
    origin_from_address AS address,
    SUM(amount_usd) AS total_volume
    FROM
    optimism.core.ez_token_transfers
    WHERE
    contract_address = LOWER('0x296F55F8Fb28E498B858d0BcDA06D955B2Cb3f97')
    AND amount_usd IS NOT NULL
    GROUP BY
    origin_from_address
    ORDER BY
    total_volume DESC
    LIMIT 10;


    QueryRunArchived: QueryRun has been archived