UNPKG

bitpay-sdk

Version:

Complete version of the NodeJS library for the new cryptographically secure BitPay API

18 lines 393 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.PrivateKey = void 0; class PrivateKey { constructor(value) { value = value.replace('"', ''); this.value = value; } /** * * @returns string */ getValue() { return this.value; } } exports.PrivateKey = PrivateKey; //# sourceMappingURL=PrivateKey.js.map