mmdrezaNumber of transactios when osmosis hacked
    Updated 2022-07-10
    select date_trunc('day',block_timestamp)as date,count(pool_ids) as transactions
    from osmosis.core.fact_swaps
    where pool_ids is not null and block_timestamp between '2022-06-05' and '2022-06-15'
    group by date
    order by date asc
    Run a query to Download Data