SELECT
date_trunc('month',block_timestamp) as "Month",
iff(tx_receiver='token.sweat', 'token.sweat', 'Other') as tx_receiver,
count(distinct tx_hash) as "Transaction Count"
from near.core.fact_transactions
where tx_signer = 'sweat_welcome.near'
and block_timestamp::date between '2022-05-01' and '2022-12-31'
group by 1,2
order by 3 desc