Nodevism.com
  • Nodevism
    • Booting Up Nodevism
  • Mainnet
    • CrossFi
      • Installation
    • Hippo Protocol
      • Endpoint
      • Installation
      • Creating-validator
      • CLI-cheatsheet
    • Medasdigital
  • Testnet
    • Aztec
    • Cortensor
    • Covalent
      • EWM Client
    • Empeiria
      • Endpoints
      • Requirement
      • Installation
      • Snapshot
      • Creating Validator
      • CLI Cheatsheet
    • Lumera Protocol
      • Public endpoint
      • Installation
      • Snapshot
      • Create Validator
      • Upgrade
      • CLI Cheatsheet
    • Odiseo
      • Installation
      • Creating Validator
      • Snapshot
      • CLI Cheatsheet
    • Symphony (Orchestra Labs)
      • Endpoint
      • Requirement
      • Installation
      • Create Validator
      • Cheatsheet
    • Union
      • Union ceremony task
    • XRVL-EVM
      • Public Endpoint
      • Installation
      • Creating Validator
      • Snapshot
      • CLI Cheatsheet
      • Cli Cheatsheet
  • Archive
    • Artela
      • Requirement
        • Public Endpoint
        • Installation
        • Create Validator
        • Upgrade
        • Snapshot
      • Testnet User Guide
    • CrossFi Chain
      • Endpoints
      • Installation
      • Upgrade
      • Validator Setup
      • Cheatsheet
      • How to create RPC,API, and Json-RPC
      • CrossFi user incentivized testnet guide
    • Dill.xyz
      • Dill light node
    • InitiaFDN
      • Endpoint
      • Run Initia Node
        • Installation
        • Creating validator
        • Setup Oracle
        • Cheatsheet
        • Upgrade
      • User Testnet Guide
    • Network3 AI
      • Installation
    • Nubit
      • Nubit Light Node
    • 0G_Labs
      • Page 2
    • Story protocol
    • Warden
      • Endpoint
      • Run Warden Node
      • Installation
      • Creating Validator
      • Cheatsheet
    • Zenrock
      • Public endpoint
      • Automatic installation
      • Manual installation
      • Creating validator
      • Usefull command
  • Other
    • Secure server settup (optional)
    • Make Terminal Colorful
Powered by GitBook
On this page
Edit on GitHub
  1. Mainnet
  2. Hippo Protocol

Creating-validator

Create Validator

Create Wallet

this command generate new wallet remember to save the mnemoic

hippod keys add $WALLET

Add Exsisting Wallet

hippod keys add $WALLET --recover

Save wallet and validator address

WALLET_ADDRESS=$(hippod keys show $WALLET -a)
VALOPER_ADDRESS=$(hippod keys show $WALLET --bech val -a)
echo "export WALLET_ADDRESS="$WALLET_ADDRESS >> $HOME/.bash_profile
echo "export VALOPER_ADDRESS="$VALOPER_ADDRESS >> $HOME/.bash_profile
source $HOME/.bash_profile

check sync status with this bellow command. if your node is fully synced, the output is catching up =false

hippod status 2>&1 | jq 

before creating your validator your wallet must have fund you can check your wallet balance with this command

hippod query bank balances $WALLET_ADDRESS 

Check your pubkey

hippod tendermint show-validator

Create validator.json file

nano $HOME/.hippo/validator.json
{
  "pubkey": {fill with your pubkey},
  "amount": "1000000ahp",
  "moniker": "your moniker name",
  "identity": "",
  "website": "",
  "security": "your e-mail",
  "details": "Stake With Us And Stay Lazy Rich..!",
  "commission-rate": "0.05",
  "commission-max-rate": "0.1",
  "commission-max-change-rate": "0.05",
  "min-self-delegation": "1"
}
lumerad tx staking create-validator $HOME/.hippo/validator.json \
--from $WALLET \
--chain-id hippo-protocol-1 \
--gas-prices=5000000000000ahp \
--gas-adjustment=1.5 \
--gas=auto
-y
PreviousInstallationNextCLI-cheatsheet

Last updated 2 days ago

And booom...!! your Validator has been up

🎉