NEGATIVE | NETFLOW_NEGATIVE | |
---|---|---|
1 | WAVAX | -47603915.79 |
2 | USDC | -1730395.51999997 |
3 | SolvBTC | -1324348.68 |
4 | BLUB | -1214685.74 |
5 | avUSD | -954267.73 |
6 | WETH.e | -888579.119999998 |
7 | WBTC.e | -756264.07 |
8 | WAIFU | -524455.26 |
9 | WINK | -377418.540000002 |
10 | AI9000 | -236447.86 |
tkvresearchprotective-salmon
Updated 2025-03-07
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
›
⌄
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 '30 day'
group by 1
order by 2 asc
limit 10
Last run: about 2 months ago
10
238B
3s