Validator Management

change the value below with your own,

  • <wallet>

  • <moniker>

  • <amount>

  • <your_keybase_ID>

  • <your_details>

  • <your_website_url>

Function
Command

Check Validator Address

gitopiad keys show <wallet> --bech val -a

Create New Validator

gitopiad tx staking create-validator \
  --amount <amount> \
  --pubkey $(gitopiad tendermint show-validator) \
  --moniker "<moniker>" \
  --identity="<your_keybase_ID>" \
  --details="<your_details>" \
  --website="<your_website_url>" \
  --chain-id gitopia \
  --commission-rate="0.05" \
  --commission-max-rate="0.20" \
  --commission-max-change-rate="0.01" \
  --min-self-delegation "1" \
  --gas-prices="0.01ulore" \
  --gas="auto" \
  --fees="1000ulore" \
  --from <wallet> \
  -y

Edit Validator

gitopiad tx staking edit-validator \
--new-moniker="<moniker>" \
--identity="<your_keybase_ID>" \
--details="<your_details>" \
--website="<your_website_url>"
--chain-id gitopia \
--commission-rate=0.05 \
--from=<wallet> \
--gas-adjustment="1.15" \
--gas="auto" \
--fees="1000ulore" \
-y

Unjail Validator

gitopiad tx slashing unjail --from <wallet> --chain-id gitopia --gas-adjustment 1.15 --gas="auto" --fees="1000ulore" -y

Check Jailed Reason

gitopiad query slashing signing-info $(gitopiad tendermint show-validator)

Last updated