DEX | USERS | TRANSACTIONS | |
---|---|---|---|
1 | uniswap | 1822332 | 24723281 |
2 | quickswap | 1545288 | 19896127 |
3 | sushiswap | 905775 | 4723514 |
4 | woofi | 300445 | 1407901 |
5 | dodo | 230149 | 1168424 |
Flipside Community5A - polygon most popular dexes among all users
Updated 2025-02-04
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
›
⌄
select
case
when platform = 'uniswap-v2' or platform = 'uniswap-v3' then 'uniswap'
when platform = 'pancakeswap-v2' or platform = 'pancakeswap-v3' then 'pancakeswap'
when platform = 'kyberswap-v1' or platform = 'kyberswap-v2' then 'kyberswap'
when platform = 'dodo-v1' or platform = 'dodo-v2' then 'dodo'
when platform = 'quickswap-v2' or platform = 'quickswap-v3' then 'quickswap'
else platform
end as dex,
count(distinct origin_from_address) as users,
count(distinct tx_hash) as transactions
from polygon.defi.ez_dex_swaps
where
block_timestamp::date >='2023-01-01'
and block_timestamp::date < '2024-01-01'
group by 1
order by 2 desc, 3 desc
limit 5
Last run: 3 months ago
5
139B
13s