# bitcore-mnemonic

> BIP39 Mnemonics implemented for Bitcore.

Latest version **10.10.7** (published 2025-07-21) · MIT license · 0 weekly downloads

## Install

```sh
npm install bitcore-mnemonic
pnpm add bitcore-mnemonic
yarn add bitcore-mnemonic
bun add bitcore-mnemonic
```

## Health

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

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: stale.

## Facts

| | |
|---|---|
| Version | 10.10.7 |
| Published | 2025-07-21 |
| First published | 2015-01-09 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 2 |
| Unpacked size | 460.5 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 157 |
| Author | BitPay |
| Maintainers | gasteve, nitsujlangston, unusualbob |
| Keywords | bitcoin, bitcore, mnemonic, crypto, cryptography, encryption |

## Links

- npm: https://www.npmjs.com/package/bitcore-mnemonic
- Repository: https://github.com/bitpay/bitcore-mnemonic
- Homepage: https://github.com/bitpay/bitcore-mnemonic#readme
- Issues: https://github.com/bitpay/bitcore-mnemonic/issues
- npm.io page: https://npm.io/package/bitcore-mnemonic

## Dependencies (2)

- [unorm](https://npm.io/package/unorm.md) ^1.4.1
- [bitcore-lib](https://npm.io/package/bitcore-lib.md) ^10.10.7

## 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.7 (latest) — 2025-07-21
- 11.5.1 (beta) — 2026-01-28
- 11.4.5 — 2025-12-04
- 11.4.1 — 2025-11-18
- 11.4.0 — 2025-10-30
- 11.3.7 — 2025-10-23
- 11.3.6 — 2025-10-10
- 11.3.2 — 2025-09-10
- 11.2.0 — 2025-07-25
- 11.1.7 — 2025-07-21
- 10.10.5 — 2025-07-03
- 10.10.4 — 2025-07-01
- 11.1.4 — 2025-07-01
- 11.1.1 — 2025-06-24
- 10.9.4 — 2025-06-11
- … 119 more at https://npm.io/package/bitcore-mnemonic/versions

## README

# Bitcore Mnemonics

BIP39 Mnemonics for bitcore

[![NPM Package](https://img.shields.io/npm/v/bitcore-mnemonic.svg?style=flat-square)](https://www.npmjs.org/package/bitcore-mnemonic)
[![Build Status](https://img.shields.io/travis/bitpay/bitcore-mnemonic.svg?branch=master&style=flat-square)](https://travis-ci.org/bitpay/bitcore-mnemonic)
[![Coverage Status](https://img.shields.io/coveralls/bitpay/bitcore-mnemonic.svg?style=flat-square)](https://coveralls.io/r/bitpay/bitcore-mnemonic)

**A module for [bitcore](https://github.com/bitpay/bitcore) that implements [Mnemonic code for generating deterministic keys](https://github.com/bitcoin/bips/blob/master/bip-0039.mediawiki).**

## Getting Started

This library is distributed in both the npm packaging systems.

```sh
npm install bitcore-lib  #this to install bitcore-lib since it is a peerDependecy
npm install bitcore-mnemonic
```

There are many examples of how to use it on the developer guide [section for mnemonic](./docs/index.md). For example, the following code would generate a new random mnemonic code and convert it to a `HDPrivateKey`.

```javascript
var Mnemonic = require('bitcore-mnemonic');
var code = new Mnemonic(Mnemonic.Words.SPANISH);
code.toString(); // natal hada sutil año sólido papel jamón combate aula flota ver esfera...
var xpriv = code.toHDPrivateKey();
```

## 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-mnemonic · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
