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
  • Create Wallet
  • Add Exsisting Wallet
  • Save wallet and validator address
Edit on GitHub
  1. Testnet
  2. Empeiria

Creating Validator

Create Wallet

this command generate new wallet remember to save the mnemoic

emped keys add $WALLET

Add Exsisting Wallet

emped keys add $WALLET --recover

Save wallet and validator address

WALLET_ADDRESS=$(emped keys show $WALLET -a)
VALOPER_ADDRESS=$(emped 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

emped status 2>&1 | jq 

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

emped query bank balances $WALLET_ADDRESS 

Create Validator

emped tx staking create-validator \
--amount=1000000uempe \
--pubkey=$(emped tendermint show-validator) \
--moniker="fill_with_your_nodename" \
--identity="" \
--details="your slogan" \
--website="" \
--security-contact="fill your mail here" \
--chain-id=empe-testnet-2 \
--commission-rate=0.05 \
--commission-max-rate=0.10 \
--commission-max-change-rate=0.01 \
--min-self-delegation=1 \
--gas-prices 0.0001uempe \
--gas "auto" \
--gas-adjustment "1.5" \
--from $WALLET \
-y
PreviousSnapshotNextCLI Cheatsheet

Last updated 2 days ago