zero-ndoLtSunstakes over time
    Updated 2022-07-19
    select block_timestamp::date as "date", count(tx_id) as number from osmosis.core.fact_staking
    where action='undelegate' and "date" > current_date - interval '3 months'
    group by 1
    order by 1 asc
    Run a query to Download Data