Installation
Current Version
Port Prefix
v2.5.0
198
Minimum hardware Requirements #
CPU : 4x CPUs
Ram : 8GB RAM
Storage: 100GB of storage (SSD or NVME)Setting Variables
echo "export WALLET="wallet"" >> $HOME/.bash_profile
echo "export MONIKER="test"" >> $HOME/.bash_profile
echo "export nibiru_CHAIN_ID="cataclysm-1"" >> $HOME/.bash_profile
echo "export nibiru_PORT="198"" >> $HOME/.bash_profile
echo "export DAEMON_NAME="nibid"" >> $HOME/.bash_profile
echo "export DAEMON_HOME=$HOME/.nibid"" >> $HOME/.bash_profile
source $HOME/.bash_profileInstall dependencies
sudo apt update && sudo apt upgrade -y && sudo apt-get install make build-essential gcc git jq chrony lz4 tmux unzip bc -y && sudo apt install -y curl git jq lz4 build-essential unzipINSTALL GO
ver="1.20.5" && \
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
# Adding Go's location to profile
cat <<'EOF' >>$HOME/.profile
export GOROOT=/usr/local/go
export GOPATH=$HOME/go
export GO111MODULE=on
export PATH=$PATH:/usr/local/go/bin:$HOME/go/bin
EOF
source $HOME/.profile
go versionDownload and build binary
Installing Cosmovisor
Initialize Node & Configuring Node Port
Download Snapshot
Start service and check the logs
Last updated