The author of this package cannot be held responsible for any loss of money or any malintentioned usage forms of this package. Please use this package with caution.
NEM HD Wallets generator to generate hyper-deterministic wallets for the Catapult (NEM2) platform.
This is a PoC to validate the proposed NIP6 Multi-Account Hierarchy for Deterministic Wallets. When stable, the repository will be moved to the nemtech organization.
npm install nem2-hd-wallets
import {MnemonicPassPhrase} from 'nem2-hd-wallets';
// random 24-words mnemonic
const mnemonic = MnemonicPassPhrase.createRandom();
// random 12-words mnemonic
const mnemonic = MnemonicPassPhrase.createRandom('english', 128);
// random 24-words mnemonic with french wordlist
const mnemonic = MnemonicPassPhrase.createRandom('french');
// random 24-words mnemonic with japanese wordlist
const mnemonic = MnemonicPassPhrase.createRandom('japanese');
import {MnemonicPassPhrase} from 'nem2-hd-wallets';
// Example 1: generate password-protected seed for random pass phrase
const mnemonic = MnemonicPassPhrase.createRandom();
const secureSeedHex = mnemonic.toSeed('your-password');
// Example 2: empty password for password-protected seed
const mnemonic = MnemonicPassPhrase.createRandom();
const secureSeedHex = mnemonic.toSeed(); // omit password means empty password: ''
import {MnemonicPassPhrase} from 'nem2-hd-wallets';
// Example 1: generate BIP32 master seed for random pass phrase
const mnemonic = MnemonicPassPhrase.createRandom();
const bip32Seed = mnemonic.toSeed();
// Example 2: generate BIP32 master seed for known pass phrase
const words = 'alpha pattern real admit vacuum wall ready code '
+ 'correct program depend valid focus basket whisper firm '
+ 'tray fit rally day dance demise engine mango';
const mnemonic = new MnemonicPassPhrase(words);
// the following seed can be used with `ExtendedKey.createFromSeed()`
const bip32Seed = mnemonic.toEntropy();
import {MnemonicPassPhrase, ExtendedKey} from 'nem2-hd-wallets';
// using BIP39 mnemonic pass phrase for BIP32 extended keys generation
const mnemonic = MnemonicPassPhrase.createRandom();
const bip32Seed = mnemonic.toEntropy();
const bip32Node = ExtendedKey.createFromSeed(bip32Seed);
// the extended private key (never share, base of private keys tree)
const xprvKey = bip32Node.toBase58();
import {MnemonicPassPhrase, ExtendedKey} from 'nem2-hd-wallets';
// using BIP39 mnemonic pass phrase for BIP32 extended keys generation
const mnemonic = MnemonicPassPhrase.createRandom();
const bip32Seed = mnemonic.toEntropy();
const bip32Node = ExtendedKey.createFromSeed(bip32Seed);
// the extended public key (base of public keys tree)
const xpubKey = bip32Node.getPublicNode().toBase58();
import {MnemonicPassPhrase, ExtendedKey} from 'nem2-hd-wallets';
// using BIP39 mnemonic pass phrase for BIP32 extended keys generation
const mnemonic = MnemonicPassPhrase.createRandom();
const bip32Seed = mnemonic.toEntropy();
const bip32Node = ExtendedKey.createFromSeed(bip32Seed);
// derive BIP44 tree root
const bip44Root = bip32Node.derivePath("m/44'");
// the extended private key (never share, base of private keys tree)
const xprvKey = bip32Node.toBase58();
// the extended public key (base of public keys tree)
const xpubKey = bip32Node.getPublicNode().toBase58();
import {MnemonicPassPhrase, ExtendedKey} from 'nem2-hd-wallets';
// using BIP39 mnemonic pass phrase for BIP32 extended keys generation
const mnemonic = MnemonicPassPhrase.createRandom();
const bip32Seed = mnemonic.toEntropy();
const bip32Node = ExtendedKey.createFromSeed(bip32Seed);
// derive default wallet path "m/44'/43'/0'/0/0"
const defaultWallet = bip32Node.derivePath("m/44'/43'/0'/0'/0'");
// the extended private key (never share, base of private keys tree)
const xprvKey = defaultWallet.toBase58();
// the extended public key (default wallet base of public keys tree)
const xpubKey = defaultWallet.getPublicNode().toBase58();
import {MnemonicPassPhrase, ExtendedKey} from 'nem2-hd-wallets';
// using BIP39 mnemonic pass phrase for BIP32 extended keys generation
const mnemonic = MnemonicPassPhrase.createRandom();
const bip32Seed = mnemonic.toEntropy();
const bip32Node = ExtendedKey.createFromSeed(bip32Seed);
// derive default wallet path "m/44'/43'/1'/0/0"
const secondWallet = bip32Node.derivePath("m/44'/43'/1'/0'/0'"); // second hardened account
// the extended private key (never share, base of private keys tree)
const xprvKey = secondWallet.toBase58();
// the extended public key (default wallet base of public keys tree)
const xpubKey = secondWallet.getPublicNode().toBase58();
const xkey = ExtendedKey.createFromSeed('000102030405060708090a0b0c0d0e0f', Network.CATAPULT);
const wallet = new Wallet(xkey);
// get master account
const masterAccount = wallet.getAccount();
// get DEFAULT ACCOUNT
const defaultAccount = wallet.getChildAccount();
// derive specific child path
const childAccount = wallet.getChildAccount('m/44\'/43\'/0\'/0\'/0\'');
// get read-only wallet
const readOnlyWallet = new Wallet(xkey.getPublicNode());
const readOnlyAccount = readOnlyWallet.getPublicAccount();
// get read-only DEFAULT ACCOUNT
const readOnlyDefaultAccount = readOnlyWallet.getChildPublicAccount();
const xkey = ExtendedKey.createFromSeed('000102030405060708090a0b0c0d0e0f', Network.CATAPULT_PUBLIC);
const wallet = new Wallet(xkey);
// get master account
const masterAccount = wallet.getAccount();
// get DEFAULT ACCOUNT
const defaultAccount = wallet.getChildAccount();
// derive specific child path
const childAccount = wallet.getChildAccount('m/44\'/43\'/0\'/0\'/0\'');
// get read-only wallet
const readOnlyWallet = new Wallet(xkey.getPublicNode());
const readOnlyAccount = readOnlyWallet.getPublicAccount();
// get read-only DEFAULT ACCOUNT
const readOnlyDefaultAccount = readOnlyWallet.getChildPublicAccount();
const xkey = ExtendedKey.createFromSeed('000102030405060708090a0b0c0d0e0f', Network.CATAPULT_PUBLIC);
const wallet = new Wallet(xkey);
// derive specific child path
const childAccount = wallet.getChildAccount('m/44\'/43\'/0\'/0\'/0\'');
// create a transfer object
const transfer = TransferTransaction.create(/*...*/);
// sign the transaction with derived account
const signedTx = childAccount.sign(transfer, generationHash);
Licensed under the BSD-2 License.