@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 +12 -0
- package/package.cjs +1 -1
- package/package.js +1 -1
- package/package.json +8 -8
- package/src/ZKsyncConnector.cjs +1 -0
- package/src/ZKsyncConnector.d.ts +1 -1
- package/src/ZKsyncConnector.js +1 -0
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
package/package.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dynamic-labs/ethereum-aa",
|
|
3
|
-
"version": "4.12.
|
|
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.
|
|
27
|
-
"@dynamic-labs/ethereum-core": "4.12.
|
|
28
|
-
"@dynamic-labs/logger": "4.12.
|
|
29
|
-
"@dynamic-labs/types": "4.12.
|
|
30
|
-
"@dynamic-labs/utils": "4.12.
|
|
31
|
-
"@dynamic-labs/wallet-book": "4.12.
|
|
32
|
-
"@dynamic-labs/wallet-connector-core": "4.12.
|
|
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"
|
package/src/ZKsyncConnector.cjs
CHANGED
package/src/ZKsyncConnector.d.ts
CHANGED
|
@@ -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<
|
|
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>;
|