SELECT
date_trunc('week', block_timestamp) as date,
TRANSFER_TYPE as "Event type",
count(DISTINCT tx_id) as "Number of TXs",
count(DISTINCT sender) as "Number of users"
FROM
axelar.core.fact_transfers
WHERE
not transfer_type LIKE 'AXELAR'
GROUP BY
1,
2
order by
1