sudo systemctl daemon-reload && \
sudo systemctl start story && \
sudo systemctl enable story && \
sudo systemctl status story
Check logs
sudo journalctl -u story-geth -f -o cat
Wait a minute for connect peers
sudo journalctl -u story -f -o cat
Check sync status
curl localhost:26657/status | jq
Waiting for your nodecatching_up is falseyou can create validator.
Create validator
Export private key By default, when you run story init a validator key is created for you. To view your validator key, run the following command:
In addition, if you want to export the derived EVM private key of your validator into the default data config directory, please run the following:
story validator export --export-evm-key
*Important: Please keep your private key in a safe place Your EVM Private Key saved to: /root/.story/story/config/private_key.txt
Note that to participate in consensus, at least 1 IP must be staked (equivalent to 1000000000000000000 wei)! Faucet link: https://faucet.story.foundation/
story validator create --stake 1000000000000000000 --private-key "your_private_key"