Validator Setup
Create/restore a key pair​
Create Wallet
intentod keys add <your-wallet-name>
Restore Wallet
intentod keys add <your-wallet-name> --recover
Create Your Validator
PUBKEY=$(intentod tendermint show-validator)
cat > $HOME/.intento/validatortx.txt << EOM
{
"pubkey": $PUBKEY,
"amount": "1000000uinto",
"moniker": "",
"identity": "",
"website": "",
"security": "",
"details": "",
"commission-rate": "0.1",
"commission-max-rate": "0.2",
"commission-max-change-rate": "0.01",
"min-self-delegation": "1"
}
EOM
To create your validator use the following command:
intentod tx staking create-validator $HOME/.intento/validatortx.txt \
--from=<your-wallet-name> \
--chain-id="intento-ics-test-1" \
--gas="auto" \
--gas-prices="0.001uinto" \
--gas-adjustment=1.5 \
--yes
Last updated