@taquito/taquito
Version:
High level functionality that builds upon the other packages in the Tezos Typescript Library Suite.
17 lines (16 loc) • 589 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.RevealEstimateError = void 0;
const core_1 = require("@taquito/core");
/**
* @category Error
* @description Error that indicates unable to get public key to estimate reveal operation in Wallet API
*/
class RevealEstimateError extends 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;