UNPKG

chaingate

Version:

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

11 lines 265 B
import { HDKey } from '@scure/bip32'; export class ExtendedPublicKey { get raw() { return HDKey.fromExtendedKey(this.xpub).publicKey; } xpub; constructor(xpub) { this.xpub = xpub; } } //# sourceMappingURL=ExtendedPublicKey.js.map