ArioDistribution of MEW Swaps by DEXs
    Updated 2024-11-04
    select
    case
    when SWAP_PROGRAM ilike '%meteora%' then 'Meteora'
    when SWAP_PROGRAM ilike '%raydium%' then 'Raydium'
    when SWAP_PROGRAM ilike '%orca%' then 'Orca'
    when SWAP_PROGRAM ilike '%phoenix%' then 'Phoenix'
    when SWAP_PROGRAM ilike '%jupiter%' then 'Jupiter'
    else SWAP_PROGRAM
    end as DEX,
    sum(SWAP_FROM_AMOUNT_USD) as Swap_Amount
    from
    solana.defi.ez_dex_swaps
    where
    (
    SWAP_from_MINT = 'MEW1gQWJ3nEXg2qgERiKu7FAFj79PHvQVREQUzScPP5'
    or SWAP_to_MINT = 'MEW1gQWJ3nEXg2qgERiKu7FAFj79PHvQVREQUzScPP5'
    )
    and block_timestamp >= current_timestamp - interval '90 days'
    group by
    1
    QueryRunArchived: QueryRun has been archived