query8120query8120$RUNE Flow: weekly
    Updated 2022-05-04
    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
    Run a query to Download Data