Skip to content

Simple Tutorial for Join ExordeLabs Incentive Testnet Event

Notifications You must be signed in to change notification settings

TestnetManiac/Node-ExordeLabs

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 

Repository files navigation

Join our telegram


Testnet Tutorial

Prepare

  1. Hardware Requirement
Component Specifications
CPU Intel Core i3 or i5
RAM At least 4GB/8GB of memory (RAM)
Storage At least 200GB of SSD disk storage
Connection At least 100mbps network bandwidth
  1. Recommendation VPS
Provider Link
Contabo https://contabo.com/en/vps/
IONOS https://www.ionos.com/servers/vps
Digital Ocean https://www.digitalocean.com/

Usefull Link

Installation

There are have two option for installing ExordeLabs, Anaconda and Docker. For example we choose to installing with Docker.

Update apt

sudo apt-get update
sudo apt-get install \
    ca-certificates \
    curl \
    gnupg \
    lsb-release \
    screen \
    git

Adding official key of GPG Docker

sudo mkdir -p /etc/apt/keyrings
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o /etc/apt/keyrings/docker.gpg

Repository Setting

echo \
  "deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.gpg] https://download.docker.com/linux/ubuntu \
  $(lsb_release -cs) stable" | sudo tee /etc/apt/sources.list.d/docker.list > /dev/null

Installing Docker

sudo apt-get install ca-certificates curl gnupg lsb-release -y
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o /usr/share/keyrings/docker-archive-keyring.gpg
echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/docker-archive-keyring.gpg] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable" | sudo tee /etc/apt/sources.list.d/docker.list > /dev/null
sudo apt-get update
sudo apt-get install docker-ce docker-ce-cli containerd.io docker-compose-plugin

Docker Version

docker --version

Installing Exorde

git clone https://github.com/exorde-labs/ExordeModuleCLI.git

Navigate To Folder Exorde

cd ExordeModuleCLI

Build Docker

docker build -t exorde-cli . 

Run Validator

Open new screen with screen

screen -Rd exorde

Next run this command

docker run -it exorde-cli -m YOUR_EVM_ADDRESS -l LEVEL_LOGGING

Change YOUR_EVM_ADDRESS with your address from Metamask (prefix 0x) and LEVEL_LOGGING change with 0,1,2,3,4

For Example

docker run -it exorde-cli -m 0x0F67059ea5c125104E46B46769184dB6DC405C42 -l 4

If you want close to terminal you can press CTRL + A + D also if you want open again to terminal use

screen -r exorde

Logging Description

  • 0 = no logs,
  • 1 = general logs
  • 2 = validation logs
  • 3 = validation + scraping logs
  • 4 = detailed validation + scraping logs (e.g. for troubleshooting)

Dont forget to giving feedback on Discord

About

Simple Tutorial for Join ExordeLabs Incentive Testnet Event

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published