Javascript bitcoin library for node.js and browsers
Go to file
Nodar Chkuaselidze 1fceb14e32
blockstore-test: use try/catch instead of promise.catch/finally.
finally was introduce in node v10, so this test will fail on v8.6.0 node.
2019-05-18 16:36:38 +04:00
.circleci pkg/circleci: remove instanbul from dev dependencies. 2018-11-29 04:14:32 -08:00
bench blockstore: minor, update comments and docs 2019-04-08 13:18:55 -07:00
bin bin: fully deprecate bcoin cli 2019-02-21 10:12:31 -08:00
browser blockchain: remove coin cache 2019-03-21 15:15:51 -07:00
docs linter: cover docs/examples 2019-05-02 08:16:11 -07:00
etc blockchain: remove coin cache 2019-03-21 15:15:51 -07:00
lib addrindexer: minor. 2019-05-17 21:04:52 +04:00
migrate migrate: upgrade from chaindb 4 to 6 2019-05-15 12:11:37 -07:00
scripts deps: upgrade to bcrypto 2.0. upgrade other deps. 2018-09-29 14:38:53 -07:00
snap v1.0.0 2018-07-12 10:20:50 -07:00
test blockstore-test: use try/catch instead of promise.catch/finally. 2019-05-18 16:36:38 +04:00
.editorconfig Add editorconfig rules 2016-10-05 12:49:39 -06:00
.eslintfiles linter: cover docs/examples 2019-05-02 08:16:11 -07:00
.eslintrc.json bcoin: switch to bsert for everything. 2018-08-10 16:23:46 -07:00
.gitignore pkg: add lockfile 2018-11-29 09:43:49 -08:00
.npmignore gitignore/npmignore: ignore package-lock for now. 2017-08-06 13:47:15 -07:00
CHANGELOG.md changelog: update and fix chain changes 2019-05-16 10:28:09 -07:00
jsdoc.json Move docs from wiki 2017-07-21 00:40:02 +04:00
LICENSE docs: get jsdoc compiling again. 2017-02-03 22:47:26 -08:00
package-lock.json pkg: update deps and lock file. 2019-01-21 22:49:52 -08:00
package.json npm scripts: delete webpack 2019-03-30 15:19:24 -07:00
README.md docs: formatting and consistency 2019-02-28 21:52:39 -08:00

Bcoin

Build Status Coverage Status

NOTE: The latest release of bcoin contains a non-backward compatible change to the rest API. Please read the changelog's "migrating" section for more details.


Bcoin is an alternative implementation of the bitcoin protocol, written in node.js.

Bcoin is well tested and aware of all known consensus rules. It is currently used in production as the consensus backend and wallet system for purse.io.

Uses

  • Full Node
  • SPV Node
  • Wallet Backend (bip44 derivation)
  • Mining Backend (getblocktemplate support)
  • Layer 2 Backend (lightning)
  • General Purpose Bitcoin Library

Try it in the browser: https://bcoin.io/browser/

Install

$ git clone git://github.com/bcoin-org/bcoin.git
$ cd bcoin
$ npm install
$ ./bin/bcoin

See the Getting started guide for more in-depth installation instructions, including verifying releases.

Documentation

Support

Join us on freenode in the #bcoin channel.

Disclaimer

Bcoin does not guarantee you against theft or lost funds due to bugs, mishaps, or your own incompetence. You and you alone are responsible for securing your money.

Contribution and License Agreement

If you contribute code to this project, you are implicitly allowing your code to be distributed under the MIT license. You are also implicitly verifying that all code is your original work. </legalese>

License

  • Copyright (c) 2014-2015, Fedor Indutny (MIT License).
  • Copyright (c) 2014-2017, Christopher Jeffrey (MIT License).

See LICENSE for more info.