SELECT symbol_in,
sum(amount_in_usd) as volume
from flipside_prod_db.crosschain.ez_swaps a left join flipside_prod_db.crosschain.address_labels b on a.origin_from_address=b.address
where b.project_name='celsius network'
and b.address_name='celsius wallet'
and a.amount_in_usd is not null
and a.platform='sushiswap'
group by 1
order by volume desc
limit 10