with celsius_wallets as (select address
from flipside_prod_db.crosschain.address_labels
where project_name like '%celsius network%')
select symbol_out, count(tx_hash) as num_swaps
from ethereum.core.ez_dex_swaps
where origin_from_address in (select address from celsius_wallets) and symbol_out is not null
group by 1
order by num_swaps desc
limit 10