Install

Recommended Hardware: 8 Cores, 32GB RAM, 400GB of storage (NVME)

Chain ID: story-1 | Version: geth v1.2.0 | storyd v1.4.2

Dependencies Installation

Update system and install build tools

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

cd $HOME
ver="1.24.6" && \
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" >> $HOME/.bash_profile && \
source $HOME/.bash_profile && \
go version

Automatic installation

Just copy and paste it on your server

Set the variables

Download binary files

Install Story

Initialize the node

Set node configuration

Create getch service file

Create story service file

Download latest chain snapshot

Start service and check the logs

Create validator

View your validator key

Export EVM private key

View EVM private key and make a key backup

Create validator, locked

Create validator, unlocked

Remember to backup your validator priv_key from here:

Last updated