@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
16 lines • 533 B
JavaScript
import { BaseError } from "./base.js";
export class InvalidSignerTypeError extends 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"
});
}
}
//# sourceMappingURL=signer.js.map