You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
Jason Dreyzehner 71378898e0 Merge pull request #24 from dreyzehner/master 11 years ago
src Rename compiled binding to KeyModule. 11 years ago
test replace tabs with 2 spaces using "expand" 11 years ago
util replace tabs with 2 spaces using "expand" 11 years ago
.gitignore eclipse file ignores 11 years ago
Address.js refactoring of Address 11 years ago
Block.js replace tabs with 2 spaces using "expand" 11 years ago
Bloom.js replace tabs with 2 spaces using "expand" 11 years ago
Buffers.monkey.js add some needed monkey patches 11 years ago
Connection.js replace tabs with 2 spaces using "expand" 11 years ago
Deserialize.js replace tabs with 2 spaces using "expand" 11 years ago
Key.js Add PrivateKey, Key classes. Update test to enc/dec private key test vectors. 11 years ago
LICENSE bunch of interim (broken) stuff 11 years ago
Number.monkey.js add some needed monkey patches 11 years ago
Opcode.js bunch of interim (broken) stuff 11 years ago
Peer.js bunch of interim (broken) stuff 11 years ago
PeerManager.js rework logging, remove some unused code 11 years ago
PrivateKey.js fix validate math error 11 years ago
README.md structure 11 years ago
RpcClient.js Merge pull request #18 from matiu/feature/keep-alive-optional 11 years ago
SIN.js replace tabs with 2 spaces using "expand" 11 years ago
SINKey.js replace tabs with 2 spaces using "expand" 11 years ago
Script.js replace tabs with 2 spaces using "expand" 11 years ago
ScriptInterpreter.js replace tabs with 2 spaces using "expand" 11 years ago
Sign.js replace tabs with 2 spaces using "expand" 11 years ago
Transaction.js Merge pull request #16 from jgarzik/tx-fromobj 11 years ago
Wallet.js replace tabs with 2 spaces using "expand" 11 years ago
WalletKey.js replace tabs with 2 spaces using "expand" 11 years ago
binding.gyp Rename compiled binding to KeyModule. 11 years ago
config.js fix logger variable name 11 years ago
const.js replace tabs with 2 spaces using "expand" 11 years ago
networks.js Bitcoin address tests, from bitcoin/bitcoin.git 11 years ago
package.json add mocha to package.json 11 years ago
sin-test.js Broken SIN stuff 11 years ago

README.md

Bitcore

A pure, powerful core for your bitcoin project.

Bitcore is a complete, native interface to the Bitcoin network, and provides the core functionality needed to develop apps for bitcoin.

#Principles Bitcoin is a powerful new peer-to-peer platform for the next generation of financial technology. The decentralized nature of the Bitcoin network allows for highly resilient bitcoin infrastructure, but the developer community needs reliable, open-source tools to implement bitcoin apps and services.

Bitcore unchains developers from fallible, centralized APIs, and provides the tools to interact with the real Bitcoin network.

#Get Started

Bitcore runs on node, and can be installed via npm:

npm install bitcore

#Examples

Validating a Bitcoin address:

var Address = require('bitcore/Address.js').class();

var addr = new Address("1A1zP1eP5QGefi2DMPTfTL5SLmv7DivfNa");

try {
  addr.validate();
  console.log("address is valid");
} catch(e) {
  console.log(addr.data + " is not a valid address.")
}

#Security Please use at your own risk. Bitcore is still under heavy development and not quite ready for "drop-in" production use.

Bitpay offers a bounty program for security vulnerabilities found in Bitcore. If you find a security issue, please email security@bitcore.io.

#Contributing Bitcore needs some developer love. Please send pull requests for bug fixes, code optimization, and ideas for improvement.