Skip to content

Commit 7bd9aa3

Browse files
committed
chore: proposals #312, #313
1 parent 613e155 commit 7bd9aa3

File tree

3 files changed

+41
-1
lines changed

3 files changed

+41
-1
lines changed

proposals/proposal-312.sh

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
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 = "Upgrade ICPanda SNS to next available version";
9+
url = "https://dashboard.internetcomputer.org/sns/d7wvo-iiaaa-aaaaq-aacsq-cai/proposals";
10+
summary = "Upgrade ICPanda SNS to next available version on SNS-W";
11+
action = opt variant {
12+
UpgradeSnsToNextVersion = record {}
13+
};
14+
}
15+
)' > proposal-message.json
16+
17+
# quill send proposal-message.json

proposals/proposal-313.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 = "Allocating 10 million PANDA tokens to Luis";
9+
url = "https://dashboard.internetcomputer.org/sns/d7wvo-iiaaa-aaaaq-aacsq-cai/proposal/286";
10+
summary = "This proposal fulfills part of the commitments outlined in Proposal 286, allocating 10 million PANDA tokens to Luis in recognition of his contributions and in anticipation of further achievements.\n\nAs per Proposal 286, the PANDA token price has remained above 0.005 USD for three consecutive days, enabling the fulfillment of clauses 2 and 3, totaling 10 million PANDA.\n\nFor details, refer to Proposal 286 https://dashboard.internetcomputer.org/sns/d7wvo-iiaaa-aaaaq-aacsq-cai/proposal/286.\n\n## Token Recipient Address:\nfiecn-b6ky4-h2amr-nmcrl-ra36a-ogffr-oaf4x-aqjsq-kp7bo-nfbka-yae";
11+
action = opt variant {
12+
TransferSnsTreasuryFunds = record {
13+
from_treasury = 2 : int32;
14+
to_principal = opt principal "fiecn-b6ky4-h2amr-nmcrl-ra36a-ogffr-oaf4x-aqjsq-kp7bo-nfbka-yae";
15+
to_subaccount = null;
16+
memo = null;
17+
amount_e8s = 1000_000_000_000_000 : nat64;
18+
}
19+
};
20+
}
21+
)' > proposal-message.json
22+
23+
# quill send proposal-message.json

src/ic_panda_frontend/src/lib/components/core/PrizeModal.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@
201201
<span class="text-orange-500 *:size-5"><IconCheckbox /></span>
202202
{/if}
203203
<span
204-
>Have at lest <b
204+
>Have at least <b
205205
>{Number($luckyPoolState?.airdrop_amount[0] || 10n) / 2} PANDA</b
206206
> in your wallet</span
207207
>

0 commit comments

Comments
 (0)