Skip to content

Latest commit

 

History

History
152 lines (118 loc) · 3.52 KB

README.md

File metadata and controls

152 lines (118 loc) · 3.52 KB

Exorde

Exorde is the web3 protocol that empowers developers to crawl and link all public data on the web.

Join our telegram


Testnet Tutorial

Prepare

1.Requirement

Component Specifications
CPU 2-4 Core
RAM At least 2-4 GB of memory (RAM)
Storage At least 50 GB of SSD disk storage
Connection At least 100mbps network bandwidth
  1. Recommendation VPS
Provider Link
PQ HOSTING https://pq.hosting/?from=542984

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