sarathsushi_uni 2
Updated 2022-10-17
99
1
2
3
4
5
6
7
8
9
10
11
12
13
›
⌄
with polygon_sushiswap as (
select
origin_from_address as "Swapper",
'Sushiswap' as "Platform",
count (distinct tx_hash) as "Number of Swaps"
from polygon.sushi.ez_swaps
where platform = 'sushiswap'
group by "Swapper"
order by "Number of Swaps" desc
limit 10
)
select * from polygon_sushiswap
Run a query to Download Data