@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
16 lines (15 loc) • 680 B
TypeScript
import { z } from 'zod';
import { BaseHCS10QueryTool } from './base-hcs10-tools';
import { HCS10QueryToolParams } from './hcs10-tool-params';
declare const ListUnapprovedConnectionRequestsZodSchema: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
/**
* Lists all connection requests that are not fully established
*/
export declare class ListUnapprovedConnectionRequestsTool extends BaseHCS10QueryTool<typeof ListUnapprovedConnectionRequestsZodSchema> {
name: string;
description: string;
specificInputSchema: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
constructor(params: HCS10QueryToolParams);
protected executeQuery(): Promise<unknown>;
}
export {};