select
count(distinct tx_hash) as swaps,
count(distinct sender) as swappers,
sum(amount_in_usd) as volume_usd,
avg(amount_in_usd) as average_volume_usd
from avalanche.core.ez_dex_swaps
where '0xc3344870d52688874b06d844e0c36cc39fc727f6' in (token_in, token_out)
and amount_in_usd > 0