Skip to main content

Create Validator

Wallet

Create Wallet

To create new wallet use, change wallet to your wallet name.

decentrd keys add wallet
Recover Wallet

To recover wallet use, change wallet to your wallet name.

decentrd keys add wallet --recover

To see current keys

decentrd keys list

Create Validator

Check if your node is synced simply run

decentrd status 2>&1 | jq .SyncInfo

make sure you have status "catching_up": false

Creating validator with 1 Source, change the value as you like

--moniker= " your validator name"
   wallet_name = your wallet name
--identity= your id keybase.io"
--website="Your website" 
--details="your details "

decentrd tx staking create-validator \
--amount=1000000udec \
--pubkey=$(decentrd tendermint show-validator) \
--moniker="YOUR_MONIKER_NAME" \
--identity="YOUR_KEYBASE_ID" \
--details="YOUR_DETAILS" \
--website="YOUR_WEBSITE_URL" \
--chain-id=mainnet-3 \
--commission-rate=0.10 \
--commission-max-rate=0.20 \
--commission-max-change-rate=0.01 \
--min-self-delegation=1 \
--from=wallet_name \
--fees=500udec