Mainnet 🟢
Validator

Wallet configuration

Add wallet
selfchaind keys add wallet
Recover wallet
selfchaind keys add wallet --recover
List wallet
selfchaind keys list
Delete wallet
selfchaind keys delete wallet
Check balance
selfchaind q bank balances $(selfchaind keys show wallet -a)

Validator Management

Create Validator
selfchaind tx staking create-validator \
--amount="1000000000uself" \
--pubkey=$(selfchaind tendermint show-validator) \
--moniker=Your Node Name \
--identity="" \
--website="" \
--details=details node validator \
--chain-id=self-1 \
--commission-rate="0.1" \
--commission-max-rate="0.15" \
--commission-max-change-rate="0.05" \
--min-self-delegation=1000000000 \
--broadcast-mode block \
--gas-adjustment=1.2 \
--gas-prices="0.5uself" \
--gas=auto \
--from=wallet
Edit Validator
selfchaind tx staking edit-validator \
--new-moniker="" \
--identity="" \
--chain-id=self-1 \
--gas-adjustment=1.2 \
--gas-prices="0.5uself" \
--gas=auto \
--from=wallet
Unjail validator
selfchaind tx slashing unjail --from wallet --chain-id self-1 --gas-prices 0.5uself --gas-adjustment 1.2 --gas auto
check jailed reason
selfchaind query slashing signing-info $(selfchaind tendermint show-validator)