System Requirements
Hardware Requirement CPU 4 Cores RAM 16 GB Disk 500 GB Bandwith 25 MB/s
Node Installation
Install Dependencies
sudo apt install curl git make jq build-essential gcc unzip wget lz4 aria2 -y
Download Story-Geth Binary
wget https://github.com/piplabs/story-geth/releases/download/v0.11.0/geth-linux-amd64
[ ! -d " $HOME /go/bin " ] && mkdir -p $HOME /go/bin
if ! grep -q " $HOME /go/bin " $HOME /.bash_profile ; then
echo " export PATH= $PATH :/usr/local/go/bin:~/go/bin " >> ~/.bash_profile
chmod +x geth-linux-amd64
mv $HOME /geth-linux-amd64 $HOME /go/bin/story-geth
source $HOME /.bash_profile
Download Story Binary
wget https://github.com/piplabs/story/releases/download/v0.13.0/story-linux-amd64
[ ! -d " $HOME /go/bin " ] && mkdir -p $HOME /go/bin
if ! grep -q " $HOME /go/bin " $HOME /.bash_profile ; then
echo " export PATH= $PATH :/usr/local/go/bin:~/go/bin " >> ~/.bash_profile
chmod +x story-linux-amd64
sudo cp $HOME /story-linux-amd64 $HOME /go/bin/story
source $HOME /.bash_profile
Init Odyssey Node
story init --network odyssey --moniker " Your_moniker_name "
Create story-geth service file
sudo tee /etc/systemd/system/story-geth.service > /dev/null << EOF
Description=Story Geth Client
ExecStart=/root/go/bin/story-geth --odyssey --syncmode full
WantedBy=multi-user.target
Create story service file
sudo tee /etc/systemd/system/story.service > /dev/null << EOF
Description=Story Consensus Client
ExecStart=/root/go/bin/story run
WantedBy=multi-user.target
Reload and start story-geth
sudo systemctl daemon-reload && \
sudo systemctl start story-geth && \
sudo systemctl enable story-geth && \
sudo systemctl status story-geth
Reload and start story
sudo systemctl daemon-reload && \
sudo systemctl start story && \
sudo systemctl enable story && \
sudo systemctl status story
Check sync status
curl localhost:26657/status | jq
Check block sync left
local_height = $( curl -s localhost:26657/status | jq -r ' .result.sync_info.latest_block_height ' );
network_height = $( curl -s https://odyssey.storyrpc.io/status | jq -r ' .result.sync_info.latest_block_height ' );
blocks_left = $(( network_height - local_height ));
echo -e " \033[1;38mYour node height:\033[0m \033[1;34m $local_height \033[0m | \033[1;35mNetwork height:\033[0m \033[1;36m $network_height \033[0m | \033[1;29mBlocks left:\033[0m \033[1;31m $blocks_left \033[0m " ;
Create Validator
Export validator public key & private key
This will print out your validator public key file in compressed and uncompressed formats. By default, we use the hex-encoded compressed key for public identification.
Compressed Public Key (hex): 03bdc7b8940babe9226d52d7fa299a1faf3d64a82f809889256c8f146958a63984
Compressed Public Key (base64): A73HuJQLq+kibVLX+imaH689ZKgvgJiJJWyPFGlYpjmE
Uncompressed Public Key (hex): 04bdc7b8940babe9226d52d7fa299a1faf3d64a82f809889256c8f146958a6398496b9e2af0a3a1d199c3cc1d09ee899336a530c185df6b46a9735b25e79a493af
EVM Address: 0x9EacBe2C3B1eb0a9FC14106d97bd3A1F89efdDCc
Validator Address: storyvaloper1p470h0jtph4n5hztallp8vznq8ehylsw9vpddx
Delegator Address: story1p470h0jtph4n5hztallp8vznq8ehylswtr4vxd
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
Note that to participate in consensus, at least 1 IP must be staked (equivalent to 1000000000000000000 wei)!
get yours at https://faucet.story.foundation/
Create Validator
story validator create --stake 1024000000000000000000 --private-key " your_private_key " --moniker " your_moniker_name "
Validator Staking
--validator-pubkey " VALIDATOR_PUB_KEY_IN_HEX " \
--stake 1024000000000000000000 \
--private-key xxxxxxxxxxxxxx
Replace VALIDATOR_PUB_KEY_IN_HEX Amount: 1024000000000000000000=1024 IP Token
Check your validator on explorer
Get your validator info
curl -s localhost:26657/status | jq -r ' .result.validator_info '
Paste the hex validator addres you got to the https://testnet.story.explorers.guru/ search bar
Delete Node
sudo systemctl stop story-geth
sudo systemctl stop story
sudo systemctl disable story-geth
sudo systemctl disable story
sudo rm /etc/systemd/system/story-geth.service
sudo rm /etc/systemd/system/story.service
sudo systemctl daemon-reload
sudo rm $HOME /go/bin/story-geth
sudo rm $HOME /go/bin/story