From a32e0da9be600c1241498c3d0a230ee696366842 Mon Sep 17 00:00:00 2001 From: Chris Troutner Date: Sun, 8 Nov 2020 19:02:30 -0800 Subject: [PATCH] Updating README --- README.md | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index a81e246..1cd03fa 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ [![Downloads/week](https://img.shields.io/npm/dw/@psf/bch-js)](https://npmjs.org/package/@psf/bch-js) [![License](https://img.shields.io/npm/l/@psf/bch-js)](https://github.com/Permissionless-Software-Foundation/bch-js/blob/master/LICENSE.md) -[bch-js](https://www.npmjs.com/package/@psf/bch-js) is a JavaScript npm library for creating web and mobile apps for interacting with the Bitcoin Cash (BCH) blockchain. It can be used for free, but requires an account on [FullStack.cash](https://fullstack.cash) for increased rate limits. Learn more from [this article](https://troutsblog.com/research/bitcoin-cash/how-to-bch-full-stack-developer) about Full Stack Bitcoin Cash development. +[bch-js](https://www.npmjs.com/package/@psf/bch-js) is a JavaScript npm library for creating web and mobile apps that can interact with the Bitcoin Cash (BCH) blockchains. It can be used for free, but requires an account on [FullStack.cash](https://fullstack.cash) for increased rate limits. Learn more from [this article](https://troutsblog.com/research/bitcoin-cash/how-to-bch-full-stack-developer) about Full Stack Bitcoin Cash development. ### Quick Start Videos: @@ -19,10 +19,9 @@ Here are two YouTube walk-through videos to help you get started: - [npm Library](https://www.npmjs.com/package/@psf/bch-js) - [Documentation](https://bchjs.fullstack.cash/) - [Examples](https://github.com/Permissionless-Software-Foundation/bch-js-examples) -- [api.fullstack.cash](https://api.fullstack.cash) - The REST API this library talks to by default. +- [bchn.fullstack.cash](https://bchn.fullstack.cash) - The REST API this library talks to by default. +- [FullStack.cash](https://fullstack.cash) - cloud-based infrastructure for application developers. - [FullStack.cash Account](https://fullstack.cash/login) - Get your API key to unlock increased rate limits. -- [FullStack.cash](https://fullstack.cash) - cloud-based infrastructure for application - developers. - [Permissionless Software Foundation](https://psfoundation.cash) - The organization that maintains this library. ### Quick Notes @@ -33,7 +32,7 @@ Here are two YouTube walk-through videos to help you get started: ``` const BCHJS = require("@psf/bch-js") -let bchjs = new BCHJS() // Default to BCHN network. +let bchjs = new BCHJS() // Defaults to BCHN network. // testnet bchjs = new BCHJS({ restURL: 'https://testnet3.fullstack.cash/v3/' })