datavortexBridge From Aptos
    Updated 2024-12-24
    WITH top_tokens_from_aptos AS (
    SELECT
    token_address,
    ANY_VALUE(symbol) AS symbol,
    COUNT(DISTINCT tx_hash) AS "Bridges From Aptos Count"
    FROM
    aptos.defi.ez_bridge_activity
    WHERE
    DATE_TRUNC('month', block_timestamp) = DATE_TRUNC('month', CURRENT_DATE)
    AND source_chain = 'Aptos'
    GROUP BY
    token_address
    )
    SELECT
    token_address,
    symbol,
    "Bridges From Aptos Count"
    FROM
    top_tokens_from_aptos
    ORDER BY
    "Bridges From Aptos Count" DESC
    LIMIT
    5;
    QueryRunArchived: QueryRun has been archived