Cifer's Node Validator
Official Website
  • Cifer's Node Validator
  • 1. Preparation
  • 2. Install Cifer Binary
  • 3. State Synchronization
  • 4. Setup a Validator Account
  • 5. Register your Validator Node
  • 6. List your Validator Node on Cifer Chain Directory
Powered by GitBook
On this page
  • 2.1 Clone the Cifer Repository
  • 2.2 Start Your Node

2. Install Cifer Binary

Previous1. PreparationNext3. State Synchronization

Last updated 5 months ago

To operate a Cifer node, you'll need to install the ciferd binary and use its commands to set up your node, generate keys, and create a validator. This guide provides the steps to get you started.

Before proceeding, ensure you have met all the necessary prerequisites refer to the section for details.

2.1 Clone the Cifer Repository

Open your terminal and run the following commands to clone the Cifer repository from GitHub:

$ git clone https://github.com/CiferAI/cifer
$ cd cifer

2.2 Start Your Node

Once you've completed the initial setup, launch your Cifer Chain node using the following command:

$ ignite chain serve

This command will initiate the Cifer Blockchain and automatically generate wallet accounts for you. Each account will be accompanied by a 24-word mnemonic phrase.

Blockchain is running
  
  ✔ Added account alice with address cife… and mnemonic:
  <24-word mnemonic phrase>
  
  ✔ Added account bob with address cife… and mnemonic:
  <24-word mnemonic phrase>

🌍 Tendermint node: http://0.0.0.0:26657
🌍 Blockchain API: http://0.0.0.0:1317
🌍 Token faucet: http://0.0.0.0:4500
  
  ⋆ Data directory: /Users/devname/.cifer
  ⋆ App binary: /Users/devname/go/bin/ciferd

Important Note:

These mnemonic phrases are crucial for recovering your wallet accounts. Store them securely and never share them with anyone.

"System Requirement"