@dynamic-labs/ethereum-aa-zksync 4.16.0 → 4.17.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,19 @@
|
|
|
1
1
|
|
|
2
|
+
## [4.17.0](https://github.com/dynamic-labs/dynamic-auth/compare/v4.16.0...v4.17.0) (2025-05-06)
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
### Features
|
|
6
|
+
|
|
7
|
+
* add chain id option to create kernel client in react-native ([#8650](https://github.com/dynamic-labs/dynamic-auth/issues/8650)) ([1450bea](https://github.com/dynamic-labs/dynamic-auth/commit/1450bea6f979a82ed4880700aff14fa1ead9dc60))
|
|
8
|
+
* add sendCalls method to EthereumWallet ([#8634](https://github.com/dynamic-labs/dynamic-auth/issues/8634)) ([7c9aef9](https://github.com/dynamic-labs/dynamic-auth/commit/7c9aef95382b4823a40279bebfb084de32c25610))
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* 7702 do not override existing old aa ([#8630](https://github.com/dynamic-labs/dynamic-auth/issues/8630)) ([a731d9e](https://github.com/dynamic-labs/dynamic-auth/commit/a731d9e77ecd9e1dec3a7704a63989b5f2741a57))
|
|
14
|
+
* improve error message when email login fails ([#8649](https://github.com/dynamic-labs/dynamic-auth/issues/8649)) ([e1c03ac](https://github.com/dynamic-labs/dynamic-auth/commit/e1c03ac6dc83386c63d63db59d31355bc4fe2959))
|
|
15
|
+
* improve react-native stability on android ([#8652](https://github.com/dynamic-labs/dynamic-auth/issues/8652)) ([1617546](https://github.com/dynamic-labs/dynamic-auth/commit/1617546e6053c2ab32f7d385336c47df185d077f))
|
|
16
|
+
|
|
2
17
|
## [4.16.0](https://github.com/dynamic-labs/dynamic-auth/compare/v4.15.0...v4.16.0) (2025-05-03)
|
|
3
18
|
|
|
4
19
|
|
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-zksync",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.17.0",
|
|
4
4
|
"description": "Core package for Ethereum Account Abstraction utilities and types",
|
|
5
5
|
"author": "Dynamic Labs, Inc.",
|
|
6
6
|
"license": "MIT",
|
|
@@ -20,13 +20,13 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@dynamic-labs/sdk-api-core": "0.0.660",
|
|
22
22
|
"zksync-sso": "0.1.0",
|
|
23
|
-
"@dynamic-labs/assert-package-version": "4.
|
|
24
|
-
"@dynamic-labs/ethereum-aa-core": "4.
|
|
25
|
-
"@dynamic-labs/ethereum-core": "4.
|
|
26
|
-
"@dynamic-labs/types": "4.
|
|
27
|
-
"@dynamic-labs/utils": "4.
|
|
28
|
-
"@dynamic-labs/wallet-book": "4.
|
|
29
|
-
"@dynamic-labs/wallet-connector-core": "4.
|
|
23
|
+
"@dynamic-labs/assert-package-version": "4.17.0",
|
|
24
|
+
"@dynamic-labs/ethereum-aa-core": "4.17.0",
|
|
25
|
+
"@dynamic-labs/ethereum-core": "4.17.0",
|
|
26
|
+
"@dynamic-labs/types": "4.17.0",
|
|
27
|
+
"@dynamic-labs/utils": "4.17.0",
|
|
28
|
+
"@dynamic-labs/wallet-book": "4.17.0",
|
|
29
|
+
"@dynamic-labs/wallet-connector-core": "4.17.0"
|
|
30
30
|
},
|
|
31
31
|
"peerDependencies": {
|
|
32
32
|
"viem": "^2.21.60"
|
|
@@ -32,7 +32,7 @@ class ZKsyncConnector extends ethereumAaCore.AccountAbstractionBaseConnector {
|
|
|
32
32
|
this.supportedChains = ['ETH', 'EVM'];
|
|
33
33
|
this._isSmartAccountDeployed = false;
|
|
34
34
|
this.enablePasskeys = true;
|
|
35
|
-
this.
|
|
35
|
+
this.is7702EnabledOnDashboard = false;
|
|
36
36
|
this.walletFallback = {
|
|
37
37
|
brand: {
|
|
38
38
|
alt: 'Smart Wallet',
|
|
@@ -42,7 +42,7 @@ export declare class ZKsyncConnector extends AccountAbstractionBaseConnector imp
|
|
|
42
42
|
private sessionKeyAddress;
|
|
43
43
|
private saltText;
|
|
44
44
|
private enablePasskeys;
|
|
45
|
-
|
|
45
|
+
is7702EnabledOnDashboard: boolean;
|
|
46
46
|
walletFallback: {
|
|
47
47
|
brand: {
|
|
48
48
|
alt: string;
|
|
@@ -28,7 +28,7 @@ class ZKsyncConnector extends AccountAbstractionBaseConnector {
|
|
|
28
28
|
this.supportedChains = ['ETH', 'EVM'];
|
|
29
29
|
this._isSmartAccountDeployed = false;
|
|
30
30
|
this.enablePasskeys = true;
|
|
31
|
-
this.
|
|
31
|
+
this.is7702EnabledOnDashboard = false;
|
|
32
32
|
this.walletFallback = {
|
|
33
33
|
brand: {
|
|
34
34
|
alt: 'Smart Wallet',
|