Skip to content

Latest commit

 

History

History
155 lines (100 loc) · 4.21 KB

gitopiaEN.md

File metadata and controls

155 lines (100 loc) · 4.21 KB

Gitopia Testnet Installation Guide

Hi everyone, today we will join Gitopia Janus Testnet 2. Don't forget to star and fork this repository from the top right. For your questions: LossNode Chat

Gitopia Turkish Telegram: https://t.me/GitopiaTurkish

image

System requirements:

NODE TYPE CPU RAM SSD
Testnet 4 8 200*

Important links for Gitopia:

1a-1) Scripted installation with StateSync.

wget -O gitopiaEN.sh https://raw.githubusercontent.com/thisislexar/Gitopia-Testnet/main/gitopiaEN.sh && chmod +x gitopiaEN.sh && ./gitopiaEN.sh

1a-2) Scripted installation without StateSync.

wget -O gitopiaEN-noSS.sh https://raw.githubusercontent.com/thisislexar/Gitopia-Testnet/main/gitopiaEN-noSSgitopiaEN-noSS.sh && chmod +x gitopiaEN-noSS.sh && ./gitopiaEN-noSS.sh

1b) Manual installation.

You can also install the node manually to improve your Node knowledge.

2) Continue.

To check the sync status:

gitopiad status 2>&1 | jq .SyncInfo

image

If the sync status is false as in the photo above, you can continue, if it is still true, wait and continue after false

Create a wallet.

gitopiad keys add <WALLETNAME>

If you want to use an existing wallet:

gitopiad keys add <WALLETNAME> --recover

To get testnet tokens, we import the words of the wallet we set up just above, to Keplr.

image

image

image

image

After importing the wallet to Keplr, go to Gitopia platform and get testnet tokens.

image

image

Check that tokens have arrived in our wallet from Explorer

image

Create validator.

gitopiad tx staking create-validator \
  --amount 1000000utlore \
  --from <WALLETNAME> \
  --commission-max-change-rate "0.01" \
  --commission-max-rate "0.2" \
  --commission-rate "0.07" \
  --min-self-delegation "1" \
  --pubkey  $(gitopiad tendermint show-validator) \
  --moniker $NODENAME \
  --chain-id gitopia-janus-testnet-2 \
  --website="http://linktr.ee/LossNode" \
  --details="Testing the Gitopia"

Useful commands:

Checking logs

journalctl -fu gitopiad -o cat

Stopping the service

sudo systemctl stop gitopiad

Restarting the service

sudo systemctl restart gitopiad

Delegating tokens

gitopiad tx staking delegate gitopiavaloper1tdp45gtcfujsskg75k7tlxxxxxxx 10000000utlore --chain-id=gitopia-janus-testnet-2  --from <WALLETNAME>

Editing validator

gitopiad tx staking edit-validator \
  --moniker=$NODENAME \
  --identity="<YOUR KEYBASE ID>" \
  --website="<WEBSITE LINK>" \
  --details="DETAILS" \
  --chain-id=gitopia-janus-testnet-2  \
  --from=<WALLETNAME>

Deleting node:

sudo systemctl stop gitopiad
sudo systemctl disable gitopiad
sudo rm /etc/systemd/system/gitopia* -rf
sudo rm $(which gitopiad) -rf
sudo rm $HOME/.gitopia* -rf
sudo rm $HOME/gitopia -rf
sed -i '/GITOPIA_/d' ~/.bash_profile