From 30966131edf3fd113274f5a83d2a1d4d499fd19b Mon Sep 17 00:00:00 2001 From: Patrick McClurg Date: Mon, 28 Oct 2024 20:11:42 +0100 Subject: [PATCH] added neq --- src/conditions.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/conditions.ts b/src/conditions.ts index 7d80bac..958fcfd 100644 --- a/src/conditions.ts +++ b/src/conditions.ts @@ -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) => {