🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Book a DemoInstallSign in
Socket

@protontech/bip39

Package Overview
Dependencies
Maintainers
3
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@protontech/bip39

BIP39 JavaScript implementation

1.0.2
latest
Source
npm
Version published
Weekly downloads
352
16.94%
Maintainers
3
Weekly downloads
 
Created
Source

BIP39

JavaScript implementation of Bitcoin BIP39.

Installation

Add the following to dependencies in package.json

"bip39": "github:ProtonMail/bip39#semver:PACKAGE_VERSION",

Example Usage

import { entropyToMnemonic, mnemonicToEntropy, validateMnemonic } from 'bip39';

const entropy = new Uint8Array(16); // Use a CSPRNG to generate the random bytes
// => Uint8Array(16) [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, … ]

const mnemonic = await entropyToMnemonic(entropy);
// => abandon abandon abandon abandon abandon abandon abandon abandon abandon abandon abandon about

const recoveredEntropy = await mnemonicToEntropy(mnemonic);
// => Uint8Array(16) [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, … ]

const isValid = await validateMnemonic(mnemonic);
// => true

API

entropyToMnemonic

Takes Uint8Array entropy and outputs a mnemonic based on the wordlist.

mnemonicToEntropy

Takes a mnemonic and outputs the Uint8Array entropy.

validateMnemonic

Validates a given mnemonic. Returns true if valid and false if invalid.

wordlist

Each function can take a wordlist - a string array of length 2048. If a wordlist is not specified, it will default to English.

FAQs

Package last updated on 01 Feb 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts