Variable EthValueCriterionSchemaConst

EthValueCriterionSchema: ZodObject<
    {
        ethValue: ZodString;
        operator: ZodEnum<[">", ">=", "<", "<=", "=="]>;
        type: ZodLiteral<"ethValue">;
    },
    "strip",
    ZodTypeAny,
    {
        ethValue: string;
        operator: ">"
        | ">="
        | "<"
        | "<="
        | "==";
        type: "ethValue";
    },
    {
        ethValue: string;
        operator: ">"
        | ">="
        | "<"
        | "<="
        | "==";
        type: "ethValue";
    },
> = ...

Schema for ETH value criterions