CyberChain is a Layer 1 blockchain prepared for future web 3 applications. It adopts a GPU-friendly fphash Proof of Work (POW) algorithm.
Go-cyberchain (ccx) is the Golang client for CyberChain, developed based on go-ethereum.
Release builds are available on the Releases page.
For prerequisites and detailed build instructions please read the Installation Instructions.
Building ccx requires both a Go (version 1.19 or later) and a C compiler. You can install
them using your favourite package manager. Once the dependencies are installed, run
make ccx./ccxCheck all commands
./ccx --helpGoing through all the possible command line flags is out of scope here (please consult geth
CLI Wiki page),
but we've enumerated a few common parameter combos to get you up to speed quickly
on how you can run your own ccx instance.
Thank you for considering helping out with the source code! We welcome contributions from anyone on the internet, and are grateful for even the smallest of fixes!
If you'd like to contribute to ccx, please fork, fix, commit and send a pull request for the maintainers to review and merge into the main code base.
Please make sure your contributions adhere to our coding guidelines:
- Code must adhere to the official Go formatting guidelines (i.e. uses gofmt).
- Code must be documented adhering to the official Go commentary guidelines.
- Pull requests need to be based on and opened against the
mainbranch. - Commit messages should be prefixed with the package(s) they modify.
- E.g. "eth, rpc: make trace configs optional"
Please see the Developers' Guide for more details on configuring your environment, managing project dependencies, and testing procedures.
The ccx library (i.e. all code outside of the cmd directory) is licensed under the
GNU Lesser General Public License v3.0,
also included in our repository in the COPYING.LESSER file.
The ccx binaries (i.e. all code inside of the cmd directory) are licensed under the
GNU General Public License v3.0, also
included in our repository in the COPYING file.