select count(distinct tx_id) as "Swap Count", count(distinct trader) as "Trader Count", round(count(distinct tx_id)/count(distinct trader)) as "Swap per Trader"
from flow.defi.ez_swaps
where block_timestamp::date between '{{Start_Date}}' and '{{End_Date}}'
and (token_in_contract='A.1654653399040a61.FlowToken' or token_out_contract='A.1654653399040a61.FlowToken')