SELECT trunc(BLOCK_TIMESTAMP,'week') as week, sum(RUNE_AMOUNT_USD) as rune_transferred_USD,
count(*) as transfers
from thorchain.transfers
where ASSET = 'THOR.RUNE'
and BLOCK_TIMESTAMP::date BETWEEN '2021-04-01' and '2022-05-01'
GROUP by 1 order by 1