Categorygithub.com/aviator-coding/bchd
modulepackage
0.14.9
Repository: https://github.com/aviator-coding/bchd.git
Documentation: pkg.go.dev

# README

bchd

Build Status Go Report Card ISC License GoDoc

bchd is an alternative full node bitcoin cash implementation written in Go (golang).

This project is a port of the btcd codebase to Bitcoin Cash. It provides a high powered and reliable blockchain server which makes it a suitable backend to serve blockchain data to lite clients and block explorers or to power your local wallet.

bchd does not include any wallet functionality by design as it makes the codebase more modular and easy to maintain. The bchwallet is a separate application that provides a secure Bitcoin Cash wallet that communicates with your running bchd instance via the API.

Table of Contents

Requirements

Go 1.9 or newer.

Install

Install Pre-built Packages

The easiest way to run the server is to download a pre-built binary. You can find binaries of our latest release for each operating system at the releases page.

Build from Source

If you prefer to install from source do the following:

  • Install Go according to the installation instructions here: http://golang.org/doc/install

  • Run the following commands to obtain bchd, all dependencies, and install it:

go get github.com/aviator-coding/bchd

This will download the source code into your GOPATH and compile bchd and install it in your path.

For developers if you wish to place the working directory outside your GOPATH you can do so with Go >=1.12.x as follows:

mkdir workspace
cd workspace
git clone https://github.com/aviator-coding/bchd.git
cd bchd
go install (or build or run, etc)

Dependencies will be automatically installed to $GOPATH/pkg/mod.

If you are a bchd contributor and would like to change the default config file (bchd.conf), make any changes to sample-bchd.conf and then run the following commands:

go-bindata sample-bchd.conf  # requires github.com/go-bindata/go-bindata/
gofmt -s -w bindata.go

Getting Started

To start bchd with default options just run:

./bchd

You'll find a large number of runtime options with the help flag. All of them can also be set in a config file. See the sample config file for an example of how to use it.

./bchd --help

You can use the common json RPC interface through the bchctl command:

./bchctl --help

./bchctl --listcommands

Bchd separates the node and the wallet. Commands for the wallet will work when you are also running bchwallet:

./bchctl -u username -P password --wallet getnewaddress

Docker

Building and running bchd in docker is quite painless. To build the image:

docker build . -t bchd

To run the image:

docker run bchd

To run bchctl and connect to your bchd instance:

# Find the running bchd container.
docker ps

# Exec bchctl.
docker exec <container> bchctl <command>

Documentation

The documentation is a work-in-progress. It is located in the docs folder.

Contributing

Contributions are definitely welcome! Please read the contributing guidelines before starting.

Security Disclosures

To report security issues please contact:

Chris Pacia ([email protected]) - GPG Fingerprint: 0150 2502 DD3A 928D CE52 8CB9 B895 6DBF EE7C 105C

or

Josh Ellithorpe ([email protected]) - GPG Fingerprint: B6DE 3514 E07E 30BB 5F40 8D74 E49B 7E00 0022 8DDD

License

bchd is licensed under the copyfree ISC License.

# Packages

Package addrmgr implements concurrency safe Bitcoin Cash address manager.
Package bchec implements support for the elliptic curves needed for bitcoin.
No description provided by the author
Package blockchain implements bitcoin block handling and chain selection rules.
Package btcjson provides primitives for working with the bitcoin JSON-RPC API.
Package chaincfg defines chain configuration parameters.
No description provided by the author
Package connmgr implements a generic Bitcoin network connection manager.
Package database provides a block and metadata storage database.
No description provided by the author
No description provided by the author
Package mempool provides a policy-enforced pool of unmined bitcoin cash transactions.
No description provided by the author
Package netsync implements a concurrency safe block syncing protocol.
Package peer provides a common base for creating and managing Bitcoin cash network peers.
Package rpcclient implements a websocket-enabled Bitcoin JSON-RPC client.
Package txscript implements the bitcoin transaction script language.
No description provided by the author
Package wire implements the bitcoin wire protocol.

# Functions

Asset loads and returns the asset for the given name.
AssetDir returns the file names below a certain directory embedded in the file by go-bindata.
AssetInfo loads and returns the asset info for the given name.
AssetNames returns the names of the assets.
Discover searches the local network for a UPnP router returning a NAT for the network if so, nil if not.
MustAsset is like Asset but panics when Asset would return an error.
RestoreAsset restores an asset under the given directory.
RestoreAssets restores an asset under the given directory recursively.

# Constants

AuthenticationTokenKey is the key used in the context to authenticate clients.

# Variables

ErrClientQuit describes the error where a client send is not processed due to the client having already been disconnected or dropped.
ErrRescanReorg defines the error that is returned when an unrecoverable reorganize is detected during a rescan.
ErrRPCNoWallet is an error returned to RPC clients when the provided command is recognized as a wallet command.
ErrRPCUnimplemented is an error returned to RPC clients when the provided command is recognized, but not implemented.

# Interfaces

NAT is an interface representing a NAT traversal options for example UPNP or NAT-PMP.