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

11 lines (10 loc) 276 B
import { TransactionReceipt } from '@hashgraph/sdk'; export interface ExecuteResult { success: boolean; receipt?: TransactionReceipt; scheduleId?: string; error?: string; transactionId?: string | undefined; rawResult?: unknown; notes?: string[]; }