Installation

Install depedencies

sudo apt update && sudo apt upgrade -y

Install GO if needed

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

Sett Vars

to make installation easy i suggest u use this

echo "export WALLET="wallet"" >> $HOME/.bash_profile
echo "export MONIKER="Moiker"" >> $HOME/.bash_profile
echo "export LUMERA_CHAIN_ID="lumera-testnet-1"" >> $HOME/.bash_profile
echo "export LUMERA_PORT="31"" >> $HOME/.bash_profile
source $HOME/.bash_profile

make sure you change "Wallet="with your own wallet name"" MONIKER="with your own name"" this indicate your node name LUMERA_PORT="with you want"" if your server is not have any node u can keep that at port 30 or sett to deffault port, the deffault port is 26.

Download & Install Binary

Verify installation

Configure and inittial app

Download Genesis and Addrbook

Sett Seed and Peer

Sett Custom Port at config.toml

Sett Custom Port at App.toml

Configure Prunning

Sett Minimum Gas Prices & disable indexer

Create Service File

Download snapshot

Enable And Start Service

Last updated