UNPKG

@hdwallet/core

Version:

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

20 lines 670 B
"use strict"; // SPDX-License-Identifier: MIT Object.defineProperty(exports, "__esModule", { value: true }); exports.BIP86Derivation = void 0; const bip44_1 = require("./bip44"); const cryptocurrencies_1 = require("../cryptocurrencies"); class BIP86Derivation extends bip44_1.BIP44Derivation { purpose = [86, true]; constructor(options = { coinType: cryptocurrencies_1.Bitcoin.COIN_TYPE, account: 0, change: bip44_1.CHANGES.EXTERNAL_CHAIN, address: 0 }) { super(options); this.updateDerivation(); } static getName() { return 'BIP86'; } } exports.BIP86Derivation = BIP86Derivation; //# sourceMappingURL=bip86.js.map