tkvresearchcertain-green
    Updated 2025-03-07
    select
    sell_asset as negative,
    sum(sell_volume) as netflow_negative
    from
    (select date(block_timestamp) as date,
    symbol_in as sell_asset,
    -coalesce(sum(amount_in_usd),0) as sell_volume
    from avalanche.defi.ez_dex_swaps
    group by 1,2
    union all
    select date(block_timestamp) as date,
    symbol_out as buy_asset,
    coalesce(sum(amount_out_usd),0) as buy_volume
    from avalanche.defi.ez_dex_swaps
    group by 1,2
    )
    where date >= current_date - interval '24 hour'
    group by 1
    order by 2 asc
    limit 10
    Last run: about 2 months ago
    NEGATIVE
    NETFLOW_NEGATIVE
    1
    BLUB-1214685.74
    2
    AUSD-1127953.2
    3
    WAVAX-760215.439999998
    4
    WINK-461082.92
    5
    KET-383248.11
    6
    WETH.e-380922.550000002
    7
    USDt-336354.030000002
    8
    AI9000-104451.37
    9
    WAIFU-90747.63
    10
    SolvBTC.BBN-64755.7
    10
    232B
    2s