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