githubEdit

Installation

Install Dependencies

sudo apt update && sudo apt upgrade -y 
sudo apt install -y git gcc make unzip jq

Install GO if needed

ver="1.22.2"
cd $HOME
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

Sett Vars

change MONIKER="Moniker"" with your own moniker and change SYMPHONY_PORT="12"" to your own port

Install Binary

Initialize Node

Download Genesis and Addrbook

Sett Seed and peer

Configure Prunning

Disable Indexer

Sett Minimum Gas price

Sett Custom port on Config.toml

Sett Custom Port On App.toml

Create Service

If you need t

Enable and Start Service

Check your Node sync

if the catching_up = false then u can create validator

Last updated