Skip to content

Commit 87c8daa

Browse files
committed
chore: add proposals to upgrade app
1 parent 7b0f2be commit 87c8daa

File tree

6 files changed

+64
-2
lines changed

6 files changed

+64
-2
lines changed

proposals/proposal-248.sh

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
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 = "Transfer 3,575,000 PANDA to the dev account for ICPanda Thanksgiving event";
9+
url = "https://dashboard.internetcomputer.org/sns/d7wvo-iiaaa-aaaaq-aacsq-cai/proposal/217";
10+
summary = "According to Proposal #217, the ICPanda Thanksgiving event expenses are as follows:\n 1. **5,000 $PANDA rewards**: 115 recipients (excluding developer accounts).\n 2. **1,000,000 $PANDA rewards**: 3 recipients.\n\nTotal expenditure: **3,575,000 $PANDA**, advanced by the developer account. This proposal requests transferring **3,575,000 $PANDA** back to the developer account.";
11+
action = opt variant {
12+
TransferSnsTreasuryFunds = record {
13+
from_treasury = 2 : int32;
14+
to_principal = opt principal "ina3q-qkxfe-betg6-qghu7-guvpz-e5kmg-wsxr5-t6yw2-o7ehe-zpq26-xqe";
15+
to_subaccount = null;
16+
memo = null;
17+
amount_e8s = 357_500_000_000_000 : nat64;
18+
}
19+
};
20+
}
21+
)' > proposal-message.json
22+
23+
# quill send proposal-message.json

proposals/proposal-249.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 --canister-ids-file ./sns_canister_ids.json --pem-file $PROPOSAL_PEM_FILE --target-canister-id "nscli-qiaaa-aaaaj-qa4pa-cai" --wasm-path "$CANISTERS_PATH/ic_message.wasm.gz" $PROPOSAL_NEURON_ID > proposal-message.json
9+
10+
# quill send proposal-message.json

proposals/proposal-250.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 --canister-ids-file ./sns_canister_ids.json --pem-file $PROPOSAL_PEM_FILE --target-canister-id "nvdn4-5qaaa-aaaaj-qa4pq-cai" --wasm-path "$CANISTERS_PATH/ic_message_channel.wasm.gz" $PROPOSAL_NEURON_ID > proposal-message.json
9+
10+
# quill send proposal-message.json

proposals/proposal-251.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 --canister-ids-file ./sns_canister_ids.json --pem-file $PROPOSAL_PEM_FILE --target-canister-id "zof5a-5yaaa-aaaai-acr2q-cai" --wasm-path "$CANISTERS_PATH/ic_message_channel.wasm.gz" $PROPOSAL_NEURON_ID > proposal-message.json
9+
10+
# quill send proposal-message.json

proposals/proposal-252.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 --canister-ids-file ./sns_canister_ids.json --pem-file $PROPOSAL_PEM_FILE --target-canister-id "4jxyd-pqaaa-aaaah-qdqtq-cai" --wasm-path "$CANISTERS_PATH/ic_message_channel.wasm.gz" $PROPOSAL_NEURON_ID > proposal-message.json
9+
10+
# quill send proposal-message.json

sns_canister_ids.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,5 @@
22
"governance_canister_id": "dwv6s-6aaaa-aaaaq-aacta-cai",
33
"ledger_canister_id": "druyg-tyaaa-aaaaq-aactq-cai",
44
"root_canister_id": "d7wvo-iiaaa-aaaaq-aacsq-cai",
5-
"swap_canister_id": "c424i-4qaaa-aaaaq-aacua-cai",
6-
"Trader": "6sul7-xqaaa-aaaap-ahdsq-cai"
5+
"swap_canister_id": "c424i-4qaaa-aaaaq-aacua-cai"
76
}

0 commit comments

Comments
 (0)