UNPKG

@gluneau/hive-mcp-server

Version:

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

15 lines (14 loc) 440 B
import { Response } from '../utils/response'; export declare function getAccountInfo(params: { username: string; }): Promise<Response>; export declare function getAccountHistory(params: { username: string; limit: number; operation_filter?: string[] | undefined; }): Promise<Response>; export declare function getVestingDelegations(params: { username: string; limit: number; from?: string; }): Promise<Response>;