My Node

Operator dashboard: monitor uptime, commission, delegators, and generate CLI commands.

Your address is saved locally for convenience.

Enter your validator operator address above

CLI Commands

Create Validator
intgd tx staking create-validator \
  --amount=1000000000000000000000airl \
  --pubkey=$(intgd tendermint show-validator) \
  --moniker="my-validator" \
  --commission-rate="0.05" \
  --commission-max-rate="0.20" \
  --commission-max-change-rate="0.01" \
  --min-self-delegation="1" \
  --chain-id=integra_26217-1 \
  --from=validator \
  --gas=auto \
  --gas-adjustment=1.5 \
  --gas-prices=5000000000000airl
Unjail
intgd tx slashing unjail \
  --from=validator \
  --chain-id=integra_26217-1 \
  --gas=auto \
  --gas-prices=5000000000000airl
Edit Validator
intgd tx staking edit-validator \
  --moniker="new-moniker" \
  --details="description" \
  --website="https://example.com" \
  --chain-id=integra_26217-1 \
  --from=validator \
  --gas=auto \
  --gas-prices=5000000000000airl
Withdraw Commission
intgd tx distribution withdraw-rewards <valoper> \
  --commission \
  --from=validator \
  --chain-id=integra_26217-1 \
  --gas=auto \
  --gas-prices=5000000000000airl
Check Status
intgd status | jq '.SyncInfo'
View Validator Info
intgd query staking validator <valoper> --output json | jq