UNPKG

chaingate

Version:

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

13 lines 345 B
import { bytesToHex } from '../../InternalUtils/Utils'; export class PublicKey { raw; //readonly uncompressed: Uint8Array get hex() { return bytesToHex(this.raw, false); } constructor(compressed) { this.raw = compressed; //this.uncompressed = uncompressed } } //# sourceMappingURL=PublicKey.js.map