i_danPharaoh: V1 vs V2 Main
    Updated 2025-03-10
    SELECT
    platform AS "Platform"
    , Count(*) AS "Transactions"
    , Count(DISTINCT origin_from_address) AS "Swappers"
    , COUNT(DISTINCT pool_name) AS "Pairs"
    , SUM(CASE WHEN amount_in_usd IS NOT NULL AND amount_out_usd IS NOT NULL THEN (amount_in_usd+amount_out_usd)/2
    WHEN amount_in_usd IS NULL THEN amount_out_usd ELSE amount_in_usd END) AS "Volume"
    , COUNT(DISTINCT symbol) AS "Assets"
    FROM (
    SELECT
    platform
    , symbol_in AS symbol
    , origin_from_address
    , pool_name
    , amount_in_usd
    , amount_out_usd
    FROM avalanche.defi.ez_dex_swaps
    WHERE platform LIKE '%pharaoh%'
    UNION ALL
    SELECT
    platform
    , symbol_out AS symbol
    , origin_from_address
    , pool_name
    , amount_in_usd
    , amount_out_usd
    FROM avalanche.defi.ez_dex_swaps
    WHERE platform LIKE '%pharaoh%'
    )
    GROUP BY 1
    ORDER BY 2 DESC
    Last run: 24 days ago
    Platform
    Transactions
    Swappers
    Pairs
    Volume
    Assets
    1
    pharaoh-v2562982011536244811683385005.3184
    2
    pharaoh-v1108437026843175742100218.87113
    2
    103B
    3s