select
LABEL,
count(distinct tx_id) as swap_tx,
sum (swap_from_amount) as swap_vol_from_hubbl
from solana.core.fact_swaps a join solana.core.dim_labels b on a.swap_to_mint = b.address
where swap_from_mint = ('USDH1SM1ojwWUga67PGrgFWUHibbjqMvuMaDkRJTgkX')
and succeeded = 'TRUE'
group by 1
order by 3 DESC
limit 10