A pure and powerful JavaScript Bitcoin library. Forked to work with altcoins.
Bitcore is a powerful javascript blockchain library. It was originally built to work with the bitcoin and bitcoin testnet networks, and has the ability to be extended to other networks, like Namecoin and Litecoin.
Many altcoin communities have forked bitcore-lib to work with their altcoin, but thus far, the overwheling majority of these forks are done in such a way that makes them only work for that altcoin. This means if you want to build an application that uses multiple altcoins, you will need to include with your application multiple versions of the same large library that is mostly the same. This is not much of a problem if you are building a desktop application, but for a web application (the only platform where javascript has a purpose to exist), this is unacceptable.
This fork tries to move all modifications from each bitcore fork in existence and makes them available under a single codebase that is roughly the same size as a single instance of bitcore-lib.
This fork has expanded the Networks
functionality found in bitcore-lib, and has kept
everything else (as much as possible) the same as bitcore-lib. The 'livenet' network
has been renamed to 'btc'. Only livenets of each currency is supported. The network
called "testnet" is bitcoin's testnet and is the only testnet supported.
Bitcoin, Litecoin, ZCash, Dash, Groestlcoin, KittehCoin, Fujicoin, BunnyCoin, Syscoin 2.1, Dogecoin.
npm install altcore-lib
bower install altcore-lib
The complete docs are hosted here: bitcore documentation. There's also a bitcore API reference available generated from the JSDocs of the project, where you'll find low-level details on each bitcore utility.
To get community assistance and ask for help with implementation questions, please use our community forums.
- Generate a random address
- Generate a address from a SHA256 hash
- Import an address via WIF
- Create a Transaction
- Sign a Bitcoin message
- Verify a Bitcoin message
- Create an OP RETURN transaction
- Create a 2-of-3 multisig P2SH address
- Spend from a 2-of-2 multisig P2SH address
We're using Bitcore in production, as are many others, but please use common sense when doing anything related to finances! We take no responsibility for your implementation decisions.
If you find a security issue, please email security@bitpay.com.
Please send pull requests for bug fixes, code optimization, and ideas for improvement. For more information on how to contribute, please refer to our CONTRIBUTING file.
To build a altcore-lib full bundle for the browser:
gulp browser
This will generate files named altcore-lib.js
and altcore-lib.min.js
.
git clone https://github.com/priestc/altcore-lib
cd bitcore-lib
npm install
Run all the tests:
gulp test
You can also run just the Node.js tests with gulp test:node
, just the browser tests with gulp test:browser
or create a test coverage report (you can open coverage/lcov-report/index.html
to visualize it) with gulp coverage
.
Code released under the MIT license.