UNPKG

@mavrykdynamics/taquito

Version:

High level functionality that builds upon the other packages in the Mavryk Typescript Library Suite.

17 lines (16 loc) 620 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.RevealEstimateError = void 0; const taquito_core_1 = require("@mavrykdynamics/taquito-core"); /** * @category Error * @description Error that indicates unable to get public key to estimate reveal operation in Wallet API */ class RevealEstimateError extends taquito_core_1.TaquitoError { constructor() { super(); this.name = 'RevealEstimateError'; this.message = 'Public key is unknown, unable to estimate the reveal operation in Wallet API.'; } } exports.RevealEstimateError = RevealEstimateError;