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