Installation

install dependencies

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.23.0"
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"
[ ! -f ~/.bash_profile ] && touch ~/.bash_profile
echo "export PATH=$PATH:/usr/local/go/bin:~/go/bin" >> ~/.bash_profile
source $HOME/.bash_profile
[ ! -d ~/go/bin ] && mkdir -p ~/go/bin

Sett Variable

change MONIKER="Moniker"" with your own moniker and change STORY_PORT="51"" to your own port

echo "export MONIKER="test"" >> $HOME/.bash_profile
echo "export STORY_CHAIN_ID="aeneid"" >> $HOME/.bash_profile
echo "export STORY_PORT="51"" >> $HOME/.bash_profile
source $HOME/.bash_profile

Download Geth Binary

Download Story Client

Init the node

Configure seed

Download Addrbook and Genesis

Sett custom port on config.toml

Sett Custom Port on stroty.toml

Last updated