The NNS Team submitted the following proposals. DFINITY plans to vote on these proposals the following Monday.
https://dashboard.internetcomputer.org/proposal/135702
Proposals to be Submitted
Governance
# Upgrade the Governance Canister to Commit 7286063
__Proposer__: jason.zhu at dfinity.org
__Source code__: [7286063eaecd4d3625a8bf991213e27e21d3c2cf][new-commit]
[new-commit]: https://github.com/dfinity/ic/tree/7286063eaecd4d3625a8bf991213e27e21d3c2cf
## Features & Fixes
### Added
* Collect metrics about timer tasks defined using ic_nervous_system_timer_task library.
* Re-enable neuron migration to stable memory:
* Setting `MIGRATE_ACTIVE_NEURONS_TO_STABLE_MEMORY` to true, which will cause active neurons
to be continously moved from heap memory to stable memory.
* Compared to the last time it was enabled, several improvements were made:
* Distribute rewards is moved to timer, and has a mechanism to distribute in batches in
multiple messages.
* Unstaking maturity task has a limit of 100 neurons per message, which prevents it from
exceeding instruction limit.
* The execution of `ApproveGenesisKyc` proposals have a limit of 1000 neurons, above which
the proposal will fail.
* More benchmarks were added.
* Enable timer task metrics for better observability.
### Changed
* Voting Rewards will be scheduled by a timer instead of by heartbeats.
* Unstaking maturity task will be processing up to 100 neurons in a single message, to avoid
exceeding the instruction limit in a single execution.
* Voting Rewards will be distributed asynchronously in the background after being calculated.
* This will allow rewards to be compatible with neurons being stored in Stable Memory.
* Ramp up the failure rate of _pb method to 0.7 again.
### Fixed
* Avoid applying `approve_genesis_kyc` to an unbounded number of neurons, but at most 1000 neurons.
## New Commits
```
$ git log --format="%C(auto) %h %s" ebb190bf1da0dba3e486b78c95cf5a3c5542e2f3..7286063eaecd4d3625a8bf991213e27e21d3c2cf -- ./rs/nns/governance ./rs/sns/init
7286063eae feat(nns): Enable timer task metrics (#4285)
69cab5d235 feat(nns): Re-enable neuron migration (#4274)
5ed21c21b5 perf(nns): Add benchmarks for with_neuron_mut (#4265)
8ba19cdab4 fix(nns): Avoid applying approve_genesis_kyc for more than 1000 neurons (#4273)
1385e1e466 feat(nns): Increase the _pb method failure rate to 0.7 again (#4237)
a04682c0a5 chore(sns): Remove obsolete field `airdrop_distribution` (#4239)
22f7b0b127 feat(governance): Scalable Voting Rewards (#4213)
4846749e5d chore(sns): Obsolete airdrop neurons from initial SNS configuration (#4137)
9d95c7c523 feat(nns): Limit the number of neurons to unstake maturity in a single message (#4184)
7344d0ada2 perf(nns): Assert the instructions of certain periodic tasks are not too high (#4214)
1d1c1e73bd test(nns): Fix tests that see less and less voting power. (#4196)
90a8aa927f feat(governance): Move Rewards Distribution into timer (#3969)
c628bfffcb chore(nns/sns): Update changelog for NNS/SNS releases (#4207)
0d5ed6da44 feat(nns): Add metrics collection to timer tasks (#4141)
```
## Current Version
__Current git hash__: ebb190bf1da0dba3e486b78c95cf5a3c5542e2f3
__Current wasm hash__: d1668a798dc235587dfd3d50c0f7655b74d9360d4a5dbafd11ddc47042a7fbe4
## Verification
See the general instructions on [how to verify] proposals like this. A "quick
start" guide is provided here.
[how to verify]: https://github.com/dfinity/ic/tree/7286063eaecd4d3625a8bf991213e27e21d3c2cf/rs/nervous_system/docs/proposal_verification.md
### WASM Verification
See ["Building the code"][prereqs] for prerequisites.
[prereqs]: https://github.com/dfinity/ic/tree/7286063eaecd4d3625a8bf991213e27e21d3c2cf/README.adoc#building-the-code
```
# 1. Get a copy of the code.
git clone git@github.com:dfinity/ic.git
cd ic
# Or, if you already have a copy of the ic repo,
git fetch
git checkout 7286063eaecd4d3625a8bf991213e27e21d3c2cf
# 2. Build canisters.
./ci/container/build-ic.sh -c
# 3. Fingerprint the result.
sha256sum ./artifacts/canisters/governance-canister.wasm.gz
```
This should match `wasm_module_hash` field of this proposal.