Difference between revisions of "How-To: Create an NNS motion proposal"

From Internet Computer Wiki
Jump to: navigation, search
(Replaced content with "Please see [https://35k4u-jqaaa-aaaam-abrma-cai.icp0.io/docs/current/developer-docs/daos/nns/concepts/proposals/proposal-submit How to create NNS proposal on ICP developer...")
Tag: Replaced
 
(80 intermediate revisions by 8 users not shown)
Line 1: Line 1:
This article explains one way to submit NNS motion proposals.
+
Please see [https://35k4u-jqaaa-aaaam-abrma-cai.icp0.io/docs/current/developer-docs/daos/nns/concepts/proposals/proposal-submit How to create NNS proposal on ICP developer docs]
 
 
==Background==
 
 
 
To properly follow what is going on, there are a few high-level points worth highlighting:
 
 
 
===Only Neurons can submit NNS proposals===
 
 
 
Neurons with at least 1 ICP and 6 months of dissolve delay can submit NNS proposals. So the first step is to create such a neuron.
 
 
 
===The NNS Governance Canister accepts motion proposals===
 
 
 
The Governance Canister is just a canister like any other, so it has a Candid file, it accepts messages, etc... This article describes a way where you can have your local computer send a message to the governance canister (signed on behalf of a neuron) that contains a motion proposal.
 
 
 
==One-time setup==
 
 
 
===Install dfx===
 
 
 
1. Navigate to [https://smartcontracts.org/ | smartcontracts.org]
 
2. Install `dfx` via
 
 
 
<pre>
 
$ sh -ci "$(curl -fsSL https://smartcontracts.org/install.sh)"
 
</pre>
 
 
 
===Create a neuron===
 
 
 
====1. Create a private/public keypair====
 
 
 
1.1 Install the keysmith
 
 
 
1.2 Create seed phrase:
 
 
 
<code>
 
$ keysmith generate -o seed.txt
 
</code>
 
 
 
1.3 [ ] Create private.pem: $ keysmith private-key -o private.pem
 
 
 
1.4 [ ] Create Ledger account: $ keysmith account -i 0
 
 
 
====2. Link this private/public keypair to `dfx` so you can use it as an "Identity"====
 
 
 
====3. Send 1.0001 ICP to the "account ID" represented by the public/private keypair (now called the "identity")====
 
 
 
====4. Now that the account has the required ICP, spawn a neuron====
 
 
 
====5. Increase neuron dissolve to at least 6 months====
 
 
 
==How to send a proposal==
 
 
 
===Craft a proposal in markdown===
 
 
 
===Send proposal via dfx===
 
 
 
===Check dashboard to see proposal was successful===
 

Latest revision as of 15:07, 2 September 2024