select
date_trunc(week,block_timestamp)::date as date
,token_symbol
,count(DISTINCT tx_hash) as transactions
,count(sender) as wallets
,sum(amount) as amount_usd
from axelar.defi.ez_bridge_squid
where token_symbol in('WMAI','USDT','USDC','axlUSDC','axlUSDT','axlWMAI')
group by 1,2
order by 1