@kagamidigital/salt-sdk-mirror
    Preparing search index...

    Type Alias ContractParamRestrictionOperator

    ContractParamRestrictionOperator: "eq" | "neq" | "lt" | "lte" | "gt" | "gte"

    Comparison operator for a ContractParamRestriction. Numeric Solidity types (uint*/int*) support all six operators; address, bool, bytes* and string parameters support only eq and neq.

    Type Declaration

    • "eq"

      The argument must equal value.

    • "neq"

      The argument must not equal value.

    • "lt"

      The argument must be less than value (numeric parameters only).

    • "lte"

      The argument must be less than or equal to value (numeric parameters only).

    • "gt"

      The argument must be greater than value (numeric parameters only).

    • "gte"

      The argument must be greater than or equal to value (numeric parameters only).