parameters.d.ts•1.18 kB
import * as _goat_sdk_core from '@goat-sdk/core';
import { z } from 'zod';
declare const GetTransactionHistoryParameters_base: _goat_sdk_core.ToolParametersStatic<z.ZodObject<{
address: z.ZodString;
limit: z.ZodOptional<z.ZodNumber>;
before: z.ZodOptional<z.ZodString>;
until: z.ZodOptional<z.ZodString>;
types: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
minContextSlot: z.ZodOptional<z.ZodNumber>;
}, "strip", z.ZodTypeAny, {
address: string;
limit?: number | undefined;
before?: string | undefined;
until?: string | undefined;
minContextSlot?: number | undefined;
types?: string[] | undefined;
}, {
address: string;
limit?: number | undefined;
before?: string | undefined;
until?: string | undefined;
minContextSlot?: number | undefined;
types?: string[] | undefined;
}>>;
declare class GetTransactionHistoryParameters extends GetTransactionHistoryParameters_base {
}
declare const NoParameters_base: _goat_sdk_core.ToolParametersStatic<z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>>;
declare class NoParameters extends NoParameters_base {
}
export { GetTransactionHistoryParameters, NoParameters };