shadilThorchain $RUNE Swap volume in over time
    Updated 2022-09-04
    select sum(from_amount_usd/rune_usd) as total_volume, block_timestamp::date as date_time
    from flipside_prod_db.thorchain.swaps
    where rune_usd is not null
    and from_amount_usd != 0
    group by date_time
    Run a query to Download Data