SELECT * from
(SELECT swap_from_mint, count(distinct swapper) as numer_of_participants, count(*) as total_swaps
from solana.fact_swaps
where block_timestamp::date >= '2022-01-01' and SUCCEEDED = 'TRUE' and swap_program like '%raydium v4%'
GROUP by 1)
inner join solana.labels
on swap_from_mint = address
order by 3 desc
limit 10