DEX | TRADING_PAIR | TX_COUNT | TRADERS_COUNT | TOTAL_TRADING_VOLUME | TOTAL_USD_TRADING_VOLUME | AVERAGE_TRADING_VOLUME | AVERAGE_USD_TRADING_VOLUME | |
---|---|---|---|---|---|---|---|---|
1 | Pharaoh | WAVAX => JACK | 14 | 8 | 4032.194574878 | 311.59 | 288.013898206 | 22.256428571 |
2 | Trader Joe | sAVAX => JACK | 434 | 219 | 1207487.6210019 | 116608.756546471 | 2763.12956751 | 266.839259832 |
3 | Trader Joe | JACK => WAVAX | 20 | 7 | 318.564547161 | 28.45 | 2.377347367 | 0.2331967213 |
4 | Pharaoh | JACK => WAVAX | 34 | 20 | 5731.391043495 | 435.83 | 168.570324809 | 12.818529412 |
5 | Trader Joe | WAVAX => JACK | 10 | 4 | 144.472909148 | 12.03 | 2.034829706 | 0.190952381 |
6 | Trader Joe | JACK => sAVAX | 467 | 269 | 1796368.96522207 | 190977.017099132 | 3813.946847605 | 405.471373884 |
Ali3NBy DEX & Pair JACK Swap Pairs' Stats in Avalanche DEXs
Updated 59 minutes ago
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
›
⌄
with savaxpricet as (
select hour,
avg (price) as savaxprice
from avalanche.price.ez_prices_hourly
where token_address = '0x2b2c81e08f1af8835a78bb2a90ae924ace0ea4be'
and hour >= '2025-03-01'
group by 1)
select case when platform ilike '%trader-joe%' then 'Trader Joe'
when platform ilike '%uniswap%' then 'Uniswap'
when platform ilike '%pharaoh%' then 'Pharaoh' else initcap(platform) end as dex,
symbol_in || ' => ' || symbol_out as Trading_Pair,
count (distinct tx_hash) as TX_Count,
count (distinct origin_from_address) as Traders_Count,
sum (case when token_in = '0x3fe4902b275caf603c46c81f3d921bb8515b5bc0' then amount_in
when token_out = '0x3fe4902b275caf603c46c81f3d921bb8515b5bc0' then amount_out end) as Total_Trading_Volume,
sum (case when amount_in_usd > 0 or amount_out_usd > 0 then coalesce(amount_in_usd,amount_out_usd,0) when token_in = '0x2b2c81e08f1af8835a78bb2a90ae924ace0ea4be' then amount_in*savaxprice when token_out = '0x2b2c81e08f1af8835a78bb2a90ae924ace0ea4be' then amount_out*savaxprice end) as Total_USD_Trading_Volume,
avg (case when token_in = '0x3fe4902b275caf603c46c81f3d921bb8515b5bc0' then amount_in
when token_out = '0x3fe4902b275caf603c46c81f3d921bb8515b5bc0' then amount_out end) as Average_Trading_Volume,
avg (case when amount_in_usd > 0 or amount_out_usd > 0 then coalesce(amount_in_usd,amount_out_usd,0) when token_in = '0x2b2c81e08f1af8835a78bb2a90ae924ace0ea4be' then amount_in*savaxprice when token_out = '0x2b2c81e08f1af8835a78bb2a90ae924ace0ea4be' then amount_out*savaxprice end) as Average_USD_Trading_Volume,
from avalanche.defi.ez_dex_swaps t1 left outer join savaxpricet t3 on date_trunc (hour,t1.block_Timestamp) = t3.hour
where token_in in ('0x3fe4902b275caf603c46c81f3d921bb8515b5bc0')
or token_out = '0x3fe4902b275caf603c46c81f3d921bb8515b5bc0'
group by 1,2
Last run: about 1 hour agoAuto-refreshes every 6 hours
6
529B
188s