maymoth55Total Volume of Transactions Involving Polygon( for the year 2024)
    Updated 2024-10-17
    SELECT
    SUM(amount) AS total_volume,
    AVG(amount) AS average_volume
    FROM
    AXELAR.defi.ez_bridge_squid
    WHERE
    (source_chain = 'polygon' OR destination_chain = 'polygon')
    AND BLOCK_TIMESTAMP >= '2024-01-01'
    AND BLOCK_TIMESTAMP < CURRENT_DATE;

    QueryRunArchived: QueryRun has been archived