The NNS Team submitted the following proposals. DFINITY plans to vote on these proposals the following Monday.
- https://dashboard.internetcomputer.org/proposal/135205
- https://dashboard.internetcomputer.org/proposal/135206
- https://dashboard.internetcomputer.org/proposal/135207
Proposals to be Submitted
Cycles-minting
# Upgrade the Cycles-minting Canister to Commit 2d4bcba
__Proposer__: jason.zhu at dfinity.org
__Source code__: [2d4bcba47ea10520ff21ce54a8acb9cdb0629317][new-commit]
[new-commit]: https://github.com/dfinity/ic/tree/2d4bcba47ea10520ff21ce54a8acb9cdb0629317
## Features & Fixes
### Added
* Automatically refund when the memo in an incoming ICP transfer is not one of
the special values that indicate the purpose of the transfer (e.g. to create a
new canister). This was originally proposed without objection in [the forum].
[the forum]: https://forum.dfinity.org/t/extend-cycles-minting-canister-functionality/37749/2
## New Commits
```
$ git log --format="%C(auto) %h %s" b5192581ccd35b67fe5a1f795ead9cbcd25956d6..2d4bcba47ea10520ff21ce54a8acb9cdb0629317 -- ./rs/nns/cmc
5506c7c41e chore: [EXC-1835] Make ic-management-canister-types private (#3814)
ae3ab5aa3c refactor(nervous-system): Move Request implementations from canister crates to rs/nervous_system/agent (#3657)
0ac8a60bc9 feat(cycles-minting-canister): Enabled automatic refunds. (#3632)
8f4c5bbf3f docs(cmc): Fixed a comment in CMC automatic refund. (#3634)
5c68a63660 feat(ic-nervous-system-agent): Add management canister functions (#3591)
03393bc817 feat(cycles-minting): Cycles Minting canister refunds automatically. (#3484)
```
## Upgrade Arguments
```candid
()
```
## Current Version
__Current git hash__: b5192581ccd35b67fe5a1f795ead9cbcd25956d6
__Current wasm hash__: 11c8dedd11741f05990498c90f925e9e37ad60647a65ef47caa59cdba234be6f
## 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/2d4bcba47ea10520ff21ce54a8acb9cdb0629317/rs/nervous_system/docs/proposal_verification.md
### WASM Verification
See ["Building the code"][prereqs] for prerequisites.
[prereqs]: https://github.com/dfinity/ic/tree/2d4bcba47ea10520ff21ce54a8acb9cdb0629317/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 2d4bcba47ea10520ff21ce54a8acb9cdb0629317
# 2. Build canisters.
./ci/container/build-ic.sh -c
# 3. Fingerprint the result.
sha256sum ./artifacts/canisters/cycles-minting-canister.wasm.gz
```
This should match `wasm_module_hash` field of this proposal.
### Upgrade Arguments Verification
[`didc`][latest-didc] is required.
[latest-didc]: https://github.com/dfinity/candid/releases/latest
```
didc encode '()' | xxd -r -p | sha256sum
```
This should match the `arg_hash` field of this proposal.
Governance
# Upgrade the Governance Canister to Commit 2d4bcba
__Proposer__: jason.zhu at dfinity.org
__Source code__: [2d4bcba47ea10520ff21ce54a8acb9cdb0629317][new-commit]
[new-commit]: https://github.com/dfinity/ic/tree/2d4bcba47ea10520ff21ce54a8acb9cdb0629317
## Features & Fixes
### Added
#### List Neurons API Change: Query by Subaccount
The `list_neurons` API now supports querying by neuron subaccount. This is useful for neuron holders who
have many neurons and want to list only the neurons associated with a particular subaccount.
A new field `neuron_subaccounts` is added to the request, which is a list of subaccounts to query
for. If this field is present, any neurons found will be added to the response. If duplicate
neurons are found between this field and others, they will be deduplicated before returning the value.
This new field works in the same way that the existing `neuron_ids` field works.
#### Migrating Active Neurons to Stable Memory
In this release, we turn on the feature to migrate active neurons to stable memory:
`migrate_active_neurons_to_stable_memory`. After the feature is turned on, a timer task will
gradually move active neurons from the heap to stable memory. Clients should not expect any
functional behavior changes, since no APIs rely on where the neurons are stored.
### Changed
* The limit of the number of neurons is increased from 380K to 400K.
## New Commits
```
$ git log --format="%C(auto) %h %s" c5e098e8cc8e62249e6d7f4ed09e6c2ed87fc800..2d4bcba47ea10520ff21ce54a8acb9cdb0629317 -- ./rs/nns/governance ./rs/sns/init
a3ef9a55e4 feat(nns): Turn on the feature to migrate neurons to stable memory (#3864)
dba1fcc0bc chore(nns): Remove changelog entries which are already copied to CHANGELOG.md (#3865)
0c590b1dd7 docs(nns): Updated comment about following pruning batches. (#3772)
5506c7c41e chore: [EXC-1835] Make ic-management-canister-types private (#3814)
90acaff3bc chore(nns): Clean up the migration code to backfill InstallCode hashes (#3809)
5acf43fb09 feat(sns): Do not store logos in SNS initialization parameters to save space (#3786)
36c6abf7e8 perf(nns): Set NNS Governance governance noise threshold to 5% (#3766)
fa247dff11 chore(nervous-system): Release on 2025-02-03 (#3735)
03230898e8 refactor(nns): Follow up on PR 3090 (#3773)
413a393dd6 feat(nns): list_neurons supports querying by subaccount (#3592)
acb62c3efe docs(nns): Added a TODO with Jira ticket ID about the demise of refresh neuron flags. (#3783)
9dd1f0ceb0 chore(nns): Deleted set_initial_voting_power_economics. (#3778)
8c3920c149 chore(nns): Deleted backfilling voting_power_refreshed_timestamp. (#3780)
134fbac885 docs(nns): Follow up on PR 2339 (#3771)
fd7cd5a125 chore(nns): Modify the comment on `include_empty_neurons_readable_by_caller` (#3740)
3afdf372a9 feat(IC-1579): Governance: TLA Codelink for refresh_neuron (#3547)
30b3069b8c chore: allow automatically replacing a node even if it is active as an API BN (#3707)
156e27ae42 docs(nns): Created entry in Governance's CHANGELOG for proposal 134777 (Jan 10). (#3732)
796a902752 feat(nns): Bump neurons limit (#3739)
5bea1df380 chore(governance): Remove unused types (#3711)
```
## Current Version
__Current git hash__: c5e098e8cc8e62249e6d7f4ed09e6c2ed87fc800
__Current wasm hash__: bd821399f16d4bdac8cef06b81d8ac72cf8e36a7ab766efccb2a0925be6f388f
## 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/2d4bcba47ea10520ff21ce54a8acb9cdb0629317/rs/nervous_system/docs/proposal_verification.md
### WASM Verification
See ["Building the code"][prereqs] for prerequisites.
[prereqs]: https://github.com/dfinity/ic/tree/2d4bcba47ea10520ff21ce54a8acb9cdb0629317/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 2d4bcba47ea10520ff21ce54a8acb9cdb0629317
# 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.
Registry
# Upgrade the Registry Canister to Commit 2d4bcba
__Proposer__: jason.zhu at dfinity.org
__Source code__: [2d4bcba47ea10520ff21ce54a8acb9cdb0629317][new-commit]
[new-commit]: https://github.com/dfinity/ic/tree/2d4bcba47ea10520ff21ce54a8acb9cdb0629317
## Features & Fixes
### Changed
#### Migrate Registry to use ic_stable_structures' MemoryManager
This update migrates registry from using dfn_core to using virtual memory regions provided by ic_stable_structures
MemoryManager. This allows in the future to migrate the Registry records into stable memory.
#### Automatically replace the nodes when an active API boundary node is replaced
`add_node` will now also automatically replace a node if it is being redeployed and has
been active as an API boundary node before. It will fail if the redeployed node does not
meet the requirements for an API boundary node (i.e., is configured with a domain name).
### Deprecated
The legacy ECDSA-specific fields are no longer supported in Registry canister's subnet operations
(creation, updating, recovery). Please use the more expressive chain key configuration keys:
* `ecdsa_config` ā `chain_key_config`
* `ecdsa_key_signing_enable` ā `chain_key_signing_enable`
* `ecdsa_key_signing_disable` ā `chain_key_signing_disable`
### Fixed
#### Backfill node_reward_type for existing nodes
A one-time migration to fill in the `node_reward_type` field for existing nodes was added. Previously, there was no
on-chain connection between the specific nodes and their reward types. This data came from off-chain sources
at DFINITY. In the future, the `node_reward_type` will be used to determine the reward type for each node, and
it will be a required field for node registration in the IC.
## New Commits
```
$ git log --format="%C(auto) %h %s" a5878586e47536d4cd47f0aadb66b73df8131d2b..2d4bcba47ea10520ff21ce54a8acb9cdb0629317 -- ./rs/registry/canister
5506c7c41e chore: [EXC-1835] Make ic-management-canister-types private (#3814)
5e85addd44 chore(registry): Remove obsolete ECDSA API (#3827)
0206830a65 test(btc): Port ckBTC tests from legacy ECDSA to chain key Registry API (#3820)
b803bf020c feat(registry): Obsolete legacy ECDSA configs (#3709)
30b3069b8c chore: allow automatically replacing a node even if it is active as an API BN (#3707)
ec6e895aef refactor(registry): Migrate Registry to use MemoryManager instead of raw stable memory (#3700)
ae3ab5aa3c refactor(nervous-system): Move Request implementations from canister crates to rs/nervous_system/agent (#3657)
6d4ecc89e1 chore(registry): Backfill missing node_reward_type records (#3589)
5c68a63660 feat(ic-nervous-system-agent): Add management canister functions (#3591)
69748856b6 refactor: Use Principal in RemoveNodeOperatorsPayload, instead of Vec<u8> (#3386)
f569791cc7 docs(governance): Added 2025-01-20 CHANGELOG.md entries. (#3535)
```
## Current Version
__Current git hash__: a5878586e47536d4cd47f0aadb66b73df8131d2b
__Current wasm hash__: f0fb8fa545b2cc68f030b040e1182a8d004c4d4f4bb4341c9f1b432642c85bef
## 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/2d4bcba47ea10520ff21ce54a8acb9cdb0629317/rs/nervous_system/docs/proposal_verification.md
### WASM Verification
See ["Building the code"][prereqs] for prerequisites.
[prereqs]: https://github.com/dfinity/ic/tree/2d4bcba47ea10520ff21ce54a8acb9cdb0629317/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 2d4bcba47ea10520ff21ce54a8acb9cdb0629317
# 2. Build canisters.
./ci/container/build-ic.sh -c
# 3. Fingerprint the result.
sha256sum ./artifacts/canisters/registry-canister.wasm.gz
```
This should match `wasm_module_hash` field of this proposal.