@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
24 lines (22 loc) • 774 B
text/typescript
import { HederaAgentKit } from 'hedera-agent-kit';
import type { BasePluginContext } from 'hedera-agent-kit';
import { InscriberBuilder } from '../../builders/inscriber/inscriber-builder';
import type { ContentResolverInterface } from '../../types/content-resolver';
/**
* Parameters for Inscriber transaction tools
*/
export interface InscriberTransactionToolParams {
hederaKit: HederaAgentKit;
inscriberBuilder: InscriberBuilder;
logger?: BasePluginContext['logger'];
contentResolver?: ContentResolverInterface;
}
/**
* Parameters for Inscriber query tools
*/
export interface InscriberQueryToolParams {
hederaKit: HederaAgentKit;
inscriberBuilder: InscriberBuilder;
logger?: BasePluginContext['logger'];
contentResolver?: ContentResolverInterface;
}