Server: 4 CPU / 8 GM RAM / 100 GB SSD

<aside> đź“Ž CPX31 on Hetzner

</aside>


Installation the node

  1. Preparing the server:
sudo apt update && sudo apt upgrade -y && \\
sudo apt install curl tar wget clang pkg-config libssl-dev libleveldb-dev jq build-essential bsdmainutils git make ncdu htop screen unzip bc fail2ban htop -y

Untitled

2) Installs go:

ver="1.19" && \\
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

Untitled

3) Download the binary file:

cd $HOME
git clone <https://github.com/NibiruChain/nibiru>
cd nibiru
git checkout v1.2.0
make install

Untitled

  1. Change “F5Nodes” when configuring:
nibid init F5Nodes --chain-id=cataclysm-1
nibid config chain-id cataclysm-1
  1. Download the genesis file:
curl -s <https://networks.nibiru.fi/$NETWORK/genesis> > $HOME/.nibid/config/genesis.json

Untitled

  1. With the help of the following command, we check whether it is configured correctly:
sha256sum $HOME/.nibid/config/genesis.json