walemathsTotal Amount Bridged by Platform
    Updated 2024-07-14
    SELECT
    platform,
    SUM(amount) AS total_amount_bridged
    FROM
    avalanche.defi.ez_bridge_activity
    GROUP BY
    platform
    ORDER BY
    total_amount_bridged DESC;

    QueryRunArchived: QueryRun has been archived