itsxenuxTHORChain Swap volume in first 30 days
    Updated 2022-04-15
    select sum(from_amount_usd) as vol,
    block_timestamp::date as date_time
    from thorchain.swaps
    where block_timestamp::date >= '2021-04-11'
    and block_timestamp::date <= '2021-05-11'
    group by date_time
    order by date_time
    Run a query to Download Data