Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Btcd | 5,478 | 1,022 | 4,361 | 6 days ago | 90 | November 09, 2022 | 238 | isc | Go | |
An alternative full node bitcoin implementation written in Go (golang) | ||||||||||
Bitcoinjs Lib | 5,127 | 1,819 | 1,073 | 2 days ago | 85 | June 09, 2023 | 60 | mit | TypeScript | |
A javascript Bitcoin library for node.js and browsers. | ||||||||||
Blockchain_go | 3,165 | 2 years ago | 47 | Go | ||||||
A simplified blockchain implementation in Golang | ||||||||||
Learning Bitcoin From The Command Line | 2,646 | 6 months ago | 7 | November 17, 2021 | 11 | Jupyter Notebook | ||||
A complete course for learning Bitcoin programming and usage from the command | ||||||||||
Simplecoin | 1,770 | 4 months ago | 33 | mit | Python | |||||
Just a really simple, insecure and incomplete implementation of a blockchain for a cryptocurrency made in Python as educational material. In other words, a simple Bitcoin clone. | ||||||||||
Tinychain | 1,419 | 2 years ago | 8 | mit | Python | |||||
A pocket-sized implementation of Bitcoin | ||||||||||
Pycoin | 1,348 | 155 | 24 | 10 days ago | 38 | May 29, 2022 | 47 | mit | Python | |
Python-based Bitcoin and alt-coin utility library. | ||||||||||
Btc Rpc Explorer | 1,263 | 2 | a month ago | 25 | June 14, 2023 | 35 | mit | JavaScript | ||
Database-free, self-hosted Bitcoin explorer, via RPC to Bitcoin Core. | ||||||||||
Bit | 1,127 | 8 | 12 | 8 months ago | 19 | December 04, 2021 | 52 | mit | Python | |
Bitcoin made easy. | ||||||||||
Awesome Bitcoin | 1,009 | 5 months ago | 3 | |||||||
A curated list of bitcoin services and tools for software developers |
btcd is an alternative full node bitcoin implementation written in Go (golang).
This project is currently under active development and is in a Beta state. It is extremely stable and has been in production use since October 2013.
It properly downloads, validates, and serves the block chain using the exact rules (including consensus bugs) for block acceptance as Bitcoin Core. We have taken great care to avoid btcd causing a fork to the block chain. It includes a full block validation testing framework which contains all of the 'official' block acceptance tests (and some additional ones) that is run on every pull request to help ensure it properly follows consensus. Also, it passes all of the JSON test data in the Bitcoin Core code.
It also properly relays newly mined blocks, maintains a transaction pool, and relays individual transactions that have not yet made it into a block. It ensures all individual transactions admitted to the pool follow the rules required by the block chain and also includes more strict checks which filter transactions based on miner requirements ("standard" transactions).
One key difference between btcd and Bitcoin Core is that btcd does NOT include wallet functionality and this was a very intentional design decision. See the blog entry here for more details. This means you can't actually make or receive payments directly with btcd. That functionality is provided by the btcwallet and Paymetheus (Windows-only) projects which are both under active development.
Go 1.17 or newer.
https://github.com/btcsuite/btcd/releases
Install Go according to the installation instructions here: http://golang.org/doc/install
Ensure Go was installed properly and is a supported version:
$ go version
$ go env GOROOT GOPATH
NOTE: The GOROOT
and GOPATH
above must not be the same path. It is
recommended that GOPATH
is set to a directory in your home directory such as
~/goprojects
to avoid write permission issues. It is also recommended to add
$GOPATH/bin
to your PATH
at this point.
$ cd $GOPATH/src/github.com/btcsuite/btcd
$ GO111MODULE=on go install -v . ./cmd/...
$GOPATH/bin
. If you did
not already add the bin directory to your system path during Go installation,
we recommend you do so now.$ cd $GOPATH/src/github.com/btcsuite/btcd
$ git pull
$ GO111MODULE=on go install -v . ./cmd/...
btcd has several configuration options available to tweak how it runs, but all of the basic operations described in the intro section work with zero configuration.
$ ./btcd
The integrated github issue tracker is used for this project.
The documentation is a work-in-progress. It is located in the docs folder.
Please see our documentation on the current build/verification process for all our releases for information on how to verify the integrity of published releases using our reproducible build system.
btcd is licensed under the copyfree ISC License.