freemartianDaily Undelegation count
    Updated 2022-07-19
    select count(delegator_address) as unstakeeeers, count(tx_id) as undelegate_count, date_trunc('day', block_timestamp::date) as TIME
    from osmosis.core.fact_staking
    where block_timestamp > '2022-01-01'
    and action = 'undelegate'
    group by TIME
    Run a query to Download Data