Variable payGaslessInputSchemaConst
payGaslessInputSchema: ZodObject<
{
to: ZodString;
amount: ZodString;
token: ZodEnum<["USDC", "USDT", "USDT0"]>;
network: ZodEnum<
["ethereum", "base", "arbitrum", "optimism", "polygon", "avalanche"],
>;
confirmed: ZodOptional<ZodBoolean>;
},
"strip",
ZodTypeAny,
{
to?: string;
amount?: string;
token?: "USDT"
| "USDC"
| "USDT0";
network?:
| "base"
| "ethereum"
| "arbitrum"
| "optimism"
| "polygon"
| "avalanche";
confirmed?: boolean;
},
{
to?: string;
amount?: string;
token?: "USDT"
| "USDC"
| "USDT0";
network?:
| "base"
| "ethereum"
| "arbitrum"
| "optimism"
| "polygon"
| "avalanche";
confirmed?: boolean;
},
> = ...
Input schema for payGasless tool