Proposal 130375 to upgrade the NNS dapp (13/06/2024)

Happy Friday ICPeople! Proposal 130375 to upgrade the NNS dapp just went live, please consider voting. :ballot_box:

Wasm sha256 hash: f37b3cf0efba31d40947c0ebc94589af936118d1c4d8a190eaf21a00e3a5fb8c (https://github.com/dfinity/nns-dapp/actions/runs/9471809596 )

Change Log

Added

  • Actionable proposals page.

Changed

  • Rename proposal navigation buttons to “Previous” and “Next”.
  • Put project icon before title in page summary.

Fixed

  • Missing SNS proposal payload rendering under certain conditions.

Wasm Verification

To build the wasm module yourself and verify its hash, run the following commands from the root of the nns-dapp repo:

git fetch  # to ensure you have the latest changes.
git checkout "add39b706cea566f7fb5e743556c54bfdf9e6836"
git merge-base --is-ancestor HEAD origin/main && echo "OK" || echo "Commit is not on main branch!"
./scripts/docker-build
sha256sum nns-dapp.wasm.gz

You may also want to verify the canister arguments. In the proposal they are binary, which is not very readable. Docker provides both binary and text formats and you can verify that the text format corresponds to the binary arg_hex field in the proposal.

cat nns-dapp-arg-mainnet.did
didc encode "$(cat nns-dapp-arg-mainnet.did)"
3 Likes