OneDataAnalystMonthly undelegating transactions
    Updated 2022-07-17
    SELECT Date_trunc('month',BLOCK_TIMESTAMP) AS Month, Count(*) AS Undelegate_request
    FROM osmosis.core.fact_staking
    WHERE ACTION = 'undelegate'
    Group By 1
    Run a query to Download Data