Installation
Install depedencies
sudo apt update && sudo apt upgrade -yInstall 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 versionSett 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_profileDownload & 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