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 destination_chain not in ('filecoin','kava','polygon','avalanche','moonbeam','binance','arbitrum','fantom','celo','ethereum')
group by 1,2
order by 1 asc