DEX | TRADING_PAIR | TX_COUNT | TRADERS_COUNT | TOTAL_TRADING_VOLUME | TOTAL_USD_TRADING_VOLUME | AVERAGE_TRADING_VOLUME | AVERAGE_USD_TRADING_VOLUME | |
---|---|---|---|---|---|---|---|---|
1 | Trader Joe | sAVAX => JACK | 979 | 321 | 3274848.46283377 | 273075.466546471 | 3331.483685487 | 277.798033109 |
2 | Trader Joe | JACK => WAVAX | 74 | 18 | 646.546856007 | 57.33 | 1.811055619 | 0.184340836 |
3 | Pharaoh | WAVAX => JACK | 166 | 74 | 43937.851943767 | 3474.49 | 264.685855083 | 20.930662651 |
4 | Trader Joe | WAVAX => JACK | 37 | 9 | 447.029103139 | 38.71 | 1.817191476 | 0.1735874439 |
5 | Pharaoh | JACK => WAVAX | 196 | 86 | 48648.995568296 | 3894.85 | 248.209161063 | 19.871683673 |
6 | Trader Joe | JACK => sAVAX | 1196 | 422 | 4303249.39877926 | 381498.999453953 | 3568.200164825 | 316.334162068 |
Ali3NBy DEX & Pair JACK Swap Pairs' Stats in Avalanche DEXs
Updated 4 hours 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 4 hours agoAuto-refreshes every 6 hours
6
540B
9s