|
| 1 | +# Bitcore v0.8 |
| 2 | + |
| 3 | +Welcome to the documentation for bictore, a pure and powerful JavaScript Bitcoin API. |
| 4 | + |
| 5 | +## Principles |
| 6 | + |
| 7 | +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, and the developer community needs reliable, open-source tools to implement bitcoin apps and services. Bitcore provides a powerful API to Bitcoin. |
| 8 | + |
| 9 | +To get started, just `npm install bitcore` or `bower install bitcore`. |
| 10 | + |
| 11 | +# Documentation Index |
| 12 | + |
| 13 | +## Addresses and Key Management |
| 14 | + |
| 15 | +* [Addresses](address.md) |
| 16 | +* [Using different networks](networks.md) |
| 17 | +* [Private Keys](privatekey.md) and [Public Keys](publickey.md) |
| 18 | +* [Hierarchically-derived Private and Public Keys](hierarchical.md) |
| 19 | + |
| 20 | +## Payment handling |
| 21 | +* [Using different Units](unit.md) |
| 22 | +* [Acknowledging and Requesting payments: Bitcoin URIs](uri.md) |
| 23 | +* [Payment Protocol Support](paymentprotocol.md) |
| 24 | +* [The Transaction Class](transaction.md) |
| 25 | + |
| 26 | +## Bitcoin internals |
| 27 | +* [Scripts](script.md) |
| 28 | +* [Block](block.md) |
| 29 | + |
| 30 | +## Networking |
| 31 | +* [Interface to the Bitcoin P2P network](peer.md) |
| 32 | +* [Managing a pool of peers](pool.md) |
| 33 | +* [Connecting to a bitcoind instance through JSON-RPC](jsonrpc.md) |
| 34 | + |
| 35 | +## Extra |
| 36 | +* [Crypto](crypto.md) |
| 37 | +* [Encoding](encoding.md) |
| 38 | +* [ECIES](ecies.md) |
| 39 | + |
| 40 | +# Examples |
| 41 | + |
| 42 | +## Create a Private Key |
| 43 | + |
| 44 | +``` |
| 45 | +var privKey = new bitcore.PrivateKey(); |
| 46 | +``` |
| 47 | + |
| 48 | +## Create an Address |
| 49 | +``` |
| 50 | +var privKey = new bitcore.PrivateKey(); |
| 51 | +var address = privKey.toAddress(); |
| 52 | +``` |
| 53 | + |
| 54 | +## Create a Multisig Address |
| 55 | +``` |
| 56 | +// Build a 2-of-3 address from public keys |
| 57 | +var P2SHAddress = new bitcore.Address([publicKey1, publicKey2, publicKey3], 2); |
| 58 | +``` |
| 59 | + |
| 60 | +## Request a Payment |
| 61 | +``` |
| 62 | +var paymentInfo = { |
| 63 | + address: '1DNtTk4PUCGAdiNETAzQFWZiy2fCHtGnPx', |
| 64 | + amount: 120000 //satoshis |
| 65 | +}; |
| 66 | +var uri = new bitcore.URI(paymentInfo).toString(); |
| 67 | +``` |
| 68 | + |
| 69 | +## Create a Transaction |
| 70 | +``` |
| 71 | +var transaction = new Transaction() |
| 72 | + .from(utxos) // Feed information about what unspend outputs one can use |
| 73 | + .to(address, amount) // Add an output with the given amount of satoshis |
| 74 | + .change(address) // Sets up a change address where the rest of the funds will go |
| 75 | + .sign(privkeySet) // Signs all the inputs it can |
| 76 | +``` |
| 77 | + |
| 78 | +## Connect to the Network |
| 79 | +``` |
| 80 | +var peer = new Peer('5.9.85.34'); |
| 81 | +
|
| 82 | +peer.on('inv', function(message) { |
| 83 | + // new invetory |
| 84 | +}); |
| 85 | +
|
| 86 | +peer.connect(); |
| 87 | +``` |
0 commit comments