🗻Installation

Nolus Mainnet guide

Hardware Requirements

Node Type
CPU
RAM
Storage

Mainnet

4+

16+

240+ GB SSD

Server preparation

sudo apt update && sudo apt upgrade -y
sudo apt install curl tar wget clang pkg-config libssl-dev jq build-essential bsdmainutils git make ncdu gcc git jq chrony liblz4-tool -y

GO 1.21.6

ver="1.21.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

Build

Result

  • version: 0.7.3

  • commit: 9d870b4a1181aac3a2ea3fbac1257911c18466e2


Initiation

Change <moniker> to your value, moniker is the name of your validator.


Create / recover wallet

Change <walletname> to the name of your wallet


Download genesis and addrbook

Result

  • 795cd3a16bae2df6c973c4470b3d5f8811e590959aa5b70bd4e377b2b1d046b4


Setup the minimum gas price and Peers


Pruning (optional)

Create a service file

Start

Create validator

Change walletName, YOUR_MONIKER_NAME, YOUR_KEYBASE_ID, YOUR_DETAILS and YOUR_WEBSITE_URL to your values

Delete node

Last updated