SELECT
trunc(block_timestamp,'day') as date,
destination_chain,
count(distinct tx_hash) as actions,
count(distinct sender) as active_users--,
--sum(amount) as volume
from axelar.core.ez_squid x
where source_chain='avalanche'
group by 1,2
order by 1 asc