From 05c7c5dd65d4bbd636c53efc3a67fc1c5afd8883 Mon Sep 17 00:00:00 2001 From: Braydon Fuller Date: Tue, 20 Jan 2015 15:56:39 -0500 Subject: [PATCH] Update documentation with changes based on the seperation of modules. --- docs/guide/index.md | 31 ++++++++++++++++++------------- 1 file changed, 18 insertions(+), 13 deletions(-) diff --git a/docs/guide/index.md b/docs/guide/index.md index 62812f7..d3853a2 100644 --- a/docs/guide/index.md +++ b/docs/guide/index.md @@ -1,4 +1,4 @@ -# Bitcore v0.8 +# Bitcore v0.9 ## Principles @@ -11,26 +11,19 @@ To get started, just `npm install bitcore` or `bower install bitcore`. ## Addresses and Key Management * [Addresses](address.md) -* [Using different networks](networks.md) +* [Using Different Networks](networks.md) * [Private Keys](privatekey.md) and [Public Keys](publickey.md) * [Hierarchically-derived Private and Public Keys](hierarchical.md) -## Payment handling -* [Using different Units](unit.md) -* [Acknowledging and Requesting payments: Bitcoin URIs](uri.md) -* [Payment Protocol Support](paymentprotocol.md) +## Payment Handling +* [Using Different Units](unit.md) +* [Acknowledging and Requesting Payments: Bitcoin URIs](uri.md) * [The Transaction Class](transaction.md) -## Bitcoin internals +## Bitcoin Internals * [Scripts](script.md) * [Block](block.md) -## Networking -* [Interface to the Bitcoin P2P network](peer.md) -* [Managing a pool of peers](pool.md) -* [Connecting to a bitcoind instance through JSON-RPC](jsonrpc.md) -* [Connecting to a Insight instance to retrieve informetion](insight.md) - ## Extra * [Crypto](crypto.md) * [Encoding](encoding.md) @@ -38,6 +31,18 @@ To get started, just `npm install bitcore` or `bower install bitcore`. ## Module Development * [Browser Builds](browser.md) +## Modules + +Some functionality is implemented as a module that can be installed seperately: + +* [Payment Protocol Support](https://github.com/bitpay/bitcore-payment-protocol) +* [Peer to Peer Networking](https://github.com/bitpay/bitcore-payment-protocol) +* [Bitcoin Core JSON-RPC](https://github.com/bitpay/bitcoind-rpc) +* [Payment Channels](https://github.com/bitpay/bitcore-channel) +* [Mnemonics](https://github.com/bitpay/bitcore-mnemonic) +* [Elliptical Curve Integrated Encryption Scheme](https://github.com/bitpay/bitcore-ecies) +* [Blockchain Explorers](https://github.com/bitpay/bitcore-explorers) + # Examples ## Create a Private Key