Package Exports
- bip32grs
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (bip32grs) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
bip32
A BIP32 compatible library written in TypeScript with transpiled JavaScript committed to git.
Example
TypeScript
import * as bip32 from 'bip32grs';
import { BIP32Interface } from 'bip32grs';
let node: BIP32Interface = bip32.fromBase58('xprv9s21ZrQH143K3XpLJrX92hM28H2o1CgVi6HXCWGBXtMkHxSkpxiFcnmzjy5qNyi3QUfSVXXapRT8St3wyLbWux9JysZZgvmvQZ75FUqrakP');
let child: BIP32Interface = node.derivePath('m/0/0');
// ...
NodeJS
let bip32 = require('bip32grs')
let node = bip32.fromBase58('xprv9s21ZrQH143K3XpLJrX92hM28H2o1CgVi6HXCWGBXtMkHxSkpxiFcnmzjy5qNyi3QUfSVXXapRT8St3wyLbWux9JysZZgvmvQZ75FUqrakP')
let child = node.derivePath('m/0/0')
// ...
LICENSE MIT
A derivation (and extraction for modularity) of the HDWallet
/HDNode
written and tested by bitcoinjs-lib contributors since 2014.