@iqai/mcp-near-agent
Version:
Mcp server for Near
15 lines (14 loc) • 413 B
TypeScript
import z from "zod";
import { Tool } from "../types.js";
declare const stopWatchingSchema: z.ZodObject<{
contractId: z.ZodString;
eventName: z.ZodString;
}, "strip", z.ZodTypeAny, {
contractId: string;
eventName: string;
}, {
contractId: string;
eventName: string;
}>;
export declare const stopWatchingTool: Tool<Record<string, unknown> | undefined, typeof stopWatchingSchema>;
export {};