πŸ”Œ Installation

πŸ› οΈ Hardware Requirements

CPU
RAM
Storage

4 CPU

8GB

200GB

πŸ“ŒStep 1: Installation packeges and dependencies

# Install dependencies for building from source
sudo apt update
sudo apt install -y lz4 jq make git gcc build-essential curl chrony unzip gzip snapd tmux bc

# Bash Profile Environment Setup
[ ! -f ~/.bash_profile ] && touch ~/.bash_profile
echo "export PATH=$PATH:/usr/local/go/bin:~/go/bin" >> ~/.bash_profile
source $HOME/.bash_profile
[ ! -d ~/go/bin ] && mkdir -p ~/go/bin

# Install Go
cd $HOME
VER="1.22.0"
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"
[ ! -f ~/.bash_profile ] && touch ~/.bash_profile
echo "export PATH=$PATH:/usr/local/go/bin:~/go/bin" >> ~/.bash_profile
source $HOME/.bash_profile

πŸ“ŒStep 2: Set moniker and install node

Give your validator a name by which you can find yourself in explorer, put it in ""

After that, insert the following node installation command ( apply one by one to avoid meeting with an error )

πŸ“ Create wallet

πŸ“ŒStep 1: Create wallet

Save all information after entering the command.

πŸ“ŒStep 2: Request test tokens to your wallet address

To receive test tokens, you will need to request tokens from the project team.

πŸ“ŒStep 3: Create validator

Please arrange the following information according to yourself

πŸ“ŒStep 4: Delegate to yourself

Check Log

Last updated