Difference between revisions of "Set up a Cardano staking pool"

From Organic Design wiki
m (Register stake address on the blockchain)
(Register stake address on the blockchain: got protocol.json)
Line 4: Line 4:
  
 
== Register stake address on the blockchain ==
 
== Register stake address on the blockchain ==
Everything went smoothly until I got to [https://docs.cardano.org/projects/cardano-node/en/latest/stake-pool-operations/register_key.html#draft-transaction Register stake address on the blockchain]. The instructions for "Draft transaction" include some parameter values which refer to things that the prior instructions have not created. The instructions [https://github.com/input-output-hk/cardano-tutorials/blob/master/node-setup/050_register_key.md here] help to clarify these confusing points even though the syntax is a little different since it's for a testnet.
+
Everything went smoothly until I got to [https://docs.cardano.org/projects/cardano-node/en/latest/stake-pool-operations/register_key.html#draft-transaction Register stake address on the blockchain]. The main issue is that you need to have some balance in your ''payment.addr'' address, and the previous step of ''creating a sample transaction'' is not optional, things in that step such as ''protocol.json'' and the output hash are referred to in this step.
  
The next section for calculating the fees refers to a file called ''protocol.json'' in the ''--protocol-params-file'' parameter. This file is actually '''mainnet-shelley-genesis.json'''.
+
The instructions [https://github.com/input-output-hk/cardano-tutorials/blob/master/node-setup/050_register_key.md here] help to clarify these confusing points even though the syntax is a little different since it's for a testnet.
  
 
== See also ==
 
== See also ==
 
*[[Set up a Cardano ITN staking pool]]
 
*[[Set up a Cardano ITN staking pool]]

Revision as of 01:59, 31 July 2020

Cone.png This article or section is a stub. Stubs are articles that have not yet received substantial attention from the authors. They are short or insufficient pieces of information and require additions to further increase the article's usefulness. The project values stubs as useful first steps toward complete articles.


The official documentation for setting up a node and configuring it as a stake pool on the mainnet is mostly very clear and complete. I was able to get my node compiled, installed and running pretty easily. But configuring the node to run as a stake pool is more complicated and the documentation seems to have some missing bits, so I'm documenting here just the specific parts that I had trouble with.

Register stake address on the blockchain

Everything went smoothly until I got to Register stake address on the blockchain. The main issue is that you need to have some balance in your payment.addr address, and the previous step of creating a sample transaction is not optional, things in that step such as protocol.json and the output hash are referred to in this step.

The instructions here help to clarify these confusing points even though the syntax is a little different since it's for a testnet.

See also