SniperDaily Swap Volume (Buy) [From 2025]
    Updated 2025-03-20
    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'
    )
    ,

    tbl as (select
    trunc(block_timestamp::date,'day') as date,
    symbol_out as token,
    -- 'Buy' as type,
    sum(amount_usd) as volume,
    from pharaoh
    GROUP by 1,2),

    temp as (select
    date,
    token,
    -- 'Buy' as type,
    volume,
    row_number() over (partition by date order by volume desc) as row_num
    from tbl)

    select date,
    token,
    volume
    -- Transactions,
    Last run: about 1 month ago
    DATE
    TOKEN
    VOLUME
    1
    2025-02-12 00:00:00.000WAVAX29134018.83
    2
    2025-02-03 00:00:00.000WAVAX27509642.47
    3
    2025-02-10 00:00:00.000WAVAX25552827.76
    4
    2025-03-07 00:00:00.000WAVAX24433834.58
    5
    2025-03-02 00:00:00.000WAVAX23831154.27
    6
    2025-03-06 00:00:00.000WAVAX22606771.71
    7
    2025-03-03 00:00:00.000WAVAX22338207.1
    8
    2025-03-08 00:00:00.000WAVAX21285862.9
    9
    2025-03-18 00:00:00.000WAVAX20604329.64
    10
    2025-02-14 00:00:00.000WAVAX20483578.42
    11
    2025-02-15 00:00:00.000WAVAX20278932.78
    12
    2025-02-21 00:00:00.000WAVAX20006064.43
    13
    2025-02-28 00:00:00.000WAVAX19970387.84
    14
    2025-01-20 00:00:00.000USDC19821782.58
    15
    2025-02-18 00:00:00.000WAVAX19806481.4
    16
    2025-01-20 00:00:00.000WAVAX19652676.33
    17
    2025-03-11 00:00:00.000WAVAX19472205.09
    18
    2025-03-05 00:00:00.000WAVAX19442817.28
    19
    2025-02-25 00:00:00.000WAVAX19145475.08
    20
    2025-02-27 00:00:00.000WAVAX18804818.9
    ...
    603
    27KB
    3s