Variable EvmDataParameterConditionSchemaConst

EvmDataParameterConditionSchema: ZodObject<
    {
        name: ZodUnion<[ZodString, ZodString]>;
        operator: ZodEnum<[">", ">=", "<", "<=", "=="]>;
        value: ZodString;
    },
    "strip",
    ZodTypeAny,
    { name: string; operator: ">"
    | ">="
    | "<"
    | "<="
    | "=="; value: string },
    { name: string; operator: ">" | ">=" | "<" | "<=" | "=="; value: string },
> = ...

A single condition to apply against encoded arguments in the transaction's data field.