5. Register your Validator Node
This section guides you through configuring and registering your Cifer Chain validator node.
5.1 Create a Validator Configuration File
Prepare a JSON file named
mynodeconfig.json(or any preferred name) to configure your validator.Replace
validator_addressandpubkeywith the values you obtained from the "4.2 Obtain Your Validator Keys" section.
{
"pubkey": {"@type":"/cosmos.crypto.secp256k1.PubKey","key":"....."},
"amount": "15000000ucif",
"moniker": "cifer-2",
"identity": "My Node", # Friendly name for your node
"website": "<your node url>", # Optional website URL for your node
"security": "<your e-mail>", # Your email for security contacts
"details": "My Validator", # Additional details about your validator
"commission-rate": "0.1", # Validator commission rate (percentage)
"commission-max-rate": "0.2", # Maximum allowed commission rate
"commission-max-change-rate": "0.01", # Maximum allowed change in commission rate
"min-self-delegation": "1" # Minimum stake delegated to your validator
}5.2 Register your Validator Node
Run the following command, replacing <path_to_mynodeconfig.json> with the actual path to your JSON file and <myvalidator> with the name you used when creating the key from “4.1 Configure Your Validator Account” section.
The command will display the transaction details for your review. Look for a section similar to the following example:
The command will prompt you to confirm the transaction. Enter y and press Enter.
Upon successful submission, you'll receive a transaction hash.
Congratulations! 🥳 You've registered your Cifer Validator Node.
Last updated