datavortexTotal Volume Driven Per Protocol
    Updated 2025-02-27
    SELECT
    protocol,
    chain,
    SUM(volume) AS total_volume
    FROM
    external.defillama.fact_dex_volume
    WHERE
    chain ILIKE 'solana'
    GROUP BY
    protocol, chain
    ORDER BY
    total_volume DESC;
    QueryRunArchived: QueryRun has been archived