adambaladistribution of the size of swaps
    Updated 2021-12-05

    SELECT
    pool_name as title,
    date_trunc('day',block_timestamp) as date ,
    sum(to_amount_usd) as swap_size
    from thorchain.swaps
    where block_timestamp::date > current_date-100
    group by title,date
    Run a query to Download Data