@dynamic-labs/ethereum-aa 3.9.2 → 3.9.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 CHANGED
@@ -1,4 +1,19 @@
1
1
 
2
+ ### [3.9.4](https://github.com/dynamic-labs/DynamicAuth/compare/v3.9.3...v3.9.4) (2024-12-18)
3
+
4
+
5
+ ### Bug Fixes
6
+
7
+ * improve signtypeddata and signmessage for zerodev connector ([#7651](https://github.com/dynamic-labs/DynamicAuth/issues/7651)) ([6f2b938](https://github.com/dynamic-labs/DynamicAuth/commit/6f2b938cfbcb9d5ca15b20979b42a458a9062164))
8
+
9
+ ### [3.9.3](https://github.com/dynamic-labs/DynamicAuth/compare/v3.9.2...v3.9.3) (2024-12-18)
10
+
11
+
12
+ ### Bug Fixes
13
+
14
+ * allow re-linking unknown wallet when there's another account of the same wallet provider already linked ([#7627](https://github.com/dynamic-labs/DynamicAuth/issues/7627)) ([d34f07c](https://github.com/dynamic-labs/DynamicAuth/commit/d34f07c0aa645d35192e0939f8c2b4bf35bafc86))
15
+ * temp disable refreshing blockhash for solana transactions ([#7646](https://github.com/dynamic-labs/DynamicAuth/issues/7646)) ([8aeab7c](https://github.com/dynamic-labs/DynamicAuth/commit/8aeab7c798881746e5977e509e7b301475281f03))
16
+
2
17
  ### [3.9.2](https://github.com/dynamic-labs/DynamicAuth/compare/v3.9.1...v3.9.2) (2024-12-11)
3
18
 
4
19
  ### [3.9.1](https://github.com/dynamic-labs/DynamicAuth/compare/v3.9.0...v3.9.1) (2024-12-09)
package/package.cjs CHANGED
@@ -3,6 +3,6 @@
3
3
 
4
4
  Object.defineProperty(exports, '__esModule', { value: true });
5
5
 
6
- var version = "3.9.2";
6
+ var version = "3.9.4";
7
7
 
8
8
  exports.version = version;
package/package.js CHANGED
@@ -1,4 +1,4 @@
1
1
  'use client'
2
- var version = "3.9.2";
2
+ var version = "3.9.4";
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": "3.9.2",
3
+ "version": "3.9.4",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "git+https://github.com/dynamic-labs/dynamic-auth.git",
@@ -31,13 +31,13 @@
31
31
  "@zerodev/multi-chain-validator": "5.3.13",
32
32
  "@zerodev/sdk": "5.3.26",
33
33
  "permissionless": "^0.1.45",
34
- "@dynamic-labs/assert-package-version": "3.9.2",
35
- "@dynamic-labs/ethereum-core": "3.9.2",
36
- "@dynamic-labs/logger": "3.9.2",
37
- "@dynamic-labs/types": "3.9.2",
38
- "@dynamic-labs/utils": "3.9.2",
39
- "@dynamic-labs/wallet-book": "3.9.2",
40
- "@dynamic-labs/wallet-connector-core": "3.9.2"
34
+ "@dynamic-labs/assert-package-version": "3.9.4",
35
+ "@dynamic-labs/ethereum-core": "3.9.4",
36
+ "@dynamic-labs/logger": "3.9.4",
37
+ "@dynamic-labs/types": "3.9.4",
38
+ "@dynamic-labs/utils": "3.9.4",
39
+ "@dynamic-labs/wallet-book": "3.9.4",
40
+ "@dynamic-labs/wallet-connector-core": "3.9.4"
41
41
  },
42
42
  "peerDependencies": {
43
43
  "viem": "^2.7.12"
@@ -294,7 +294,6 @@ class ZeroDevConnector extends walletConnectorCore.WalletConnectorBase {
294
294
  onPersonalSign: (_a) => _tslib.__awaiter(this, [_a], void 0, function* ({ message }) {
295
295
  this._walletUiUtils.disabledConfirmationOnce();
296
296
  return provider.signMessage({
297
- account: accounts.toAccount(provider.account.address),
298
297
  message,
299
298
  });
300
299
  }),
@@ -325,7 +324,6 @@ class ZeroDevConnector extends walletConnectorCore.WalletConnectorBase {
325
324
  this._walletUiUtils.disabledConfirmationOnce();
326
325
  const signTypedData = JSON.parse(message);
327
326
  return provider.signTypedData({
328
- account: accounts.toAccount(provider.account.address),
329
327
  domain: signTypedData.domain,
330
328
  message: signTypedData.message,
331
329
  primaryType: signTypedData.primaryType,
@@ -290,7 +290,6 @@ class ZeroDevConnector extends WalletConnectorBase {
290
290
  onPersonalSign: (_a) => __awaiter(this, [_a], void 0, function* ({ message }) {
291
291
  this._walletUiUtils.disabledConfirmationOnce();
292
292
  return provider.signMessage({
293
- account: toAccount(provider.account.address),
294
293
  message,
295
294
  });
296
295
  }),
@@ -321,7 +320,6 @@ class ZeroDevConnector extends WalletConnectorBase {
321
320
  this._walletUiUtils.disabledConfirmationOnce();
322
321
  const signTypedData = JSON.parse(message);
323
322
  return provider.signTypedData({
324
- account: toAccount(provider.account.address),
325
323
  domain: signTypedData.domain,
326
324
  message: signTypedData.message,
327
325
  primaryType: signTypedData.primaryType,