The reference implementation of the Quai protocol, written in Go.
Once you have the necessary prerequisites, clone the go-quai
repository and navigate to it using:
git clone https://github.com/dominant-strategies/go-quai.git
cd go-quai
make go-quai
After a successful build, the binary will be located at build/bin/go-quai
.
To run a go-quai node, simply execute the go-quai start
command. Be sure to specify the parameters you wish to use, such as your coinbase address (if you plan on mining), and which slices you wish to participate in.
For example, here is the run command for miner (0x00a3e45aa16163F2663015b6695894D918866d19) in cyprus-1 (zone-0-0) on the "garden" test network:
./build/bin/go-quai start --node.slices "[0 0]" --node.coinbases "0x00a3e45aa16163F2663015b6695894D918866d19" --node.environment "garden"
For the full list of available options and their default values, consult the help menu:
./build/go-quai --help
All configuration options may be supplied in a config file too, located in the directory specified by --global.config-dir
. Note specified on the command-line will override options specified in the config file.
To run the included unit tests, run the following command:
./build/go-quai test
We welcome community contributions! If you find a bug, have a feature request, or would like to help out with development, we would love to hear from you; no fix is too small. Please take a look at [CONTRIBUTING.md](CONTRIBUTING.md)
for guidelines for contributing to the project.
This software is licensed under the GNU Genreral Public License, Version 3. See LICENSE for details.