UNPKG

@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

22 lines (19 loc) 561 B
import { HederaAgentKit } from 'hedera-agent-kit'; import type { BasePluginContext } from 'hedera-agent-kit'; import { HCS10Builder } from '../../builders/hcs10/hcs10-builder'; /** * Parameters for HCS10 transaction tools */ export interface HCS10TransactionToolParams { hederaKit: HederaAgentKit; hcs10Builder: HCS10Builder; logger?: BasePluginContext['logger']; } /** * Parameters for HCS10 query tools */ export interface HCS10QueryToolParams { hederaKit: HederaAgentKit; hcs10Builder: HCS10Builder; logger?: BasePluginContext['logger']; }