Exzo Network - Proof-of-Stake Blockchain Core

Chain Specs

Official Links

About the Exzo Network

The Exzo Network Token (XZO) features the following utilities, and the value of XZO token will accrue with the increased usage of the network and revenue from stability fees and liquidation penalties.

Cross-Chain Communication

Testing Framework References

Note: This section is still work in progress, we will be adding more information as we progress.

Build from Source (Ubuntu 20.04)

Requirements - Go >=1.18.x

Setup Go Path

sudo nano ~/.profile

Paste this into the bottom of the file

export GOPATH=$HOME/work
export PATH=$PATH:/usr/local/go/bin:$GOPATH/bin
source ~/.profile

Install Go

wget https://go.dev/dl/go1.18.7.linux-amd64.tar.gz
sudo tar -xvf go1.18.7.linux-amd64.tar.gz
sudo mv go /usr/local && rm go1.18.7.linux-amd64.tar.gz

Check that it's installed

go version

You should see something like this:

go version go1.18.7 linux/amd64

Build Exzo Network

git clone https://github.com/ExzoNetwork/ExzoCoin.git
cd ExzoCoin/
go build -o exzocoin main.go

Setup a Validator Node (optional)

You can setup your node as a validator to help secure the network. You can follow this guide to setting one up.

Running a Non-validating Node

After you have downloaded the binaries or built from source, enter the ExzoCoin directory and run the following:

mkdir ~/.exzocoin
./exzocoin server --data-dir ~/.exzocoin --chain mainnet-genesis.json --libp2p 0.0.0.0:1478 --nat <public_or_private_ip>
Copyright 2022 Exzo Network

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

       http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.