Installation guide

Installation

Manual Installation

Gerekli Sistem

Ubuntu 22.04

CPU
RAM
SSD

4 vCPU

8 GB RAM

160 SSD

Install dependencies

UPDATE SYSTEM AND INSTALL BUILD TOOLS

Copy

sudo apt update && sudo apt upgrade -y
sudo apt install curl git wget htop tmux build-essential jq make lz4 gcc unzip -y

INSTALL GO

Copy

cd $HOME
VER="1.20.3"
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
[ ! -d ~/go/bin ] && mkdir -p ~/go/bin   

Download and build binaries

Copy

Set Vars

Moniker yerine validator adınızı ekliyoruz.

Copy

Download Genesis and Addrbook

Copy

Config Pruning

Copy

Set seeds and peers

Copy

create service file

Copy

enable and start service

Copy

Snapshot

Stop the service and reset the data

Copy

Download latest snapshot

Copy

Restart the service and check the log

Copy

Sync Node

Node ağ ile eşleşmiş olması gerekiyor. Bunun için

Copy

komutunu çalıştırdığınızda false çıktısı vermesi gerekir. True çıktı alırsanız aşağıdaki adımlara devam etmeyin.

Run a Validator

Öncelikle cüzdan oluşturalım walletname yerin cüzdan ismi giriyoruz.

Copy

Faucetten token istemek için size EVM adresi gerekli olacak bunun için oluşturduğunuz cüzdanın EVM adresini alalım. burada wallet yerine cüzdan adınızı yazmayı unutmayın. Artela discord'da faucet kanalından, token isteyelim.

Copy

Copy

wallet alanına cüzdan ismimizi yazıyoruz.

MonikerName yerine Validator ismimizi yazıyoruz.

identity alanına Avatar ID'mizi yazıyoruz. Bunun için Avatarımızı keybase.io sitesine yükleyip ID alabilirsiniz.

website alanına twitter yada github adresinizi ekleyebilirsiniz.

Security

To protect you keys please don`t share your privkey, mnemonic and follow a basic security rules

Set up ssh keys for authentication

You can use this guide to configure ssh authentication and disable password authentication on your server

Firewall security

Set the default to allow outgoing connections, deny all incoming, allow ssh and node p2p port

Delete node

Last updated