UNPKG

@gluneau/hive-mcp-server

Version:

An MCP server that enables AI assistants to interact with the Hive blockchain

31 lines (30 loc) 725 B
import { z } from 'zod'; export declare const voteOnPostSchema: z.ZodObject<{ author: z.ZodString; permlink: z.ZodString; weight: z.ZodNumber; }, "strip", z.ZodTypeAny, { weight: number; author: string; permlink: string; }, { weight: number; author: string; permlink: string; }>; export declare const sendTokenSchema: z.ZodObject<{ to: z.ZodString; amount: z.ZodNumber; currency: z.ZodEnum<["HIVE", "HBD"]>; memo: z.ZodOptional<z.ZodString>; }, "strip", z.ZodTypeAny, { to: string; amount: number; currency: "HIVE" | "HBD"; memo?: string | undefined; }, { to: string; amount: number; currency: "HIVE" | "HBD"; memo?: string | undefined; }>;