select date_trunc('day', block_timestamp) as dt, sum(rune_amount) as volume_rune, sum(rune_amount_usd) as volume_rune_usd, count(block_timestamp) as tx_count,
count(distinct from_address) as unique_sender
from thorchain.transfers
where year(block_timestamp) = '2022'
group by 1