Skip to content

Commit

Permalink
chore: add proposals to update ICPanda
Browse files Browse the repository at this point in the history
  • Loading branch information
zensh committed Dec 17, 2024
1 parent a00bd09 commit 5b5415d
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 0 deletions.
10 changes: 10 additions & 0 deletions proposals/proposal-278.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
#!/usr/bin/env bash

# Load the environment variables
source "$(pwd)"/proposals/env.sh

export CANISTERS_PATH="$(pwd)/.dfx/ic/github"

quill sns make-upgrade-canister-proposal $PROPOSAL_NEURON_ID --canister-ids-file ./sns_canister_ids.json --pem-file $PROPOSAL_PEM_FILE --target-canister-id "2rgax-kyaaa-aaaap-anvba-cai" --wasm-path "$CANISTERS_PATH/ic_name_identity.wasm.gz" --mode upgrade --title "Upgrade ic_name_identity canister to v2.9.1" --summary "chore: remove self sign-in" --url "https://github.com/ldclabs/ic-panda/releases/tag/v2.9.1" > proposal-message.json

# quill send proposal-message.json
20 changes: 20 additions & 0 deletions proposals/proposal-279.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
#!/usr/bin/env bash

# Load the environment variables
source "$(pwd)"/proposals/env.sh

quill sns make-proposal --canister-ids-file ./sns_canister_ids.json --pem-file $PROPOSAL_PEM_FILE $PROPOSAL_NEURON_ID --proposal '(
record {
title = "Update ICPanda SNS metadata";
url = "https://dashboard.internetcomputer.org/sns/d7wvo-iiaaa-aaaaq-aacsq-cai";
summary = "Update ICPanda SNS name and description";
action = opt variant {
ManageSnsMetadata = record {
name = opt "ICPanda";
description = opt "A technical panda fully running on the Internet Computer blockchain, building chain-native infrastructures and practical Web3 apps. About us: https://dmsg.net/panda";
}
};
}
)' > proposal-message.json

# quill send proposal-message.json

0 comments on commit 5b5415d

Please sign in to comment.