UNPKG

@gluneau/hive-mcp-server

Version:

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

11 lines (10 loc) 337 B
import { Response } from '../utils/response'; export declare function signMessage(params: { message: string; key_type: 'posting' | 'active' | 'memo' | 'owner'; }): Promise<Response>; export declare function verifySignature(params: { message_hash: string; signature: string; public_key: string; }): Promise<Response>;