Variable EvmNetworkCriterionSchemaConst

EvmNetworkCriterionSchema: ZodObject<
    {
        networks: ZodArray<ZodEnum<["base", "base-sepolia"]>, "many">;
        operator: ZodEnum<["in", "not in"]>;
        type: ZodLiteral<"evmNetwork">;
    },
    "strip",
    ZodTypeAny,
    {
        networks: ("base-sepolia" | "base")[];
        operator: "in" | "not in";
        type: "evmNetwork";
    },
    {
        networks: ("base-sepolia" | "base")[];
        operator: "in" | "not in";
        type: "evmNetwork";
    },
> = ...

Schema for EVM network criterions