Skip to content

Create XION Validator

bash
# create wallet
xiond keys add <wallet>
# remember to backup wallet at output

# get pub key
xiond tendermint show-validator

# Update information below
sudo tee validator.json > /dev/null <<EOF
{
	"pubkey": <update it>,
	"amount": "1000000uxion",
	"moniker": "<update it>",
	"identity": "<update it>",
	"website": "<update it>",
	"security": "<update it>",
	"details": "<update it>",
	"commission-rate": "0.1",
	"commission-max-rate": "0.2",
	"commission-max-change-rate": "0.01",
	"min-self-delegation": "1"
}
EOF

xiond tx staking create-validator ./validator.json --from <wallet> --gas-prices=500000000inj --gas-adjustment=1.5 --gas=auto