From f1d9d2c4994a5327e2d1fc2a9efed6c3fc6ea792 Mon Sep 17 00:00:00 2001 From: Yogesh Date: Wed, 12 Apr 2017 00:54:17 +0530 Subject: [PATCH 1/3] Update README for typo. Two characters were causing an issue with the readability, updated them for clearer reading. --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 5dda3b3..03a0b73 100644 --- a/README.md +++ b/README.md @@ -117,6 +117,7 @@ Returns: `/v1/wallets/:id/copayers/`: Join a Wallet in creation + Required Arguments: * walletId: Id of the wallet to join * name: Copayer Name @@ -129,6 +130,7 @@ Returns: * wallet: Object with wallet's information `/v1/txproposals/`: Add a new transaction proposal + Required Arguments: * toAddress: RCPT Bitcoin address. * amount: amount (in satoshis) of the mount proposed to be transfered From e2f497a6e56d4551d762ee90d1457fc168bcf551 Mon Sep 17 00:00:00 2001 From: Yogesh Date: Wed, 12 Apr 2017 05:35:14 +0530 Subject: [PATCH 2/3] Update the getting started commands. Doing an `npm install bitcore-wallet-service` wouldn't install the project in the directory since there is no `package.json` file. It should rather be a `git clone` and then `cd bitcore-wallet-service && npm start`. --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 03a0b73..1a00a27 100644 --- a/README.md +++ b/README.md @@ -19,10 +19,10 @@ BWS is been used in production enviroments for [Copay Wallet](https://copay.io), More about BWS at https://blog.bitpay.com/announcing-the-bitcore-wallet-suite/ -# Install +# Get Started ``` - npm install bitcore-wallet-service - npm start + git clone https://github.com/bitpay/bitcore-wallet-service.git + cd bitcore-wallet-service && npm start ``` This will launch the BWS service (with default settings) at `http://localhost:3232/bws/api`. From 3eea8ccfc400843a82774434803cb70a81426860 Mon Sep 17 00:00:00 2001 From: Yogesh Date: Wed, 12 Apr 2017 05:35:39 +0530 Subject: [PATCH 3/3] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1a00a27..bbfba4b 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ BWS is been used in production enviroments for [Copay Wallet](https://copay.io), More about BWS at https://blog.bitpay.com/announcing-the-bitcore-wallet-suite/ -# Get Started +# Getting Started ``` git clone https://github.com/bitpay/bitcore-wallet-service.git cd bitcore-wallet-service && npm start