select date_trunc('month',block_timestamp) as "Month", count(distinct tx_id) as "Transfers",
count(distinct sender) as "Senders", count(distinct Receiver) as "Receivers",
transfer_type as "Transfer Type"
from axelar.core.fact_transfers
where tx_succeeded='true'
group by 1,5
order by 1