@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
15 lines (14 loc) • 446 B
TypeScript
import type { Client } from "viem";
import { BaseError } from "./base.js";
export declare class IncompatibleClientError extends BaseError {
name: string;
constructor(expectedClient: string, method: string, client: Client);
}
export declare class InvalidRpcUrlError extends BaseError {
name: string;
constructor(rpcUrl?: string);
}
export declare class ChainNotFoundError extends BaseError {
name: string;
constructor();
}