SniperTop Traded Tokens by Volume
    Updated 2025-04-15
    with pharaoh as ( select block_timestamp,
    tx_hash,
    origin_from_address,
    pool_name,
    symbol_in,
    symbol_out,
    case when amount_in_usd is null then amount_out_usd
    when amount_out_usd is null then amount_in_usd
    when amount_in_usd>=amount_out_usd then amount_in_usd
    when amount_out_usd>amount_in_usd then amount_out_usd end as amount_usd
    from avalanche.defi.ez_dex_swaps
    where platform LIKE '%pharaoh%'
    and block_timestamp::date >= '2025-01-01'
    )
    ,
    tbl1 as (select
    symbol_in as token,
    'Sell' as type,
    sum(amount_usd) as volume,
    count(DISTINCT tx_hash) as swaps
    from pharaoh
    WHERE amount_usd is not null
    group by 1,2
    order by 3 desc
    limit 20)
    ,
    tbl2 as (select
    symbol_out as token,
    'Buy' as type,
    sum(amount_usd) as volume,
    count(DISTINCT tx_hash) as swaps
    from pharaoh
    WHERE amount_usd is not null
    group by 1,2
    order by 3 desc
    limit 20)
    Last run: 10 days ago
    TOKEN
    TYPE
    VOLUME
    SWAPS
    1
    WAVAXSell1573220150.52962977
    2
    USDCSell801626206.59419199
    3
    BTC.bSell500812668.92171090
    4
    USDtSell329073135.43104159
    5
    KETSell303351277.51356447
    6
    WETH.eSell240419490.14175115
    7
    XSGDSell101286909.8269564
    8
    AUSDSell86334832.7317965
    9
    sAVAXSell50773532.4527932
    10
    PHARSell27574681.6175799
    11
    AI9000Sell16375922.2745714
    12
    WINKSell8196391.8611155
    13
    WAIFUSell8023615.1319898
    14
    TRUMPSell6745627.792639
    15
    EUROCSell5876289.212585
    16
    ggAVAXSell5279032.721935
    17
    BLUBSell5084826.2911977
    18
    COQSell4976909.4310602
    19
    USDC.eSell4709032.2725569
    20
    VELAISell4619057.126038
    40
    1KB
    4s