@gluneau/hive-mcp-server
Version:
An MCP server that enables AI assistants to interact with the Hive blockchain
25 lines (24 loc) • 730 B
TypeScript
import { z } from 'zod';
export declare const signMessageSchema: z.ZodObject<{
message: z.ZodString;
key_type: z.ZodDefault<z.ZodOptional<z.ZodEnum<["posting", "active", "memo", "owner"]>>>;
}, "strip", z.ZodTypeAny, {
message: string;
key_type: "active" | "memo" | "posting" | "owner";
}, {
message: string;
key_type?: "active" | "memo" | "posting" | "owner" | undefined;
}>;
export declare const verifySignatureSchema: z.ZodObject<{
message_hash: z.ZodString;
signature: z.ZodString;
public_key: z.ZodString;
}, "strip", z.ZodTypeAny, {
message_hash: string;
signature: string;
public_key: string;
}, {
message_hash: string;
signature: string;
public_key: string;
}>;