Skip to content

Axone Validator

Create Validator account

bash
# create validator account
axoned keys add operator
# backup your output

# get address
axoned keys show operator -a

# query balance
axoned query bank balances $(axoned keys show operator -a)

Create Validator

bash
# fill your information to <>

axoned tx staking create-validator \
  --amount=1000000uaxon \
  --pubkey=$(axoned tendermint show-validator) \
  --moniker="<>" \
  --identity "<>" \
  --security-contact="<>" \
  --details "<>" \
  --website "<>" \
  --chain-id=axone-dentrite-1 \
  --commission-rate=0.10 \
  --commission-max-rate=0.20 \
  --commission-max-change-rate=0.01 \
  --min-self-delegation=1 \
  --from=operator \
  --gas-adjustment=1.5 \
  --gas=auto \
  -y

Stake

bash
axoned tx staking delegate zetavaloper<> \
  <>000000000000000000azeta \
  --chain-id axone-dentrite-1 \
  --from operator \
  --gas "auto" \
  --gas-adjustment "1.5" \
  -y