@mavrykdynamics/taquito
Version:
High level functionality that builds upon the other packages in the Mavryk Typescript Library Suite.
18 lines (17 loc) • 695 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.UnconfiguredSignerError = void 0;
const taquito_core_1 = require("@mavrykdynamics/taquito-core");
/**
* @category Error
* @description Error that indicates no signer has been configured in the MavrykToolkit instance
*/
class UnconfiguredSignerError extends taquito_core_1.MavrykToolkitConfigError {
constructor() {
super();
this.name = 'UnconfiguredSignerError';
this.message =
'No signer has been configured. Please configure one by calling setProvider({signer}) on your MavrykToolkit instance.';
}
}
exports.UnconfiguredSignerError = UnconfiguredSignerError;