/** * Wraps a request body in the OpenRPC format. * * @param body - The request body to wrap * @param methodName - The OpenRPC method name * @returns The wrapped request body in OpenRPC format */ export declare function wrapOpenRPCRequest(body: unknown, methodName: string): { jsonrpc: string; method: string; params: unknown[]; id: number; }; //# sourceMappingURL=wrapOpenRPCRequest.d.ts.map