cypherRUNE flow - weekly transfered
    Updated 2022-05-04
    select
    date(date_trunc('week', block_timestamp)) as date,
    sum(rune_amount_usd) as volume
    from thorchain.transfers
    where block_timestamp >= current_date() - 90
    and asset = 'THOR.RUNE'
    group by date
    Run a query to Download Data