@dynamic-labs/ethereum-aa-zksync 4.91.3 → 4.91.4
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 +8 -0
- package/package.cjs +1 -1
- package/package.js +1 -1
- package/package.json +8 -8
- package/src/connector/ZKsyncConnector.cjs +1 -1
- package/src/connector/ZKsyncConnector.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,4 +1,12 @@
|
|
|
1
1
|
|
|
2
|
+
### [4.91.4](https://github.com/dynamic-labs/dynamic-auth/compare/v4.91.3...v4.91.4) (2026-07-01)
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
### Bug Fixes
|
|
6
|
+
|
|
7
|
+
* conditionally use /op/ route for AA transactions based on block explorer support ([#11628](https://github.com/dynamic-labs/dynamic-auth/issues/11628)) ([95822dc](https://github.com/dynamic-labs/dynamic-auth/commit/95822dc0edbcd739afe870f0b3881555fdb17eb6))
|
|
8
|
+
* require error codes in all SDK error classes ([#11761](https://github.com/dynamic-labs/dynamic-auth/issues/11761)) ([5744811](https://github.com/dynamic-labs/dynamic-auth/commit/5744811efdd1e415aaf51eec5b3300b323ec1347))
|
|
9
|
+
|
|
2
10
|
### [4.91.3](https://github.com/dynamic-labs/dynamic-auth/compare/v4.91.2...v4.91.3) (2026-06-30)
|
|
3
11
|
|
|
4
12
|
|
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.91.
|
|
3
|
+
"version": "4.91.4",
|
|
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.1046",
|
|
22
22
|
"zksync-sso": "0.2.0",
|
|
23
|
-
"@dynamic-labs/assert-package-version": "4.91.
|
|
24
|
-
"@dynamic-labs/ethereum-aa-core": "4.91.
|
|
25
|
-
"@dynamic-labs/ethereum-core": "4.91.
|
|
26
|
-
"@dynamic-labs/types": "4.91.
|
|
27
|
-
"@dynamic-labs/utils": "4.91.
|
|
28
|
-
"@dynamic-labs/wallet-book": "4.91.
|
|
29
|
-
"@dynamic-labs/wallet-connector-core": "4.91.
|
|
23
|
+
"@dynamic-labs/assert-package-version": "4.91.4",
|
|
24
|
+
"@dynamic-labs/ethereum-aa-core": "4.91.4",
|
|
25
|
+
"@dynamic-labs/ethereum-core": "4.91.4",
|
|
26
|
+
"@dynamic-labs/types": "4.91.4",
|
|
27
|
+
"@dynamic-labs/utils": "4.91.4",
|
|
28
|
+
"@dynamic-labs/wallet-book": "4.91.4",
|
|
29
|
+
"@dynamic-labs/wallet-connector-core": "4.91.4"
|
|
30
30
|
},
|
|
31
31
|
"peerDependencies": {
|
|
32
32
|
"viem": "^2.45.3"
|
|
@@ -719,7 +719,7 @@ class ZKsyncConnector extends ethereumAaCore.AccountAbstractionBaseConnector {
|
|
|
719
719
|
return _tslib.__awaiter(this, void 0, void 0, function* () {
|
|
720
720
|
const currentAddress = yield this.getAddress();
|
|
721
721
|
if (currentAddress !== expectedAddress) {
|
|
722
|
-
throw new utils.DynamicError('Invalid active wallet');
|
|
722
|
+
throw new utils.DynamicError('Invalid active wallet', 'invalid_active_wallet');
|
|
723
723
|
}
|
|
724
724
|
});
|
|
725
725
|
}
|
|
@@ -715,7 +715,7 @@ class ZKsyncConnector extends AccountAbstractionBaseConnector {
|
|
|
715
715
|
return __awaiter(this, void 0, void 0, function* () {
|
|
716
716
|
const currentAddress = yield this.getAddress();
|
|
717
717
|
if (currentAddress !== expectedAddress) {
|
|
718
|
-
throw new DynamicError('Invalid active wallet');
|
|
718
|
+
throw new DynamicError('Invalid active wallet', 'invalid_active_wallet');
|
|
719
719
|
}
|
|
720
720
|
});
|
|
721
721
|
}
|