Skip to content

Commit

Permalink
added neq
Browse files Browse the repository at this point in the history
  • Loading branch information
CluEleSsUK committed Oct 28, 2024
1 parent 92dade7 commit 3096613
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/conditions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export type ContractFieldCondition = {
value: BytesLike
}

export type Operator = "eq" | "gt" | "gte" | "lt" | "lte"
export type Operator = "eq" | "neq" | "gt" | "gte" | "lt" | "lte"

export function encodeConditions(conditions: ConditionExpression): string {
return JSON.stringify(conditions, (key, value) => {
Expand Down

0 comments on commit 3096613

Please sign in to comment.