select top 10
origin_from_address
,count (distinct tx_hash) as tx_count
,sum (amount_in_usd) as volume_usd
from ethereum.sushi.ez_swaps
where origin_from_address in (select address from flipside_prod_db.crosschain.address_labels where project_name ='celsius network')
group by 1
order by tx_count DESC