select distinct (SWAP_TO_MINT)as swap_to,
count (*)
from solana.core.fact_swaps a
where BLOCK_ID in
(select BLOCK_ID from solana.core.fact_events
where PROGRAM_ID ='SWiMDJYFUGj6cPrQ6QYYYWZtvXQdRChSVAygDZDsCHC')and swap_from_mint='So11111111111111111111111111111111111111112'
and SUCCEEDED = 'TRUE'
group by 1
order by 2 desc
limit 10