@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 (21 loc) • 744 B
TypeScript
import { HederaAgentKit, BasePluginContext } from 'hedera-agent-kit';
import { InscriberBuilder } from '../../builders/inscriber/inscriber-builder';
import { 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;
}