Skip to content

Latest commit

 

History

History
107 lines (89 loc) · 3.11 KB

README.md

File metadata and controls

107 lines (89 loc) · 3.11 KB

my_side_protocol_guide

This repository contains my guide to the Side Protocol project node

Download and Install

As always, let's first familiarize ourselves with the network parameters in the form of a handy sign!

PARAMETR VALUE
Chain ID grimoria-testnet-1
RPC https://testnet-rpc.side.one
Rest https://testnet-rest.side.one
gRPC https://testnet-grpc.side.one:443
Persistence Nodes 6bef0693d7a31fed473b95123ad19b544b414093@202.182.119.24:26656,44f8009ed91fddd7ee51117482ede20fb4f33e78@149.28.156.79:26656

Hardware Requirement

Below are the minimum requirements for your system, if your requirements are lower, then you should not continue to follow this guide!

PARAMETR VALUE
CPU 4 cores
RAM 8 GB
Storage 500 GB
Network 1 Gbps

Build from source code

git clone https://github.com/sideprotocol/side.git
cd side
git checkout v0.9.0

Compile binary

make install
export GOPATH=$HOME/go
export PATH=$PATH:$GOPATH/bin
sided version
# 0.9.0

Run Node

Add key

sided keys add test --key-type="segwit"

Initialize

sided init <MY_SIDE_VALIDATOR> --chain-id=grimoria-testnet-1

Install Genesis file

wget https://raw.githubusercontent.com/sideprotocol/testnet/main/grimoria-testnet-1/genesis.json -O $HOME/.side/config/genesis.json

Configure seeds and peers

cd $HOME/.side/config
nano config.toml

persistent_peers = "6bef0693d7a31fed473b95123ad19b544b414093@202.182.119.24:26656,44f8009ed91fddd7ee51117482ede20fb4f33e78@149.28.156.79:26656"

Setup minimum gas price

minimum-gas-prices = "0.005uside"

Start TestNet

sided tendermint unsafe-reset-all 
sided start

The end!

If you liked this guide, please go to all my social networks)