import type { Address, Chain, Client, Transport } from "viem"; import type { BundlerRpcSchema } from "../../client/decorators/bundlerClient"; export const getSupportedEntryPoints = async < TClient extends Client, >( client: TClient, ): Promise => { return client.request({ method: "eth_supportedEntryPoints", params: [], }); };