The Governance Team submitted the following proposals to publish new versions of SNS canisters to SNS-WASM. DFINITY plans to vote on these proposals the following Monday.
- https://dashboard.internetcomputer.org/proposal/136989
- https://dashboard.internetcomputer.org/proposal/136990
- https://dashboard.internetcomputer.org/proposal/136991
- https://dashboard.internetcomputer.org/proposal/136992
Proposals to be Submitted
Governance
# Publish SNS Governance WASM Built at Commit 12afb25
__Proposer__: arshavir.ter.gabrielyan at dfinity.org
__Source code__: [12afb2543219f43e4088e1ecd6d235962e71b211][new-commit]
[new-commit]: https://github.com/dfinity/ic/tree/12afb2543219f43e4088e1ecd6d235962e71b211
## Features & Fixes
### Added
#### New `get_metrics` function for SNS Governance
A new function, `get_metrics`, has been added to the SNS Governance canister. This allows front-end clients and SNS aggregators to query for activity metrics of an SNS over a specified time period. Currently, the metrics include the number of most-recent proposals and the timestamp of the latest SNS ledger transaction.
## New Commits
```
$ git log --format="%C(auto) %h %s" 02571e8215fa3e77da791e693cc238b2de3beae9..12afb2543219f43e4088e1ecd6d235962e71b211 -- ./rs/sns/governance
c69929a5a0 feat(sns): Added default implementation to GetMetricsResponse (#5520)
3671acb49d chore: upgrade rust: 1.85.1 -> 1.86.0 (again) (#5453)
de286fe8e9 note(sns): add release notes on (#5472)
b3efb00f64 docs(governance-backend): Update Governance backend CHANGELOG files. (#5450)
2e94007f12 feat(sns): Implement SnsGov.get_metrics (#5185)
```
## Wasm 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/12afb2543219f43e4088e1ecd6d235962e71b211/rs/nervous_system/docs/proposal_verification.md
See ["Building the code"][prereqs] for prerequisites.
[prereqs]: https://github.com/dfinity/ic/tree/12afb2543219f43e4088e1ecd6d235962e71b211/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 12afb2543219f43e4088e1ecd6d235962e71b211
# 2. Build canisters.
./ci/container/build-ic.sh -c
# 3. Fingerprint the result.
sha256sum ./artifacts/canisters/sns-governance-canister.wasm.gz
```
This should match `wasm` field of this proposal.
Index
# Publish SNS Index WASM Built at Commit 2dd93c8
__Proposer__: arshavir.ter.gabrielyan at dfinity.org
__Source code__: [2dd93c8aeb7f85c00e3add7efa6f573ddc9b0122][new-commit]
[new-commit]: https://github.com/dfinity/ic/tree/2dd93c8aeb7f85c00e3add7efa6f573ddc9b0122
## Features & Fixes
* Implement the ICRC-106 standard in the ledger for providing an index canister principal.
* Set upper limit for `num_blocks_to_archive` in archive options.
## New Commits
```
$ git log --format="%C(auto) %h %s" fda8ae420732b21f0ddbbcc5dfbd4ddbe0db9c26..2dd93c8aeb7f85c00e3add7efa6f573ddc9b0122 -- ./rs/ledger_suite/icrc1
995f15aed0 feat(Ledgers): FI-1666: Set upper limit for num_blocks_to_archive (#5215)
e94aa05386 test(Ledgers): FI-1652: Add instruction limit test for ledger archiving (#4961)
02571e8215 feat(ICRC_Ledger): FI-1592: Implement ICRC-106 in the ICRC ledger (#2857)
029ebf5c44 chore: Upgrade canbench to 0.15.0 (#5356)
2cc5b2479b chore(ICRC_Ledger): FI-1726: Use test_strategy instead of proptest macro for ICRC1 ledger suite tests (#5039)
```
## Wasm 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/2dd93c8aeb7f85c00e3add7efa6f573ddc9b0122/rs/nervous_system/docs/proposal_verification.md
See ["Building the code"][prereqs] for prerequisites.
[prereqs]: https://github.com/dfinity/ic/tree/2dd93c8aeb7f85c00e3add7efa6f573ddc9b0122/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 2dd93c8aeb7f85c00e3add7efa6f573ddc9b0122
# 2. Build canisters.
./ci/container/build-ic.sh -c
# 3. Fingerprint the result.
sha256sum ./artifacts/canisters/ic-icrc1-index-ng.wasm.gz
```
This should match `wasm` field of this proposal.
Ledger
# Publish SNS Ledger WASM Built at Commit 2dd93c8
__Proposer__: arshavir.ter.gabrielyan at dfinity.org
__Source code__: [2dd93c8aeb7f85c00e3add7efa6f573ddc9b0122][new-commit]
[new-commit]: https://github.com/dfinity/ic/tree/2dd93c8aeb7f85c00e3add7efa6f573ddc9b0122
## Features & Fixes
* Implement the ICRC-106 standard in the ledger for providing an index canister principal.
* Set upper limit for `num_blocks_to_archive` in archive options.
## New Commits
```
$ git log --format="%C(auto) %h %s" fda8ae420732b21f0ddbbcc5dfbd4ddbe0db9c26..2dd93c8aeb7f85c00e3add7efa6f573ddc9b0122 -- ./rs/ledger_suite/icrc1 ./rs/ledger_suite/common/ledger_core ./rs/ledger_suite/common/ledger_canister_core
995f15aed0 feat(Ledgers): FI-1666: Set upper limit for num_blocks_to_archive (#5215)
e94aa05386 test(Ledgers): FI-1652: Add instruction limit test for ledger archiving (#4961)
02571e8215 feat(ICRC_Ledger): FI-1592: Implement ICRC-106 in the ICRC ledger (#2857)
029ebf5c44 chore: Upgrade canbench to 0.15.0 (#5356)
2cc5b2479b chore(ICRC_Ledger): FI-1726: Use test_strategy instead of proptest macro for ICRC1 ledger suite tests (#5039)
7e2c79b152 chore: Remove compute and memory allocation from `InstallCodeArgs` (#5190)
```
## Wasm 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/2dd93c8aeb7f85c00e3add7efa6f573ddc9b0122/rs/nervous_system/docs/proposal_verification.md
See ["Building the code"][prereqs] for prerequisites.
[prereqs]: https://github.com/dfinity/ic/tree/2dd93c8aeb7f85c00e3add7efa6f573ddc9b0122/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 2dd93c8aeb7f85c00e3add7efa6f573ddc9b0122
# 2. Build canisters.
./ci/container/build-ic.sh -c
# 3. Fingerprint the result.
sha256sum ./artifacts/canisters/ic-icrc1-ledger.wasm.gz
```
This should match `wasm` field of this proposal.
Archive
# Publish SNS Archive WASM Built at Commit 2dd93c8
__Proposer__: arshavir.ter.gabrielyan at dfinity.org
__Source code__: [2dd93c8aeb7f85c00e3add7efa6f573ddc9b0122][new-commit]
[new-commit]: https://github.com/dfinity/ic/tree/2dd93c8aeb7f85c00e3add7efa6f573ddc9b0122
## Features & Fixes
* Implement the ICRC-106 standard in the ledger for providing an index canister principal.
* Set upper limit for `num_blocks_to_archive` in archive options.
## New Commits
```
$ git log --format="%C(auto) %h %s" fda8ae420732b21f0ddbbcc5dfbd4ddbe0db9c26..2dd93c8aeb7f85c00e3add7efa6f573ddc9b0122 -- ./rs/ledger_suite/icrc1
995f15aed0 feat(Ledgers): FI-1666: Set upper limit for num_blocks_to_archive (#5215)
e94aa05386 test(Ledgers): FI-1652: Add instruction limit test for ledger archiving (#4961)
02571e8215 feat(ICRC_Ledger): FI-1592: Implement ICRC-106 in the ICRC ledger (#2857)
029ebf5c44 chore: Upgrade canbench to 0.15.0 (#5356)
2cc5b2479b chore(ICRC_Ledger): FI-1726: Use test_strategy instead of proptest macro for ICRC1 ledger suite tests (#5039)
```
## Wasm 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/2dd93c8aeb7f85c00e3add7efa6f573ddc9b0122/rs/nervous_system/docs/proposal_verification.md
See ["Building the code"][prereqs] for prerequisites.
[prereqs]: https://github.com/dfinity/ic/tree/2dd93c8aeb7f85c00e3add7efa6f573ddc9b0122/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 2dd93c8aeb7f85c00e3add7efa6f573ddc9b0122
# 2. Build canisters.
./ci/container/build-ic.sh -c
# 3. Fingerprint the result.
sha256sum ./artifacts/canisters/ic-icrc1-archive.wasm.gz
```
This should match `wasm` field of this proposal.