UNPKG

@hdwallet/core

Version:

A complete Hierarchical Deterministic (HD) Wallet generator for 200+ cryptocurrencies, built with TypeScript.

16 lines 492 B
// SPDX-License-Identifier: MIT import { BIP44Derivation, CHANGES } from './bip44'; import { Bitcoin } from '../cryptocurrencies'; export class BIP86Derivation extends BIP44Derivation { purpose = [86, true]; constructor(options = { coinType: Bitcoin.COIN_TYPE, account: 0, change: CHANGES.EXTERNAL_CHAIN, address: 0 }) { super(options); this.updateDerivation(); } static getName() { return 'BIP86'; } } //# sourceMappingURL=bip86.js.map