@gluneau/hive-mcp-server
Version:
An MCP server that enables AI assistants to interact with the Hive blockchain
13 lines (12 loc) • 320 B
TypeScript
import { Response } from '../utils/response';
export declare function voteOnPost(params: {
author: string;
permlink: string;
weight: number;
}): Promise<Response>;
export declare function sendToken(params: {
to: string;
amount: number;
currency: string;
memo?: string;
}): Promise<Response>;