select
origin_from_address as "Swapper Address",
count(distinct tx_hash) as "Swaps",
sum(amount_in_usd) as "volume(USD)"
from
avalanche.core.ez_dex_swaps
where block_timestamp::date between '{{StartDate}}' and '{{EndDate}}'
group by 1
order by 2 desc
limit 100