π 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