Validate on Mainnet
Create Validator
curl http://localhost:26657/status | jq -r ".result.sync_info.catching_up"persistenceCore tx staking create-validator \ --from="[KEY_NAME]" \ # REPLACE --amount="1000000uxprt" \ --pubkey="$(persistenceCore tendermint show-validator)" \ --chain-id="core-1" \ --moniker="[VALIDATOR_NAME]" \ # REPLACE --commission-max-change-rate=0.05 \ # KEEP OR REPLACE --commission-max-rate=0.20 \ # KEEP OR REPLACE --commission-rate=0.10 \ # KEEP OR REPLACE --min-self-delegation="1" \ # KEEP OR REPLACE --website="[OPTIONAL]" \ # DELETE OR REPLACE --identity="[OPTIONAL]" \ # DELETE OR REPLACE --details="[OPTIONAL]" \ # DELETE OR REPLACE --security-contact="[OPTIONAL]" \ # DELETE OR REPLACE --gas="auto" \ --gas-adjustment="1.5" \ --gas-prices="0.025uxprt"persistenceCore tx staking create-validator \ --from="PersistenceOneValidatorKey" \ --amount="1000000uxprt" \ --pubkey="$(persistenceCore tendermint show-validator)" \ --chain-id="core-1" \ --moniker="PersistenceOneValidator" \ --commission-max-change-rate=0.05 \ --commission-max-rate=0.20 \ --commission-rate=0.10 \ --min-self-delegation="1" \ --website="https://persistence.one/" \ --identity="5C1159DB8957B5AA" \ --details="This is an explanation on why delegators should consider delegating with your validator. Keep it a short and sweet." \ --security-contact="[email protected]" \ --gas="auto" \ --gas-adjustment="1.5" \ --gas-prices="0.025uxprt"persistenceCore query tendermint-validator-set | grep "$(persistenceCore tendermint show-address)"
View Validator Description
Edit Validator Description
Track Validator Signing Information
Halt Validator
Unjail Validator
Advanced configuration
Version
Explorer
Last updated
Was this helpful?

