From 940c41364a518292012d61f53b2c580e8cca1903 Mon Sep 17 00:00:00 2001 From: Aleksa Colovic Date: Thu, 11 Dec 2025 15:48:23 +0100 Subject: [PATCH 1/2] fix: Address Comparing function --- src/utils/AddressUtils.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/utils/AddressUtils.ts b/src/utils/AddressUtils.ts index 49b4d5f89..457d3bd49 100644 --- a/src/utils/AddressUtils.ts +++ b/src/utils/AddressUtils.ts @@ -212,8 +212,8 @@ export abstract class Address { } // Checks if the other address is equivalent to this address. - eq(other: Address): boolean { - return this.toString() === other.toString(); + eq(other?: Address): boolean { + return this.toString() === other?.toString(); } // Compares Addresses by first converting them to BigNumbers. From 8c99ca9e7cb60145236b988cd47731644f46b9a0 Mon Sep 17 00:00:00 2001 From: Aleksa Colovic Date: Mon, 15 Dec 2025 10:32:19 +0100 Subject: [PATCH 2/2] bump version --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index fe83638fe..ca79a1565 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "@across-protocol/sdk", "author": "UMA Team", - "version": "4.3.100", + "version": "4.3.101", "license": "AGPL-3.0", "homepage": "https://docs.across.to/reference/sdk", "files": [