Command List

Check Validator Public Key

curl -s localhost:26657/status | jq -r '.result.validator_info.pub_key.value'

Delegate Tokens to Your Validator

Change $VALIDATOR_PUB_KEY_IN_BASE64 with your validator public key and $PRIVATE_KEY with your private key.

story validator stake \
   --validator-pubkey "$VALIDATOR_PUB_KEY_IN_BASE64" \
   --stake 1000000000000000000 \
   --private-key $PRIVATE_KEY

Check Validator HEX Address

You can copy and paste your validator HEX address on the explorer search bar to see your validator.

curl -s localhost:26657/status | jq -r '.result.validator_info.address'

Remove Node

Before remove the node make sure you have already backup all the important data!

sudo systemctl stop geth
sudo systemctl stop story
sudo systemctl disable geth
sudo systemctl disable story
sudo rm /etc/systemd/system/geth.service
sudo rm /etc/systemd/system/story.service
sudo systemctl daemon-reload
sudo rm -rf $HOME/.story
sudo rm $HOME/go/bin/geth
sudo rm $HOME