🧊
QuadBlock Services
  • ⚛️IBC - Cosmos Ecosystem
  • Mainnet
    • 🟢Cosmos Hub
      • Installation
        • Manual
      • Endpoints
      • Node Services
        • State Sync
        • Snapshot
        • Live Peers
      • Upgrade
        • Cosmovisor
        • Systemd
      • Monitoring
    • 🟢Osmosis
      • Installation
        • Manual
      • Endpoints
      • Node Services
        • State Sync
        • Snapshot
        • Live Peers
      • Upgrade
        • Cosmovisor
        • Systemd
      • Monitoring
    • 🟢Stride
      • Installation
        • Automatic
        • Manual
      • Endpoints
      • Node Services
        • State Sync
        • Snapshot
        • Live Peers
      • Upgrade
        • Cosmovisor
        • Systemd
      • CLI Cheatsheet
        • Wallet Management
        • Validator Management
        • Token Management
        • Governance
        • Info & Status
        • Other
        • ⚠️Delete Node
      • Monitoring
    • 🟢Planq
      • Installation
        • Automatic
        • Manual
      • Endpoints
      • Node Services
        • State Sync
        • Snapshot
        • Live Peers
      • Upgrade
        • Cosmovisor
        • Systemd
      • CLI Cheatsheet
        • Wallet Management
        • Validator Management
        • Token Management
        • Governance
        • Info & Status
        • Other
        • ⚠️Delete Node
      • Monitoring
    • 🟢Gitopia
      • Installation
        • Automatic
        • Manual
      • Endpoints
      • Node Services
        • State Sync
        • Snapshot
        • Live Peers
      • Upgrade
        • Cosmovisor
        • Systemd
      • CLI Cheatsheet
        • Wallet Management
        • Validator Management
        • Token Management
        • Governance
        • Info & Status
        • Other
        • ⚠️Delete Node
      • Monitoring
    • 🟢Quasar
      • Installation
        • Automatic
        • Manual
      • Endpoints
      • Node Services
        • State Sync
        • Snapshot
        • Live Peers
      • Upgrade
        • Cosmovisor
        • Systemd
      • CLI Cheatsheet
        • Wallet Management
        • Validator Management
        • Token Management
        • Governance
        • Info & Status
        • Other
        • ⚠️Delete Node
      • Monitoring
  • Testnet
    • 🟢Dymension
      • Installation
        • Automatic
        • Manual
      • Endpoints
      • Node Services
        • State Sync
        • Snapshot
        • Live Peers
      • Upgrade
        • Cosmovisor
        • Systemd
      • CLI Cheatsheet
        • Wallet Management
        • Validator Management
        • Token Management
        • Governance
        • Info & Status
        • Other
        • ⚠️Delete Node
      • Monitoring
    • 🟢Avail
      • Installation
        • Manual
      • Endpoints
      • Node Services
        • State Sync
        • Snapshot
        • Live Peers
      • Upgrade
        • Cosmovisor
        • Systemd
      • CLI Cheatsheet
        • Wallet Management
        • Validator Management
        • Token Management
        • Governance
        • Info & Status
        • Other
        • ⚠️Delete Node
      • Monitoring
    • Soon
  • Endpoints
    • 🌐Public Endpoints
    • 🔐Private Endpoints
Powered by GitBook
On this page
  1. Mainnet
  2. Gitopia
  3. CLI Cheatsheet

Validator Management

PreviousWallet ManagementNextToken Management

Last updated 1 year ago

change the value below with your own,

  • <wallet>

  • <moniker>

  • <amount>

  • <your_keybase_ID>

  • <your_details>

  • <your_website_url>

Function
Command

Check Validator Address

Create New Validator

Edit Validator

Unjail Validator

Check Jailed Reason

🟢
gitopiad keys show <wallet> --bech val -a
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
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
gitopiad tx slashing unjail --from <wallet> --chain-id gitopia --gas-adjustment 1.15 --gas="auto" --fees="1000ulore" -y
gitopiad query slashing signing-info $(gitopiad tendermint show-validator)