Skip to main content

Create Validator

Wallet

Create Wallet

To create new wallet use, change wallet to your wallet name.

sged keys add wallet
Recover Wallet

To recover wallet use, change wallet to your wallet name.

sged keys add wallet --recover

To see current keys

sged keys list

Create Validator

Check if your node is synced simply run

sged status 2>&1 | jq .SyncInfo

make sure you have status "catching_up": false

Creating validator with 1 SGE, 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 "

sged tx staking create-validator \
--amount 1000000usge \
--commission-max-change-rate "0.02" \
--commission-max-rate "0.2" \
--commission-rate "0.10" \
--min-self-delegation "1000000" \
--pubkey $(sged tendermint show-validator) \
--moniker YOUR_MONIKER \
--website "" \
--identity "" \
--details "" \
--from wallet_name \
--chain-id sgenet-1 \
--gas="auto" \
--gas-prices="0.025usge" \
--gas-adjustment="1.15" \
-y