shadilThorchain number of swaps in over time
    Updated 2022-09-04
    select count(*) as swap_count, 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