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