@dynamic-labs/ethereum-aa 4.12.1 → 4.12.2-preview.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,4 +1,16 @@
1
1
 
2
+ ### [4.12.2-preview.0](https://github.com/dynamic-labs/dynamic-auth/compare/v4.12.1...v4.12.2-preview.0) (2025-04-15)
3
+
4
+
5
+ ### Features
6
+
7
+ * add zksync smart accounts to global wallets ([cbbdec1](https://github.com/dynamic-labs/dynamic-auth/commit/cbbdec1f74fb19dcf739e10fdff5c4cfde28cfc6))
8
+
9
+
10
+ ### Bug Fixes
11
+
12
+ * **bridge:** wrong wallet/chain displaying when switching bridge chains ([#8541](https://github.com/dynamic-labs/dynamic-auth/issues/8541)) ([c9915d2](https://github.com/dynamic-labs/dynamic-auth/commit/c9915d2ede29aac0063ff89539a44e626285d8d0))
13
+
2
14
  ### [4.12.1](https://github.com/dynamic-labs/dynamic-auth/compare/v4.12.0...v4.12.1) (2025-04-15)
3
15
 
4
16
 
package/package.cjs CHANGED
@@ -3,6 +3,6 @@
3
3
 
4
4
  Object.defineProperty(exports, '__esModule', { value: true });
5
5
 
6
- var version = "4.12.1";
6
+ var version = "4.12.2-preview.0";
7
7
 
8
8
  exports.version = version;
package/package.js CHANGED
@@ -1,4 +1,4 @@
1
1
  'use client'
2
- var version = "4.12.1";
2
+ var version = "4.12.2-preview.0";
3
3
 
4
4
  export { version };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dynamic-labs/ethereum-aa",
3
- "version": "4.12.1",
3
+ "version": "4.12.2-preview.0",
4
4
  "description": "A React SDK for implementing wallet web3 authentication and authorization to your website.",
5
5
  "author": "Dynamic Labs, Inc.",
6
6
  "license": "MIT",
@@ -23,13 +23,13 @@
23
23
  "@zerodev/multi-chain-ecdsa-validator": "5.4.3",
24
24
  "@zerodev/sdk": "5.4.26",
25
25
  "zksync-sso": "0.0.0-beta.14",
26
- "@dynamic-labs/assert-package-version": "4.12.1",
27
- "@dynamic-labs/ethereum-core": "4.12.1",
28
- "@dynamic-labs/logger": "4.12.1",
29
- "@dynamic-labs/types": "4.12.1",
30
- "@dynamic-labs/utils": "4.12.1",
31
- "@dynamic-labs/wallet-book": "4.12.1",
32
- "@dynamic-labs/wallet-connector-core": "4.12.1"
26
+ "@dynamic-labs/assert-package-version": "4.12.2-preview.0",
27
+ "@dynamic-labs/ethereum-core": "4.12.2-preview.0",
28
+ "@dynamic-labs/logger": "4.12.2-preview.0",
29
+ "@dynamic-labs/types": "4.12.2-preview.0",
30
+ "@dynamic-labs/utils": "4.12.2-preview.0",
31
+ "@dynamic-labs/wallet-book": "4.12.2-preview.0",
32
+ "@dynamic-labs/wallet-connector-core": "4.12.2-preview.0"
33
33
  },
34
34
  "peerDependencies": {
35
35
  "viem": "^2.21.55"
@@ -493,6 +493,7 @@ class ZKsyncConnector extends AccountAbstractionConnector.AccountAbstractionConn
493
493
  });
494
494
  const isDeployed = Boolean(code);
495
495
  this._isSmartAccountDeployed = isDeployed;
496
+ return isDeployed;
496
497
  });
497
498
  }
498
499
  getAddress() {
@@ -17220,7 +17220,7 @@ export declare class ZKsyncConnector extends AccountAbstractionConnector impleme
17220
17220
  * @throws {ZkSyncConnectorError} If the check fails
17221
17221
  * @returns Promise that resolves when the check is complete
17222
17222
  */
17223
- protected checkIsDeployed(): Promise<void>;
17223
+ protected checkIsDeployed(): Promise<boolean>;
17224
17224
  getAddress(): Promise<string | undefined>;
17225
17225
  validateActiveWallet(expectedAddress: string): Promise<void>;
17226
17226
  isSmartAccountDeployed(refetch?: boolean): Promise<boolean>;
@@ -489,6 +489,7 @@ class ZKsyncConnector extends AccountAbstractionConnector {
489
489
  });
490
490
  const isDeployed = Boolean(code);
491
491
  this._isSmartAccountDeployed = isDeployed;
492
+ return isDeployed;
492
493
  });
493
494
  }
494
495
  getAddress() {