Validator Management
Add Wallet
emped keys add wallet
Recover wallet
emped keys add wallet --recover
List wallet
emped keys list
Delete wallet
emped keys delete wallet
Check balances
emped q bank balances $(emped keys show wallet -a)
Create Validator
Create Validator
emped tx staking create-validator \
--amount="1000000000uempe" \
--pubkey=$(emped tendermint show-validator) \
--moniker=NodeName \
--identity="" \
--website="your website" \
--details=details node validator \
--chain-id=empe-testnet-2 \
--commission-rate="0.1" \
--commission-max-rate="0.15" \
--commission-max-change-rate="0.05" \
--min-self-delegation=1000000 \
--gas-adjustment=1.2 \
--gas-prices="0.5uempe" \
--gas=auto \
--from=wallet
Edit validator
emped tx staking edit-validator \
--new-moniker="" \
--identity="" \
--chain-id=empe-testnet-2 \
--gas-adjustment=1.2 \
--gas-prices="0.5uempe" \
--gas=auto \
--from=wallet
unjail validator
emped tx slashing unjail --from wallet --chain-id empe-testnet-2 --gas-prices 0.5uempe --gas-adjustment 1.2 --gas auto
Check jailed reason
emped query slashing signing-info $(emped tendermint show-validator)
Node Info
Check node id
emped status 2>&1 | jq .NodeInfo
Check validator info
emped status 2>&1 | jq .ValidatorInfo