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