@alchemy/aa-core
Version:
viem based SDK that enables interactions with ERC-4337 Smart Accounts. ABIs are based off the definitions generated in @account-abstraction/contracts
20 lines • 712 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.InvalidSignerTypeError = void 0;
const base_js_1 = require("./base.js");
class InvalidSignerTypeError extends base_js_1.BaseError {
constructor(signerType) {
super([
"Invalid signer type parameter passed to SmartAccountSigner.",
signerType ?? "A signerType must be provided.",
].join("\n"));
Object.defineProperty(this, "name", {
enumerable: true,
configurable: true,
writable: true,
value: "InvalidSignerTypeError"
});
}
}
exports.InvalidSignerTypeError = InvalidSignerTypeError;
//# sourceMappingURL=signer.js.map