SniperShare of Users
    Updated 2025-02-13
    select
    case when TOKEN_in = '0x18e3605b13f10016901eac609b9e188cf7c18973' then 'SELL'
    when TOKEN_out = '0x18e3605b13f10016901eac609b9e188cf7c18973' then 'BUY' end as type,
    count(DISTINCT ORIGIN_FROM_ADDRESS) as users,
    count(DISTINCT TX_HASH) as transactions,
    sum(AMOUNT_IN) as volume_avax,
    sum(AMOUNT_IN_USD) as volume_usd,
    avg(AMOUNT_IN_USD) as avg_volume_usd
    from avalanche.defi.ez_dex_swaps
    where AMOUNT_IN_USD is NOT NULL
    and TOKEN_in = '0x18e3605b13f10016901eac609b9e188cf7c18973' OR
    TOKEN_out = '0x18e3605b13f10016901eac609b9e188cf7c18973'
    group by 1

    Last run: 2 months agoAuto-refreshes every 12 hours
    TYPE
    USERS
    TRANSACTIONS
    VOLUME_AVAX
    VOLUME_USD
    AVG_VOLUME_USD
    1
    BUY26003145554382938004.99892261616.5280.301680159
    2
    SELL1935121632235005947.972511803697.1147.072496738
    2
    122B
    5s