We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6f78541 commit 959d8edCopy full SHA for 959d8ed
package.json
@@ -1,7 +1,7 @@
1
{
2
"name": "@across-protocol/sdk",
3
"author": "UMA Team",
4
- "version": "4.3.99",
+ "version": "4.3.100",
5
"license": "AGPL-3.0",
6
"homepage": "https://docs.across.to/reference/sdk",
7
"files": [
src/utils/AddressUtils.ts
@@ -212,8 +212,8 @@ export abstract class Address {
212
}
213
214
// Checks if the other address is equivalent to this address.
215
- eq(other: Address): boolean {
216
- return this.toString() === other.toString();
+ eq(other?: Address): boolean {
+ return this.toString() === other?.toString();
217
218
219
// Compares Addresses by first converting them to BigNumbers.
0 commit comments