From 26b608efccce42b9a80eb2848cda2866b1f628d1 Mon Sep 17 00:00:00 2001 From: 0xZensh Date: Wed, 25 Sep 2024 21:48:37 +0800 Subject: [PATCH] chore: add proposal to update the price for creating a channel to 10 PANDA tokens --- proposals/proposal-119.sh | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100755 proposals/proposal-119.sh diff --git a/proposals/proposal-119.sh b/proposals/proposal-119.sh new file mode 100755 index 0000000..d89c078 --- /dev/null +++ b/proposals/proposal-119.sh @@ -0,0 +1,22 @@ +#!/usr/bin/env bash + +# Load the environment variables +source "$(pwd)"/proposals/env.sh + +export BLOB="$(didc encode --format blob '(record {channel=opt (1_000_000_000:nat64)})')" + +quill sns make-proposal --canister-ids-file ./sns_canister_ids.json --pem-file $PROPOSAL_PEM_FILE $PROPOSAL_NEURON_ID --proposal "( + record { + title = \"Try again: execute admin_update_price() to update the price for creating a channel to 10 PANDA tokens\"; + url = \"https://panda.fans/_/messages\"; + summary = \"This proposal executes admin_update_price() on nscli-qiaaa-aaaaj-qa4pa-cai to update the price for creating a channel to 10 PANDA tokens. The original price was equivalent to recharging 1000 PANDA worth of gas to a channel, while the new price recharges 10 PANDA worth of gas to a channel.\"; + action = opt variant { + ExecuteGenericNervousSystemFunction = record { + function_id = 1_104 : nat64; + payload = ${BLOB}; + } + }; + } +)" > proposal-message.json + +# quill send proposal-message.json \ No newline at end of file