scure-bip32 icon indicating copy to clipboard operation
scure-bip32 copied to clipboard

Secure, audited & minimal implementation of BIP32 hierarchical deterministic (HD) wallets.

Results 3 scure-bip32 issues
Sort by recently updated
recently updated
newest added

Is it possible to use this lib for Litecoin? For HDKey class I see VERSION property but it changes nothing. ```typescript import { generateMnemonic as _generateMnemonic, mnemonicToSeed } from '@scure/bip39';...

Hi, I'm implementing [LNURL LUD-05](https://github.com/fiatjaf/lnurl-rfc/blob/luds/05.md) in a react-native mobile app I have started my code based on [this codepen](https://codepen.io/legalizemath/pen/WNzXzrJ) and I adapted it using scure-bip32/39 (version 1.1.0 for both) Using...

According to the documentation `HARDENED_OFFSET` should be a static property of `HDKey` class: https://github.com/paulmillr/scure-bip32/blob/2274f2f42c5382dd08aab747ba7c8686322e706d/README.md?plain=1#L56 But `HARDENED_OFFSET` is exported as named export https://github.com/paulmillr/scure-bip32/blob/2274f2f42c5382dd08aab747ba7c8686322e706d/index.ts#L26