Manual Installation (Cosmovisor)

Recommended Hardware: 8 Cores, 32GB RAM, 500GB of storage (NVME), 25 MBit/s

Official Documentation: https://docs.story.foundation/docs/node-setuparrow-up-right

Install dependencies, if required

sudo apt update && sudo apt upgrade -y
sudo apt install curl git wget htop tmux build-essential jq make lz4 gcc unzip -y

Install Go, if required

cd $HOME
ver="1.22.3"
wget "https://golang.org/dl/go$ver.linux-amd64.tar.gz"
sudo rm -rf /usr/local/go
sudo tar -C /usr/local -xzf "go$ver.linux-amd64.tar.gz"
rm "go$ver.linux-amd64.tar.gz"
echo "export PATH=$PATH:/usr/local/go/bin:$HOME/go/bin" >> ~/.bash_profile
source ~/.bash_profile
go version

Download Story-Geth binary (v0.11.0)

cd $HOME
wget https://github.com/piplabs/story-geth/releases/download/v0.11.0/geth-linux-amd64
sudo cp geth-linux-amd64 $HOME/go/bin/story-geth
sudo chmod +x $HOME/go/bin/story-geth
mkdir -p "$HOME/.story/story"
mkdir -p "$HOME/.story/geth"

Install Story binary (v0.13.0)

Install Cosmovisor v1.7.0

Prepare binaries for Cosmovisor

Initialize Story

Set Custom Ports, if required

Enable Prometheus & Disable Indexing

Add Peers

Create Story-Geth Service File

Create Story Service File

Start Story & Story-Geth

Check Logs

Check sync status

Create Validator (if you have 1024 tokens)

Export your Validator key

Export EVM Private key

Create Validator

Last updated