import type { Chain, Client, Hex, Transport } from "viem"; import type { BundlerRpcSchema } from "../../client/decorators/bundlerClient"; import type { UserOperationResponse } from "../../types"; export const getUserOperationByHash = async < TClient extends Client, >( client: TClient, args: { hash: Hex; }, ): Promise => { return client.request({ method: "eth_getUserOperationByHash", params: [args.hash], }); };