Variable getAllBalancesInputSchemaConst
getAllBalancesInputSchema: ZodObject<
{
address: ZodString;
networks: ZodOptional<
ZodArray<
ZodEnum<
[
"ethereum",
"base",
"arbitrum",
"optimism",
"polygon",
"avalanche",
"ink",
"berachain",
"unichain",
],
>,
"many",
>,
>;
},
"strip",
ZodTypeAny,
{
address?: string;
networks?: (
| "base"
| "ethereum"
| "arbitrum"
| "optimism"
| "polygon"
| "avalanche"
| "ink"
| "berachain"
| "unichain"
)[];
},
{
address?: string;
networks?: (
| "base"
| "ethereum"
| "arbitrum"
| "optimism"
| "polygon"
| "avalanche"
| "ink"
| "berachain"
| "unichain"
)[];
},
> = ...
Input schema for getAllBalances tool