UNPKG

@hashgraphonline/hedera-agent-kit

Version:

Build LLM-powered applications that interact with the Hedera Network. Create conversational agents that can understand user requests in natural language and execute Hedera transactions, or build backend systems that leverage AI for on-chain operations.

28 lines (26 loc) 988 B
import { z } from 'zod'; import { BaseHederaTransactionTool, BaseHederaTransactionToolParams } from '../common/base-hedera-transaction-tool'; import { BaseServiceBuilder } from '../../../builders/base-service-builder'; declare const UnpauseTokenZodSchemaCore: z.ZodObject<{ tokenId: z.ZodString; }, "strip", z.ZodTypeAny, { tokenId: string; }, { tokenId: string; }>; export declare class HederaUnpauseTokenTool extends BaseHederaTransactionTool<typeof UnpauseTokenZodSchemaCore> { name: string; description: string; specificInputSchema: z.ZodObject<{ tokenId: z.ZodString; }, "strip", z.ZodTypeAny, { tokenId: string; }, { tokenId: string; }>; namespace: string; constructor(params: BaseHederaTransactionToolParams); protected getServiceBuilder(): BaseServiceBuilder; protected callBuilderMethod(builder: BaseServiceBuilder, specificArgs: z.infer<typeof UnpauseTokenZodSchemaCore>): Promise<void>; } export {};