@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
21 lines (19 loc) • 549 B
text/typescript
import { HederaAgentKit } from 'hedera-agent-kit';
import type { BasePluginContext } from 'hedera-agent-kit';
import { HCS6Builder } from '../../builders/hcs6/hcs6-builder';
/**
* Parameters for HCS6 transaction tools
*/
export interface HCS6TransactionToolParams {
hederaKit: HederaAgentKit;
hcs6Builder: HCS6Builder;
logger?: BasePluginContext['logger'];
}
/**
* Parameters for HCS6 query tools
*/
export interface HCS6QueryToolParams {
hederaKit: HederaAgentKit;
hcs6Builder: HCS6Builder;
logger?: BasePluginContext['logger'];
}