CW20 Neware Guide

Neware Chain

Click here (Coming Soon) and download the highlighted tar file. Kindly note this link is public and can be accessed through any browser.
Basic Machine setup
  1. 1.
    ssh into your node
  2. 2.
    update your machine sudo apt update && sudo apt dist-upgrade -y. Answer yes / ok to the prompts
  3. 3.
    install required tools tools sudo apt install build-essential git unzip curl wget

Golang

First off we install go 1.18.x
  1. 1.
    wget https://go.dev/dl/go1.18.2.linux-amd64.tar.gz
  2. 2.
    extract the runtime sudo tar -C /usr/local -xzf go1.18.2.linux-amd64.tar.gz

Get the testnet up and running

(A) create the neware user and switch to it
sudo useradd -m neware
sudo su -s /bin/bash -l neware
(B) Add go to your path (add these lines to ~/.profile or ~/.bashrc)
export PATH=$PATH:/usr/local/go/bin
export PATH=$PATH:$(go env GOPATH)/bin
(C)Run source ~/.profile and/or source ~/.bashrc & time to grab the code
git clone https://github.com/gitshock-labs/gitshock-ibc-yui $HOME/neware
Time to ignite the build sequence (using the cosmware user created above)
(D) Move into the source folder
cd $HOME/neware
make install
newared version
Last modified 4mo ago