buzzresearchVolume Bridged by Ecosystem Overtime
    Updated 2024-09-23
    SELECT
    destination_chain,
    SUM(amount_usd) AS total_volume
    FROM
    arbitrum.defi.ez_bridge_activity
    WHERE
    block_timestamp <= CURRENT_DATE
    AND destination_chain IS NOT NULL
    AND destination_chain != ''
    AND amount_usd IS NOT NULL
    GROUP BY
    destination_chain
    ORDER BY
    total_volume DESC;

    QueryRunArchived: QueryRun has been archived