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 v0.19.2
make install

Untitled

4) Change “F5Nodes” when configuring:

nibid init F5Nodes --chain-id=nibiru-itn-1
nibid config chain-id nibiru-itn-1

5) Create a wallet (change “f5nodes”):

5.1 Create a new one:

nibid keys add f5nodes

5.2 Restore the old one with the help of a mnemonik:

nibid keys add f5nodes --recover
Powered by Fruition