# bitcore-lib-cash

> A pure and powerful JavaScript Bitcoin Cash library.

Latest version **10.10.5** (published 2025-07-03) · MIT license · 0 weekly downloads

## Install

```sh
npm install bitcore-lib-cash
pnpm add bitcore-lib-cash
yarn add bitcore-lib-cash
bun add bitcore-lib-cash
```

## Health

**Score 48/100 (D)** — status: stable.

Positive: has types package; no vulnerabilities; high maintenance score; high quality score.

Warnings: low downloads; no esm support.

Negative: stale.

## Facts

| | |
|---|---|
| Version | 10.10.5 |
| Published | 2025-07-03 |
| First published | 2017-10-27 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | separate (@types/bitcore-lib-cash) |
| Module format | CommonJS |
| Dependencies | 6 |
| Unpacked size | 4.2 MB |
| Known vulnerabilities | 0 (+2 in 2 direct dependencies) |
| Install scripts | no |
| GitHub stars | 4986 |
| Author | BitPay |
| Maintainers | gasteve, nitsujlangston, unusualbob |
| Keywords | bitcoin, transaction, address, p2p, ecies, cryptocurrency, blockchain, payment, bip21, bip32, bip37, bip69, bip70, multisig |

## Links

- npm: https://www.npmjs.com/package/bitcore-lib-cash
- Repository: https://github.com/bitpay/bitcore.git#master
- Homepage: https://github.com/bitpay/bitcore/tree/master#readme
- Issues: https://github.com/bitpay/bitcore/issues
- npm.io page: https://npm.io/package/bitcore-lib-cash

## Dependencies (6)

- [bs58](https://npm.io/package/bs58.md) ^4.0.1
- [bn.js](https://npm.io/package/bn.js.md) =4.11.8
- [lodash](https://npm.io/package/lodash.md) ^4.17.20
- [elliptic](https://npm.io/package/elliptic.md) ^6.5.3
- [inherits](https://npm.io/package/inherits.md) =2.0.1
- [buffer-compare](https://npm.io/package/buffer-compare.md) =1.1.1

## Alternatives

- [@gemini-wallet/core](https://npm.io/package/@gemini-wallet/core.md) — 515.6K weekly downloads
- [utility](https://npm.io/package/utility.md) — 416.6K weekly downloads
- [@primno/dpapi](https://npm.io/package/@primno/dpapi.md) — 7.2K weekly downloads
- [pi-readseek](https://npm.io/package/pi-readseek.md) — 3.7K weekly downloads
- [@emilia-protocol/verify](https://npm.io/package/@emilia-protocol/verify.md) — 1.1K weekly downloads

## Recent versions

- 10.10.5 (latest) — 2025-07-03
- 11.5.1 (beta) — 2026-01-28
- 11.4.5 — 2025-12-04
- 11.4.1 — 2025-11-18
- 11.3.7 — 2025-10-23
- 11.3.6 — 2025-10-10
- 11.3.2 — 2025-09-10
- 11.2.0 — 2025-07-25
- 10.10.4 — 2025-07-01
- 11.1.4 — 2025-07-01
- 11.1.1 — 2025-06-24
- 11.0.1 — 2025-06-11
- 11.0.0 — 2025-06-04
- 10.9.0 — 2025-04-29
- 10.8.10 — 2025-04-09
- … 106 more at https://npm.io/package/bitcore-lib-cash/versions

## README

# Bitcore Lib Cash

[![NPM Package](https://img.shields.io/npm/v/bitcore-lib-cash.svg?style=flat-square)](https://www.npmjs.org/package/bitcore-lib-cash)
[![CircleCI](https://dl.circleci.com/status-badge/img/gh/bitpay/bitcore/tree/master.svg?style=shield&task=bitcore-lib-cash)](https://dl.circleci.com/status-badge/redirect/gh/bitpay/bitcore/tree/master)
[![Coverage Status](https://coveralls.io/repos/github/bitpay/bitcore-lib-cash/badge.svg?branch=master&path=packages/bitcore-lib-cash)](https://coveralls.io/github/bitpay/bitcore-lib-cash)

**A pure and powerful JavaScript Bitcoin *Cash* library.**

## Principles

Bitcoin Cash is another powerful peer-to-peer platform for the next generation of financial technology. The decentralized nature of the Bitcoin network allows for highly resilient bitcoin infrastructure, and the developer community needs reliable, open-source tools to implement bitcoin apps and services.

## Bitcoin Cash changes

Bitcoin cash uses a different `sighash` for transaction signatures. The implementation in bitcore-cash has been tested against the original bitcoin-cash test vectors (see sighash.json in `/test`). `bitcoin-cash` modifications in script evaluation have not been implemented yet.

## Get Started

```sh
npm install bitcore-lib-cash
```

Adding Bitcore Cash to your app's `package.json`:

```json
"dependencies": {
    "bitcore-lib-cash": "=0.18.0",
    ...
}
```

## Documentation

The complete docs are hosted here: [bitcore documentation](https://github.com/bitpay/bitcore). There's also a [bitcore API reference](https://github.com/bitpay/bitcore/blob/master/packages/bitcore-node/docs/api-documentation.md) available generated from the JSDocs of the project, where you'll find low-level details on each bitcore utility.

## Examples

- [Generate a random address](docs/examples.md#generate-a-random-address)
- [Generate a address from a SHA256 hash](docs/examples.md#generate-a-address-from-a-sha256-hash)
- [Import an address via WIF](docs/examples.md#import-an-address-via-wif)
- [Create a Transaction](docs/examples.md#create-a-transaction)
- [Sign a Bitcoin message](docs/examples.md#sign-a-bitcoin-message)
- [Verify a Bitcoin message](docs/examples.md#verify-a-bitcoin-message)
- [Create an OP RETURN transaction](docs/examples.md#create-an-op-return-transaction)
- [Create a 2-of-3 multisig P2SH address](docs/examples.md#create-a-2-of-3-multisig-p2sh-address)
- [Spend from a 2-of-2 multisig P2SH address](docs/examples.md#spend-from-a-2-of-2-multisig-p2sh-address)

## Building the Browser Bundle

To build a bitcore-lib full bundle for the browser:

```sh
gulp browser
```

This will generate files named `bitcore-lib-cash.js` and `bitcore-lib-cash.min.js`.

You can also use our pre-generated files, provided for each release along with a PGP signature by one of the project's maintainers. To get them, checkout the [releases](https://github.com/bitpay/bitcore/blob/master/packages/bitcore-lib-cash/CHANGELOG.md).

## Development & Tests

```sh
git clone https://github.com/bitpay/bitcore-lib-cash
cd bitcore-lib
npm install
```

Run all the tests:

```sh
gulp test
```

You can also run just the Node.js tests with `gulp test:node`, just the browser tests with `gulp test:browser`
or create a test coverage report (you can open `coverage/lcov-report/index.html` to visualize it) with `gulp coverage`.

## Security

We're using Bitcore in production, as are many others, but please use common sense when doing anything related to finances! We take no responsibility for your implementation decisions.

If you find a security issue, please email security@bitpay.com.

## Contributing

See [CONTRIBUTING.md](https://github.com/bitpay/bitcore/blob/master/Contributing.md) on the main bitcore repo for information about how to contribute.

## License

Code released under [the MIT license](https://github.com/bitpay/bitcore/blob/master/LICENSE).

Copyright 2013-2019 BitPay, Inc. Bitcore is a trademark maintained by BitPay, Inc.

---
_Source: https://npm.io/package/bitcore-lib-cash · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
