@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
19 lines (18 loc) • 438 B
TypeScript
import { BaseError as ViemBaseError } from "viem";
type BaseErrorParameters = {
docsPath?: string;
docsSlug?: string;
metaMessages?: string[];
} & ({
cause?: never;
details?: string;
} | {
cause: BaseError | Error;
details?: never;
});
export declare class BaseError extends ViemBaseError {
name: string;
version: string;
constructor(shortMessage: string, args?: BaseErrorParameters);
}
export {};