Files
bch-js/README.md
T

135 lines
6.4 KiB
Markdown
Raw Normal View History

2020-07-27 21:32:51 -07:00
# bch-js
2020-11-08 17:38:11 -08:00
[![Build Status](https://travis-ci.org/Permissionless-Software-Foundation/bch-js.svg?branch=master)](https://travis-ci.org/Permissionless-Software-Foundation/bch-js)
2020-11-08 17:46:40 -08:00
[![Version](https://img.shields.io/npm/v/@psf/bch-js)](https://www.npmjs.com/package/@psf/bch-js)
[![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)
2020-07-27 21:32:51 -07:00
2020-11-08 19:02:30 -08:00
[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.
2020-07-27 21:32:51 -07:00
### Quick Start Videos:
2020-11-08 18:56:48 -08:00
2020-07-27 21:32:51 -07:00
Here are two YouTube walk-through videos to help you get started:
2020-11-08 18:56:48 -08:00
2020-07-27 21:32:51 -07:00
- [Introduction to bch-js and the bch-js-examples repository](https://youtu.be/GD2i1ZUiyrk)
- [Working with the FullStack.cash JWT token](https://youtu.be/GD2i1ZUiyrk)
### Quick Links
2020-11-08 18:56:48 -08:00
2020-11-08 17:46:40 -08:00
- [npm Library](https://www.npmjs.com/package/@psf/bch-js)
2020-07-27 21:32:51 -07:00
- [Documentation](https://bchjs.fullstack.cash/)
- [Examples](https://github.com/Permissionless-Software-Foundation/bch-js-examples)
2020-11-08 19:02:30 -08:00
- [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.
2020-07-27 21:32:51 -07:00
- [FullStack.cash Account](https://fullstack.cash/login) - Get your API key to unlock increased rate limits.
- [Permissionless Software Foundation](https://psfoundation.cash) - The organization that maintains this library.
### Quick Notes
2020-11-08 17:46:40 -08:00
- Install library: `npm install @psf/bch-js`
2020-07-27 21:32:51 -07:00
- Instantiate the library in your code:
2020-11-08 18:56:48 -08:00
2020-07-27 21:32:51 -07:00
```
2020-11-08 17:46:40 -08:00
const BCHJS = require("@psf/bch-js")
2020-11-08 19:02:30 -08:00
let bchjs = new BCHJS() // Defaults to BCHN network.
2020-07-27 21:32:51 -07:00
// testnet
2020-11-08 18:49:45 -08:00
bchjs = new BCHJS({ restURL: 'https://testnet3.fullstack.cash/v3/' })
2020-07-27 21:32:51 -07:00
```
2020-11-08 18:49:45 -08:00
This library is intended to be paired with
the [bch-api](https://github.com/Permissionless-Software-Foundation/bch-api) REST API, and the infrastructure provided by [FullStack.cash](https://fullstack.cash). The `restURL` property can be changed to work with different Bitcoin Cash networks:
2020-07-27 21:32:51 -07:00
2020-11-08 18:49:45 -08:00
- BCHN Mainnet REST API server: https://bchn.fullstack.cash/v3/
- ABC Mainnet REST API server: https://abc.fullstack.cash/v3/
- Testnet3 REST API server: https://testnet3.fullstack.cash/v3/
- Check server status: https://metrics.fullstack.cash
2020-07-27 21:32:51 -07:00
### API Key
2020-11-08 18:56:48 -08:00
2020-11-08 17:38:11 -08:00
The [bch-api](https://github.com/Permissionless-Software-Foundation/bch-api) REST API hosted by [FullStack.cash](https://fullstack.cash) uses JWT tokens to pay for increased
2020-11-08 18:56:48 -08:00
rate limits when interacting with the back end server. See [this article](https://troutsblog.com/research/bitcoin-cash/how-to-bch-full-stack-developer) if you want to understand the system-as-a-whole. The JWT token can be fed to bch-js _implicitly_ or _explicitly_.
2020-07-27 21:32:51 -07:00
2020-11-08 18:56:48 -08:00
- Implicitly: bch-js will detect your JWT token if you set the `BCHJSTOKEN` environment variable.
2020-07-27 21:32:51 -07:00
- Explicitly: You can directly feed in the JWT token with the `apiToken` property when instantiating the library. Here is an example:
```
2020-11-08 17:46:40 -08:00
const BCHJS = require("@psf/bch-js")
2020-07-27 21:32:51 -07:00
let bchjs = new BCHJS({
2020-11-08 18:56:48 -08:00
restURL: 'https://bchn.fullstack.cash/v3/',
2020-07-27 21:32:51 -07:00
apiToken: 'eyJhbGciO...' // Your JWT token here.
})
```
### Gatsby
2020-11-08 18:56:48 -08:00
2020-07-27 21:32:51 -07:00
bch-js is included in this [gatsby-ipfs-template](https://github.com/Permissionless-Software-Foundation/gatsby-ipfs-template) for building uncensorable web apps that can interact with the blockchain. When building a Gatsby (or other front-end app that uses Webpack), you'll need to add these lines to your `gatsby-node.js` file, as per [this issue](https://github.com/gatsbyjs/gatsby/issues/564):
2020-11-08 18:56:48 -08:00
2020-07-27 21:32:51 -07:00
```
exports.onCreateWebpackConfig = ({ actions }) => {
actions.setWebpackConfig({
node: {
fs: 'empty'
}
})
}
```
This is because the new IPFS class in bch-js uses the fs library for uploading files, which is not supported by Gatsby.
2020-11-08 18:56:48 -08:00
We also provide [minimal-slp-wallet-web](https://www.npmjs.com/package/minimal-slp-wallet-web) as a basic Bitcoin Cash wallet with SLP support, for front end projects. bch-js is encapsulated inside the instantiation of the library Class.
2020-07-27 21:32:51 -07:00
## Features
- [ECMAScript 2017 standard JavaScript](https://en.wikipedia.org/wiki/ECMAScript#8th_Edition_-_ECMAScript_2017) used instead of TypeScript. Works
2020-11-08 18:56:48 -08:00
natively with node.js v10 or higher.
2020-07-27 21:32:51 -07:00
- Full SLP tokens support: bch-js has full support for all SLP token functionality, including send, mint, and genesis transactions. It also fully support all aspects of [non-fugible tokans (NFTs)](https://www.youtube.com/watch?v=vvlpYUx6HRs).
- [Semantic Release](https://github.com/semantic-release/semantic-release) for
2020-11-08 18:56:48 -08:00
continuous delivery using semantic versioning.
2020-07-27 21:32:51 -07:00
- [Greenkeeper](https://greenkeeper.io/) automatic dependency management for
2020-11-08 18:56:48 -08:00
automatically maintaining the latest, most secure dependencies.
2020-07-27 21:32:51 -07:00
- [IPFS uploads](https://ipfs.io) of all files and dependencies, to backup
2020-11-08 18:56:48 -08:00
dependencies in case they are ever inaccessible from GitHub or npm.
2020-07-27 21:32:51 -07:00
## Documentation:
Full documentation for this library can be found here:
2020-11-08 18:56:48 -08:00
- [Documentation](https://bchjs.fullstack.cash/)
2020-07-27 21:32:51 -07:00
bch-js uses [APIDOC](http://apidocjs.com/) so that documentation and working code
live in the same repository. To generate the documentation:
2020-11-08 18:56:48 -08:00
2020-07-27 21:32:51 -07:00
- `npm run docs`
- Open the generated `docs/index.html` file in a web browser.
## Support
2020-11-08 18:56:48 -08:00
2020-07-27 21:32:51 -07:00
Have questions? Need help? Join our community support
[Telegram channel](https://t.me/bch_js_toolkit)
## IPFS Releases
I will periodically publish IPFS releases of this repository, including all
dependencies in the `node_modules` folder. This ensures working copies of this
repository can be retrieved in case there is any drift in dependency files, or
if dependencies are pulled from npm or GitHub.
- Initial fork on 5/9/2019:
2020-11-08 18:56:48 -08:00
2020-07-27 21:32:51 -07:00
- without node_modules folder: QmQFHfbBQdEHfhtiRLbXtX1NcgnfL45hZb7TbQimTXAuzG (4 MB)
- with node_modules folder: QmXq9Ds6Qdkg9xbRhcF8pay9KabA6QN2y7bx3wvSqiXifk (107 MB)
- v1.0.0 - refactored to pure JavaScript:
- without node_modules folder: QmNjFsiTZRMAUa9rZpXqZqivv9JLaNicwLSPHjyLB7PVDk (1 MB)
- with node_modules folder: Qma9ScApwBtuL7dpdSk7jpBFTxbqRdiR921WjyP75SU7bT (100 MB)
## License
2020-11-08 18:56:48 -08:00
2020-07-27 21:32:51 -07:00
[MIT](LICENSE.md)