Skip to content

Commit b9e7743

Browse files
committed
chore: add proposals to remove the Dev manager on messaging canisters
1 parent 6af9e2a commit b9e7743

File tree

11 files changed

+260
-0
lines changed

11 files changed

+260
-0
lines changed

proposals/proposal-194.sh

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
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 = "Add a generic function \"admin_remove_managers\" to ic_message service";
9+
url = "https://internetcomputer.org/docs/current/developer-docs/daos/sns/managing/sns-asset-canister#sns-genericnervoussystemfunctions";
10+
summary = "The `admin_remove_managers` function is used to remove managers from the ic_message canister.";
11+
action = opt variant {
12+
AddGenericNervousSystemFunction = record {
13+
id = 1_109 : nat64;
14+
name = "`admin_remove_managers` function";
15+
description = opt "It is used to remove managers from the ic_message canister.";
16+
function_type = opt variant {
17+
GenericNervousSystemFunction = record {
18+
validator_canister_id = opt principal "nscli-qiaaa-aaaaj-qa4pa-cai";
19+
target_canister_id = opt principal "nscli-qiaaa-aaaaj-qa4pa-cai";
20+
validator_method_name = opt "validate2_admin_remove_managers";
21+
target_method_name = opt "admin_remove_managers";
22+
}
23+
};
24+
}
25+
};
26+
}
27+
)' > proposal-message.json
28+
29+
# quill send proposal-message.json

proposals/proposal-196.sh

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
#!/usr/bin/env bash
2+
3+
# Load the environment variables
4+
source "$(pwd)"/proposals/env.sh
5+
6+
export BLOB="$(didc encode --format blob '(vec {principal "i2gam-uue3y-uxwyd-mzyhb-nirhd-hz3l4-2hw3f-4fzvw-lpvvc-dqdrg-7qe"})')"
7+
8+
quill sns make-proposal --canister-ids-file ./sns_canister_ids.json --pem-file $PROPOSAL_PEM_FILE $PROPOSAL_NEURON_ID --proposal "(
9+
record {
10+
title = \"Execute admin_remove_managers() to remove the Dev manager\";
11+
url = \"https://github.com/ldclabs/ic-panda/tree/main/src/ic_message\";
12+
summary = \"This proposal executes admin_remove_managers() on nscli-qiaaa-aaaaj-qa4pa-cai to remove the Dev manager from the ic_message canister.\";
13+
action = opt variant {
14+
ExecuteGenericNervousSystemFunction = record {
15+
function_id = 1_109 : nat64;
16+
payload = ${BLOB};
17+
}
18+
};
19+
}
20+
)" > proposal-message.json
21+
22+
# quill send proposal-message.json

proposals/proposal-197.sh

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
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 = "Add a generic function \"admin_remove_managers\" to ic_message_profile service";
9+
url = "https://internetcomputer.org/docs/current/developer-docs/daos/sns/managing/sns-asset-canister#sns-genericnervoussystemfunctions";
10+
summary = "The `admin_remove_managers` function is used to remove managers from the ic_message_profile canister.";
11+
action = opt variant {
12+
AddGenericNervousSystemFunction = record {
13+
id = 1_110 : nat64;
14+
name = "`admin_remove_managers` function";
15+
description = opt "It is used to remove managers from the ic_message_profile canister.";
16+
function_type = opt variant {
17+
GenericNervousSystemFunction = record {
18+
validator_canister_id = opt principal "ijyxz-wyaaa-aaaaj-qa4qa-cai";
19+
target_canister_id = opt principal "ijyxz-wyaaa-aaaaj-qa4qa-cai";
20+
validator_method_name = opt "validate2_admin_remove_managers";
21+
target_method_name = opt "admin_remove_managers";
22+
}
23+
};
24+
}
25+
};
26+
}
27+
)' > proposal-message.json
28+
29+
# quill send proposal-message.json

proposals/proposal-198.sh

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
#!/usr/bin/env bash
2+
3+
# Load the environment variables
4+
source "$(pwd)"/proposals/env.sh
5+
6+
export BLOB="$(didc encode --format blob '(vec {principal "i2gam-uue3y-uxwyd-mzyhb-nirhd-hz3l4-2hw3f-4fzvw-lpvvc-dqdrg-7qe"})')"
7+
8+
quill sns make-proposal --canister-ids-file ./sns_canister_ids.json --pem-file $PROPOSAL_PEM_FILE $PROPOSAL_NEURON_ID --proposal "(
9+
record {
10+
title = \"Execute admin_remove_managers() to remove the Dev manager\";
11+
url = \"https://github.com/ldclabs/ic-panda/tree/main/src/ic_message_profile\";
12+
summary = \"This proposal executes admin_remove_managers() on ijyxz-wyaaa-aaaaj-qa4qa-cai to remove the Dev manager from the ic_message_profile canister.\";
13+
action = opt variant {
14+
ExecuteGenericNervousSystemFunction = record {
15+
function_id = 1_110 : nat64;
16+
payload = ${BLOB};
17+
}
18+
};
19+
}
20+
)" > proposal-message.json
21+
22+
# quill send proposal-message.json

proposals/proposal-199.sh

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
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 = "Add a generic function \"admin_remove_managers\" to ic_message_channel service";
9+
url = "https://internetcomputer.org/docs/current/developer-docs/daos/sns/managing/sns-asset-canister#sns-genericnervoussystemfunctions";
10+
summary = "The `admin_remove_managers` function is used to remove managers from the ic_message_channel canister.";
11+
action = opt variant {
12+
AddGenericNervousSystemFunction = record {
13+
id = 1_111 : nat64;
14+
name = "`admin_remove_managers` function";
15+
description = opt "It is used to remove managers from the ic_message_channel canister.";
16+
function_type = opt variant {
17+
GenericNervousSystemFunction = record {
18+
validator_canister_id = opt principal "nvdn4-5qaaa-aaaaj-qa4pq-cai";
19+
target_canister_id = opt principal "nvdn4-5qaaa-aaaaj-qa4pq-cai";
20+
validator_method_name = opt "validate2_admin_remove_managers";
21+
target_method_name = opt "admin_remove_managers";
22+
}
23+
};
24+
}
25+
};
26+
}
27+
)' > proposal-message.json
28+
29+
# quill send proposal-message.json

proposals/proposal-200.sh

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
#!/usr/bin/env bash
2+
3+
# Load the environment variables
4+
source "$(pwd)"/proposals/env.sh
5+
6+
export BLOB="$(didc encode --format blob '(vec {principal "i2gam-uue3y-uxwyd-mzyhb-nirhd-hz3l4-2hw3f-4fzvw-lpvvc-dqdrg-7qe"})')"
7+
8+
quill sns make-proposal --canister-ids-file ./sns_canister_ids.json --pem-file $PROPOSAL_PEM_FILE $PROPOSAL_NEURON_ID --proposal "(
9+
record {
10+
title = \"Execute admin_remove_managers() to remove the Dev manager\";
11+
url = \"https://github.com/ldclabs/ic-panda/tree/main/src/ic_message_channel\";
12+
summary = \"This proposal executes admin_remove_managers() on nvdn4-5qaaa-aaaaj-qa4pq-cai to remove the Dev manager from the ic_message_channel canister.\";
13+
action = opt variant {
14+
ExecuteGenericNervousSystemFunction = record {
15+
function_id = 1_111 : nat64;
16+
payload = ${BLOB};
17+
}
18+
};
19+
}
20+
)" > proposal-message.json
21+
22+
# quill send proposal-message.json

proposals/proposal-201.sh

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
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 = "Add a generic function \"admin_remove_managers\" to ic_message_channel service";
9+
url = "https://internetcomputer.org/docs/current/developer-docs/daos/sns/managing/sns-asset-canister#sns-genericnervoussystemfunctions";
10+
summary = "The `admin_remove_managers` function is used to remove managers from the ic_message_channel_02 canister.";
11+
action = opt variant {
12+
AddGenericNervousSystemFunction = record {
13+
id = 1_112 : nat64;
14+
name = "`admin_remove_managers` function";
15+
description = opt "It is used to remove managers from the ic_message_channel_02 canister.";
16+
function_type = opt variant {
17+
GenericNervousSystemFunction = record {
18+
validator_canister_id = opt principal "zof5a-5yaaa-aaaai-acr2q-cai";
19+
target_canister_id = opt principal "zof5a-5yaaa-aaaai-acr2q-cai";
20+
validator_method_name = opt "validate2_admin_remove_managers";
21+
target_method_name = opt "admin_remove_managers";
22+
}
23+
};
24+
}
25+
};
26+
}
27+
)' > proposal-message.json
28+
29+
# quill send proposal-message.json

proposals/proposal-202.sh

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
#!/usr/bin/env bash
2+
3+
# Load the environment variables
4+
source "$(pwd)"/proposals/env.sh
5+
6+
export BLOB="$(didc encode --format blob '(vec {principal "i2gam-uue3y-uxwyd-mzyhb-nirhd-hz3l4-2hw3f-4fzvw-lpvvc-dqdrg-7qe"})')"
7+
8+
quill sns make-proposal --canister-ids-file ./sns_canister_ids.json --pem-file $PROPOSAL_PEM_FILE $PROPOSAL_NEURON_ID --proposal "(
9+
record {
10+
title = \"Execute admin_remove_managers() to remove the Dev manager\";
11+
url = \"https://github.com/ldclabs/ic-panda/tree/main/src/ic_message_channel\";
12+
summary = \"This proposal executes admin_remove_managers() on zof5a-5yaaa-aaaai-acr2q-cai to remove the Dev manager from the ic_message_channel_02 canister.\";
13+
action = opt variant {
14+
ExecuteGenericNervousSystemFunction = record {
15+
function_id = 1_112 : nat64;
16+
payload = ${BLOB};
17+
}
18+
};
19+
}
20+
)" > proposal-message.json
21+
22+
# quill send proposal-message.json

proposals/proposal-203.sh

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
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 = "Add a generic function \"admin_remove_managers\" to ic_message_channel service";
9+
url = "https://internetcomputer.org/docs/current/developer-docs/daos/sns/managing/sns-asset-canister#sns-genericnervoussystemfunctions";
10+
summary = "The `admin_remove_managers` function is used to remove managers from the ic_message_channel_03 canister.";
11+
action = opt variant {
12+
AddGenericNervousSystemFunction = record {
13+
id = 1_113 : nat64;
14+
name = "`admin_remove_managers` function";
15+
description = opt "It is used to remove managers from the ic_message_channel_03 canister.";
16+
function_type = opt variant {
17+
GenericNervousSystemFunction = record {
18+
validator_canister_id = opt principal "4jxyd-pqaaa-aaaah-qdqtq-cai";
19+
target_canister_id = opt principal "4jxyd-pqaaa-aaaah-qdqtq-cai";
20+
validator_method_name = opt "validate2_admin_remove_managers";
21+
target_method_name = opt "admin_remove_managers";
22+
}
23+
};
24+
}
25+
};
26+
}
27+
)' > proposal-message.json
28+
29+
# quill send proposal-message.json

proposals/proposal-204.sh

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
#!/usr/bin/env bash
2+
3+
# Load the environment variables
4+
source "$(pwd)"/proposals/env.sh
5+
6+
export BLOB="$(didc encode --format blob '(vec {principal "i2gam-uue3y-uxwyd-mzyhb-nirhd-hz3l4-2hw3f-4fzvw-lpvvc-dqdrg-7qe"})')"
7+
8+
quill sns make-proposal --canister-ids-file ./sns_canister_ids.json --pem-file $PROPOSAL_PEM_FILE $PROPOSAL_NEURON_ID --proposal "(
9+
record {
10+
title = \"Execute admin_remove_managers() to remove the Dev manager\";
11+
url = \"https://github.com/ldclabs/ic-panda/tree/main/src/ic_message_channel\";
12+
summary = \"This proposal executes admin_remove_managers() on 4jxyd-pqaaa-aaaah-qdqtq-cai to remove the Dev manager from the ic_message_channel_03 canister.\";
13+
action = opt variant {
14+
ExecuteGenericNervousSystemFunction = record {
15+
function_id = 1_113 : nat64;
16+
payload = ${BLOB};
17+
}
18+
};
19+
}
20+
)" > proposal-message.json
21+
22+
# quill send proposal-message.json

0 commit comments

Comments
 (0)