🗻Installation

Warden Testnet guide

Hardware Requirements

Node Type
CPU
RAM
Storage

Testnet

4 Cores

8 GB

150 GB SSD

Server preparation

sudo apt update && sudo apt upgrade -y
sudo apt install curl tar wget clang pkg-config libssl-dev jq build-essential bsdmainutils git make ncdu gcc git jq chrony liblz4-tool -y

GO 1.22.2

ver="1.22.2"
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

Build

Result

  • version: 0.6.2

  • git commit:


Initiation

Change <moniker> to your value, moniker is the name of your validator.


Create / recover wallet

Change <walletname> to the name of your wallet


Download genesis

Result

  • 8d6bff68b3c709f4d29c1ddae0d4b8394498911efcfdae16350c400c0e54e686


Download addrbook


Set up the minimum gas price and Peers/Seeds/Filter peers/MaxPeers

Pruning (optional)

Create a service file

Start


Create validator

Test tokens must be requested to create the validator


Delete node

Last updated