@coinbase/agentkit
Version:
Coinbase AgentKit core primitives
31 lines (30 loc) • 751 B
TypeScript
import { z } from "zod";
/**
* Input schema for request faucet funds action.
*/
export declare const RequestFaucetFundsV2Schema: z.ZodObject<{
assetId: z.ZodOptional<z.ZodString>;
}, "strip", z.ZodTypeAny, {
assetId?: string | undefined;
}, {
assetId?: string | undefined;
}>;
/**
* Input schema for swap tokens action.
*/
export declare const SwapSchema: z.ZodObject<{
fromAssetId: z.ZodString;
toAssetId: z.ZodString;
amount: z.ZodString;
network: z.ZodOptional<z.ZodString>;
}, "strip", z.ZodTypeAny, {
amount: string;
fromAssetId: string;
toAssetId: string;
network?: string | undefined;
}, {
amount: string;
fromAssetId: string;
toAssetId: string;
network?: string | undefined;
}>;