Create Validator
Wallet
Create Wallet
To create new wallet use, change wallet to your wallet name.
planqd keys add wallet
Recover Wallet
To recover wallet use, change wallet to your wallet name.
planqd keys add wallet --recover
To see current keys
planqd keys list
Create Validator
Check if your node is synced simply run
planqd status 2>&1 | jq .SyncInfo
make sure you have status "catching_up": false
Creating validator with 10 Planq 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 "
planqd tx staking create-validator \
--amount 10000000000000000000aplanq \
--from wallet_name \
--commission-max-change-rate "0.01" \
--commission-max-rate "0.2" \
--commission-rate "0.07" \
--min-self-delegation "1000000" \
--pubkey $(planqd tendermint show-validator) \
--moniker YOUR_MONIKER \
--chain-id planq_7070-2 \
--identity= \
--website="" \
--details=" " \
--gas="1000000" \
--gas-prices="30000000000aplanq" \
--gas-adjustment="1.15" \
-y