🗻Installation

Lava Mainnet guide

Hardware Requirements

Node Type
CPU
RAM
Storage

Mainnet

4

8 GB

100 GB (SSD or NVME)

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: 4.1.0

  • commit: c57c9f807ef914e810276d5895fac7aa9b2a82ab


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

  • 5ba7dc9ac4ee0ea1776c8f13dc45be84ffc2ef3ffbe8271e30b573134ecd61ea


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