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

33 lines (32 loc) 775 B
import { BaseHederaTransactionTool, BaseHederaQueryTool } from "hedera-agent-kit"; class BaseHCS6TransactionTool extends BaseHederaTransactionTool { constructor(params) { super(params); this.namespace = "hcs6"; this.hcs6Builder = params.hcs6Builder; } /** * Override to return the HCS6Builder */ getServiceBuilder() { return this.hcs6Builder; } } class BaseHCS6QueryTool extends BaseHederaQueryTool { constructor(params) { super(params); this.namespace = "hcs6"; this.hcs6Builder = params.hcs6Builder; } /** * Override to return the HCS6Builder */ getServiceBuilder() { return this.hcs6Builder; } } export { BaseHCS6QueryTool, BaseHCS6TransactionTool }; //# sourceMappingURL=standards-agent-kit.es30.js.map