with Cel AS (
select
ADDRESS,
ADDRESS_NAME
from flipside_prod_db.crosschain.address_labels
where ADDRESS_NAME ilike '%Celsius%'
)
select
SYMBOL_OUT,
count(TX_HASH) AS Swaps
from ethereum.core.ez_dex_swaps
where ORIGIN_FROM_ADDRESS in (SELECT ADDRESS from Cel)
group by 1