SELECT
trunc(block_timestamp,'day') as date,
concat (source_chain,'->',destination_chain) as direction,
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' or destination_chain='avalanche'
group by 1,2
order by 1 asc