@hashgraphonline/standards-agent-kit
Version:
A modular SDK for building on-chain autonomous agents using Hashgraph Online Standards, including HCS-10 for agent discovery and communication. https://hol.org
18 lines (17 loc) • 640 B
TypeScript
import { BasePlugin, GenericPluginContext, HederaTool } from 'hedera-agent-kit';
export { HederaGetHbarPriceTool as GetHbarPriceTool } from 'hedera-agent-kit';
/**
* Plugin to provide tools related to Hedera network information, like HBAR price.
* Uses the built-in HederaGetHbarPriceTool from hedera-agent-kit.
*/
export declare class HbarPricePlugin extends BasePlugin<GenericPluginContext> {
id: string;
name: string;
description: string;
version: string;
author: string;
private tools;
initialize(context: GenericPluginContext): Promise<void>;
private initializeTools;
getTools(): HederaTool[];
}