boomer77swapping
    Updated 2021-10-24
    select date_trunc('day', block_timestamp) as dt, count(distinct tx_id) as swaps_count, count(distinct from_address) as Swappers
    from thorchain.swaps
    where block_timestamp >= CURRENT_DATE - 60
    group by 1
    order by 1 desc
    Run a query to Download Data