If the command gives the result "Blocks left - 0" - the node is synchronized with the last block of the network and you can proceed further.
📝 Create Wallet and Validator
📌 Step 1: Create wallet
symphonyd keys add wallet
Save all information after entering the command, without this you will not be able to restore data to the wallet. SAVE SEED PHRASE (12 words).
📌 Step 2: Obtaining test tokens to create a validator
Use one of the methods.
After receiving the test tokens, check the balance and continue.
📌 Step 3: View your wallet balance
symphonyd q bank balances $(symphonyd keys show wallet -a)
if your balance shows more than "1.000.000" note which is equivalent to 1note continue creating validator
📌 Step 4: Create validator
symphonyd tx staking create-validator \
--amount 1000000note \
--pubkey $(symphonyd tendermint show-validator) \
--moniker "$YOUR_MONIKER" \ #Validator name, displayed in explorers.
--identity "" \ #Use your KeyBase ID. If you don't have one, leave it empty.
--website "" \ #Your website is available, or leave the field blank
--details "" \ #Any details about your validator.
--from wallet \ # Change the wallet name if you have a different one
--chain-id symphony-testnet-4 \
--gas-adjustment 1.4 \
--gas auto \
--fees 5000note \
-y
SAVE YOUR PRIVATE KEY AFTER ENTERING THE COMMAND
The priv_validator_key.json is the key with which you can always restore the operation of your validator, so keep it and in case of reinstallation/transfer of the validator to another server - transfer it too.
Also remember, if you are a validator with a sufficient number of delegated tokens and you are in an active set, signing blocks, always save priv_validator_state.json - this file contains information about the signed blocks of your validators, and in case of restoring the validator after reinstallation or on another server , this file won't give you the old blocks again, otherwise you'll end up in jail with no way out
💡 Hint:
Validator state directory: $HOME/.symphonyd/data/priv_validator_state.json
Нou can get 1MLD every 24 hours, at least 1MLD is required to create a validator -
Complete the "" form to receive the required number of tokens to create a validator from the team.
After entering the command, you will receive hash transactions, check the status in the if the status is successful - you have created a validator.
You can find your validator here: In the Active / Inactive lists.