Skip to content

Commit 5b5415d

Browse files
committed
chore: add proposals to update ICPanda
1 parent a00bd09 commit 5b5415d

File tree

2 files changed

+30
-0
lines changed

2 files changed

+30
-0
lines changed

proposals/proposal-278.sh

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
#!/usr/bin/env bash
2+
3+
# Load the environment variables
4+
source "$(pwd)"/proposals/env.sh
5+
6+
export CANISTERS_PATH="$(pwd)/.dfx/ic/github"
7+
8+
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
9+
10+
# quill send proposal-message.json

proposals/proposal-279.sh

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
#!/usr/bin/env bash
2+
3+
# Load the environment variables
4+
source "$(pwd)"/proposals/env.sh
5+
6+
quill sns make-proposal --canister-ids-file ./sns_canister_ids.json --pem-file $PROPOSAL_PEM_FILE $PROPOSAL_NEURON_ID --proposal '(
7+
record {
8+
title = "Update ICPanda SNS metadata";
9+
url = "https://dashboard.internetcomputer.org/sns/d7wvo-iiaaa-aaaaq-aacsq-cai";
10+
summary = "Update ICPanda SNS name and description";
11+
action = opt variant {
12+
ManageSnsMetadata = record {
13+
name = opt "ICPanda";
14+
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";
15+
}
16+
};
17+
}
18+
)' > proposal-message.json
19+
20+
# quill send proposal-message.json

0 commit comments

Comments
 (0)