adambalaSwap Size
    Updated 2021-12-05

    SELECT

    date_trunc('day',block_timestamp) as date ,
    sum(to_amount_usd)/count(tx_id) as ave_swap_size
    from thorchain.swaps
    where block_timestamp::date > current_date-365
    group by date
    Run a query to Download Data