πŸ•ΉοΈCommand

Validator Setup

Create/restore a key pair​

  • Create Wallet

bitbadgeschaind keys add <your-wallet-name>
  • Restore Wallet

bitbadgeschaind keys add <your-wallet-name> --recover

Create Your Validator

PUBKEY=$(bitbadgeschaind tendermint show-validator)

cat > $HOME/.bitbadgeschain/validatortx.txt << EOM
{
  "pubkey": $PUBKEY,
  "amount": "1000000000ubadge",
  "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:

Withdraw rewards and commission

Delegate to Yourself

Governance

Vote

Last updated

Was this helpful?