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