Installation
Update dependencies
sudo apt update
sudo apt-get install git curl build-essential make jq gcc snapd chrony lz4 tmux unzip bc -y
Install GoLang
# Install Go
cd $HOME
curl https://dl.google.com/go/go1.22.5.linux-amd64.tar.gz | sudo tar -C/usr/local -zxvf -
# Update environment variables to include go
cat <<'EOF' >>$HOME/.profile
export GOROOT=/usr/local/go
export GOPATH=$HOME/go
export GO111MODULE=on
export PATH=$PATH:/usr/local/go/bin:$HOME/go/bin
EOF
source $HOME/.profile
# check go version
go version
Node Install
# Create GO Bin Folder
mkdir go/bin
# Install Story Binary
cd $HOME
rm -rf story
git clone https://github.com/piplabs/story.git
cd story
git checkout v0.13.0
go build -o story ./client
cp story $HOME/go/bin/
cd $HOME
cd $HOME
rm -rf story-geth
git clone https://github.com/piplabs/story-geth.git
cd story-geth
git checkout v0.10.1
make geth
cp $HOME/story-geth/build/bin/geth $HOME/go/bin/
cd $HOME
# Create story and geth folder
mkdir -p $HOME/.story/story
mkdir -p $HOME/.story/geth
Initialize the Node
# Initialize Node
story init --moniker "Your Node Names" --network odyssey
# Initialize geth
geth --odyssey --syncmode full
# Press Ctrl + C to exit geth
Genesis & Addressbook
curl -Ls https://support.synergynodes.com/genesis/story_testnet/genesis.json > $HOME/.story/story/config/genesis.json
curl -Ls https://support.synergynodes.com/addrbook/story_testnet/addrbook.json > $HOME/.story/story/config/addrbook.json
Add / Update Persistent Peers
# Add / Update Peers
PEERS=c2a6cc9b3fa468624b2683b54790eb339db45cbf@story-testnet-peer.itrocket.net:26656,20b8296d4019cdc0b72773ea7984523af40feacb@148.72.138.4:26656,201ce716a03aa45a7e037575a996a5082348eb44@148.72.138.7:26656,ae07ef7d61f38ce3b96e95450c5d4776a1ce1d5e@148.72.138.6:26656,2086affe2a3ea6ba3a9e6ca16a3ba406906f6eea@141.98.217.151:26656,d5519e378247dfb61dfe90652d1fe3e2b3005a5b@213.239.207.162:26656,04e5734295da362f09a61dd0a9999449448a0e5c@52.14.39.177:26656,4d881b88285d41d2f6c33fdf50a307666aacaca1@65.109.36.231:52656,07ab4164e1d0ee17c565542856ac58981537156f@185.16.38.165:42656,e7b7a84d9b93df03d1843c288ca97f6d3e6a1045@15.235.225.237:16756,7ecb96bb4778b3f979be7c8e720cc9ee739ac770@104.198.43.15:26656,0f1b1840d2f3302b60a671be500b181eb354e21f@5.9.117.149:45656,c5c214377b438742523749bb43a2176ec9ec983c@176.9.54.69:26656,5dec0b793789d85c28b1619bffab30d5668039b7@150.136.113.152:26656,89a07021f98914fbac07aae9fbb12a92c5b6b781@152.53.102.226:26656,5c713a045806be88171d27b837ea4dbcd5dbf5c0@68.183.231.160:26656,81eaee3be00b21d0a124016b62fb7176fa05a4f9@185.198.49.133:33556,e83d15daaccdbe1aa2ac9446dabe9986cf6c67c2@152.53.66.0:26656,4f7931c2c795da73d7ea20f0166791f134f6e45e@2.59.117.67:26656
sed -i.bak -e "s/^persistent_peers *=.*/persistent_peers = "$PEERS"/" $HOME/.story/story/config/config.toml
Create Geth Service File
sudo tee /etc/systemd/system/geth.service > /dev/null <<EOF
[Unit]
Description=Geth daemon
After=network-online.target
[Service]
User=$USER
ExecStart=$HOME/go/bin/geth --odyssey --syncmode full
Restart=on-failure
RestartSec=3
LimitNOFILE=1048576
[Install]
WantedBy=multi-user.target
EOF
Create Story Service File
sudo tee /etc/systemd/system/story.service > /dev/null <<EOF
[Unit]
Description=Story Service
After=network.target
[Service]
User=$USER
Group=$USER
WorkingDirectory=$HOME/.story/story
ExecStart=$HOME/go/bin/story run
LimitNOFILE=65535
KillMode=process
KillSignal=SIGINT
TimeoutStopSec=90
Restart=on-failure
RestartSec=10s
[Install]
WantedBy=multi-user.target
EOF
Download Snapshot (Prunned)
Start the Node
# Enable GETH and Story Services
sudo systemctl enable geth
sudo systemctl enable story
# Start the services
sudo service geth start && sudo service story start
# Check GETH Services logs
sudo journalctl -fu geth -o cat
# Check Story Services logs
sudo journalctl -fu story -o cat
Last updated