WoopChain Node Installation

WoopChain Configuration.

WoopChain Node Installation

Building from source

Prior to using go install make sure that you have Go >=1.18 installed and properly configured.

  
git clone https://github.com/WoopChain/woopchain.git
cd woop/
go build -o woop main.go
sudo mv woop /usr/local/bin
  

Using go install

Prior to using go install make sure that you have Go >=1.17 installed and properly configured.

  
go install github.com/WoopChain/woopchai
  

The binary will be available in your GOBIN environment variable, and will include the latest changes from the
mainline MAIN branch.

Top