Skip to content

Groestlcoin/bip32grs

This branch is 37 commits ahead of, 16 commits behind bitcoinjs/bip32:master.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

b2676e6 · Jan 27, 2024
Mar 10, 2022
Jan 26, 2024
Jan 25, 2024
Jan 26, 2024
Jan 21, 2023
May 1, 2018
Mar 7, 2019
Mar 7, 2019
Mar 10, 2022
Aug 10, 2018
May 23, 2022
Jan 27, 2024
Jan 27, 2024
Mar 7, 2019
Mar 7, 2019

Repository files navigation

bip32grs

A BIP32 compatible library written in TypeScript with transpiled JavaScript committed to git.

Example

TypeScript

import BIP32Factory from 'bip32grs';
import * as ecc from 'tiny-secp256k1';
import { BIP32Interface } from 'bip32grs';
// You must wrap a tiny-secp256k1 compatible implementation
const bip32 = BIP32Factory(ecc);

const node: BIP32Interface = bip32.fromBase58('xprv9s21ZrQH143K3QTDL4LXw2F7HEK3wJUD2nW2nRk4stbPy6cq3jPPqjiChkVvvNKmPGJxWUtg6LnF5kejMRNNU3TGtRBeJgk33yuGBsoWepH');

const child: BIP32Interface = node.derivePath('m/17/0');
// ...

NodeJS

const ecc = require('tiny-secp256k1')
const { BIP32Factory } = require('bip32grs')
// You must wrap a tiny-secp256k1 compatible implementation
const bip32 = BIP32Factory(ecc)

const node = bip32.fromBase58('xprv9s21ZrQH143K3QTDL4LXw2F7HEK3wJUD2nW2nRk4stbPy6cq3jPPqjiChkVvvNKmPGJxWUtg6LnF5kejMRNNU3TGtRBeJgk33yuGBsoWepH')

const child = node.derivePath('m/17/0')

LICENSE MIT

A derivation (and extraction for modularity) of the HDWallet/HDNode written and tested by groestlcoinjs-lib contributors since 2014.

About

A BIP32 compatible library.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 58.5%
  • TypeScript 41.5%