Create Validator
Wallet
Create Wallet
mantrachaind keys add your_wallet_name
Recover Wallet
mantrachaind keys add your_wallet_name --recover
Create Validator
Check if your node is synced simply run
mantrachaind status 2>&1 | jq .SyncInfo
make sure you have status "catching_up": false
Creating validator with 9.9 AUM change the value as you like
--moniker= " your validator name"
wallet_name = your wallet name
--identity= your id keybase.io"
--website="Your website"
--details="your details "
mantrachaind tx staking create-validator \
--amount 9900000uaum \
--from wallet_name \
--commission-max-change-rate "0.01" \
--commission-max-rate "0.2" \
--commission-rate "0.10" \
--min-self-delegation "1000000" \
--pubkey $(mantrachaind tendermint show-validator) \
--moniker YOUR_MONIKER \
--chain-id mantrachain-1 \
--identity= \
--website="" \
--details=" " \
--gas="auto" \
--gas-prices="0uaum" \
--gas-adjustment="1.15" \
-y