Variable EvmAddressCriterionSchemaConst
EvmAddressCriterionSchema: ZodObject<
{
addresses: ZodArray<
ZodEffects<ZodString, `0x${string}`, string>,
"many",
>;
operator: ZodEnum<["in", "not in"]>;
type: ZodLiteral<"evmAddress">;
},
"strip",
ZodTypeAny,
{
addresses: `0x${string}`[];
operator: "in"
| "not in";
type: "evmAddress";
},
{ addresses: string[]; operator: "in"
| "not in"; type: "evmAddress" },
> = ...
Schema for EVM address criterions