ArioHot Contracts on Osmosis - part 1
    Updated 2022-07-10
    select
    count(tx_id) as N_of_use,
    cast(POOL_IDS as VARCHAR) as POOL_IDS
    from osmosis.core.fact_swaps
    where
    POOL_IDS is not NULL
    AND
    BLOCK_TIMESTAMP::date >= '2022-05-01'
    group by POOL_IDS
    order by N_of_use DESC
    limit 10
    Run a query to Download Data