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.

46 lines (44 loc) 1.85 kB
import { z } from 'zod'; import { BaseHederaTransactionTool, BaseHederaTransactionToolParams } from '../common/base-hedera-transaction-tool'; import { BaseServiceBuilder } from '../../../builders/base-service-builder'; declare const WipeTokenAccountZodSchemaCore: z.ZodObject<{ tokenId: z.ZodString; accountId: z.ZodString; amount: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>; serials: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">>; }, "strip", z.ZodTypeAny, { accountId: string; tokenId: string; amount?: string | number | undefined; serials?: (string | number)[] | undefined; }, { accountId: string; tokenId: string; amount?: string | number | undefined; serials?: (string | number)[] | undefined; }>; export declare class HederaWipeTokenAccountTool extends BaseHederaTransactionTool<typeof WipeTokenAccountZodSchemaCore> { name: string; description: string; specificInputSchema: z.ZodObject<{ tokenId: z.ZodString; accountId: z.ZodString; amount: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>; serials: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">>; }, "strip", z.ZodTypeAny, { accountId: string; tokenId: string; amount?: string | number | undefined; serials?: (string | number)[] | undefined; }, { accountId: string; tokenId: string; amount?: string | number | undefined; serials?: (string | number)[] | undefined; }>; namespace: string; constructor(params: BaseHederaTransactionToolParams); protected getServiceBuilder(): BaseServiceBuilder; protected callBuilderMethod(builder: BaseServiceBuilder, specificArgs: z.infer<typeof WipeTokenAccountZodSchemaCore>): Promise<void>; } export {};