From b8d9a18480533637e45fb6ea27dd07e4da3ba74d Mon Sep 17 00:00:00 2001 From: Esteban Ordano Date: Tue, 16 Dec 2014 15:23:14 -0300 Subject: [PATCH] Update README with missing links --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 9cd67c53e..8cfd42314 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ Using it on node.js: ```javascript var bitcore = require('bitcore'); -assert(bitcore.isValid(address)); +assert(bitcore.Address.isValid(address)); var simpleTx = new bitcore.Transaction(); var simpleTx.from(unspent).to(address, amount); simpleTx.sign(privateKey); @@ -32,7 +32,7 @@ simpleTx.sign(privateKey); ## Documentation -The complete docs are hosted here: [bitcore documentation](http://missing-link). There's also a [bitcore API reference](http://missing-link) available generated from the JSDocs of the project. +The complete docs are hosted here: [bitcore documentation](bitpay.github.io/bitcore/docs). There's also a [bitcore API reference](bitpay.github.io/bitcore/apiref) available generated from the JSDocs of the project. ## Security @@ -52,7 +52,7 @@ To build bitcore full bundle for the browser: gulp browser ``` -This will generate files named `dist/bitcore.js` and `dist/bitcore.min.js`. +This will generate files named `browser/bitcore.js` and `browser/bitcore.min.js`. ## Tests