UNPKG

@biconomy/abstractjs

Version:

SDK for Biconomy integration with support for account abstraction, smart accounts, ERC-4337.

17 lines 540 B
import { BaseError } from "viem"; /** * @ignore */ export class AccountNotFoundError extends BaseError { constructor({ docsPath } = {}) { super([ "Could not find an Account to execute with this Action.", "Please provide an Account with the `account` argument on the Action, or by supplying an `account` to the Client." ].join("\n"), { docsPath, docsSlug: "account", name: "AccountNotFoundError" }); } } //# sourceMappingURL=AccountNotFound.js.map