Welcome to Proton Mnemonic 👋
Generate BIP39+BIP44 compatible Proton mnemonic phrases
Install
npm install @proton/mnemonic
Usage
import { Mnemonic } from '@proton/mnemonic'
const mnemonic = new Mnemonic()
const { publicKey, privateKey } = mnemonic.keyPairAtIndex(0)
const { publicKey: publicKeyLegacy, privateKey: privateKeyLegacy } = mnemonic.keyPairAtIndex(0, true)
Options
const mnemonic = new Mnemonic({
phrase,
passphrase,
numWords
})
const newFormat = mnemonic.keyPairAtIndex(0)
const oldFormat = mnemonic.keyPairAtIndex(0, true)
Run tests
npm run test
Show your support
Give a ⭐️ if this project helped you!