UNPKG

chaingate

Version:

A complete TypeScript library for connecting to and making transactions on different blockchains

11 lines 273 B
import { HDKey } from '@scure/bip32'; export class ExtendedPrivateKey { get raw() { return HDKey.fromExtendedKey(this.xpriv).privateKey; } xpriv; constructor(xpriv) { this.xpriv = xpriv; } } //# sourceMappingURL=ExtendedPrivateKey.js.map