@dynamic-labs/ethereum-core 3.9.5 → 3.9.6

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,11 @@
1
1
 
2
+ ### [3.9.6](https://github.com/dynamic-labs/DynamicAuth/compare/v3.9.5...v3.9.6) (2024-12-28)
3
+
4
+
5
+ ### Bug Fixes
6
+
7
+ * properly cancel transaction confirmation UI when using account abstraction and embedded wallets ([#7713](https://github.com/dynamic-labs/DynamicAuth/issues/7713)) ([ef3020b](https://github.com/dynamic-labs/DynamicAuth/commit/ef3020b5985928178c7cda7bbeb9e96dcbc3a925)), closes [#7669](https://github.com/dynamic-labs/DynamicAuth/issues/7669)
8
+
2
9
  ### [3.9.5](https://github.com/dynamic-labs/DynamicAuth/compare/v3.9.4...v3.9.5) (2024-12-20)
3
10
 
4
11
 
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.5";
6
+ var version = "3.9.6";
7
7
 
8
8
  exports.version = version;
package/package.js CHANGED
@@ -1,4 +1,4 @@
1
1
  'use client'
2
- var version = "3.9.5";
2
+ var version = "3.9.6";
3
3
 
4
4
  export { version };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dynamic-labs/ethereum-core",
3
- "version": "3.9.5",
3
+ "version": "3.9.6",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "git+https://github.com/dynamic-labs/dynamic-auth.git",
@@ -30,12 +30,12 @@
30
30
  },
31
31
  "peerDependencies": {
32
32
  "viem": "^2.7.12",
33
- "@dynamic-labs/assert-package-version": "3.9.5",
34
- "@dynamic-labs/logger": "3.9.5",
35
- "@dynamic-labs/rpc-providers": "3.9.5",
36
- "@dynamic-labs/types": "3.9.5",
37
- "@dynamic-labs/utils": "3.9.5",
38
- "@dynamic-labs/wallet-book": "3.9.5",
39
- "@dynamic-labs/wallet-connector-core": "3.9.5"
33
+ "@dynamic-labs/assert-package-version": "3.9.6",
34
+ "@dynamic-labs/logger": "3.9.6",
35
+ "@dynamic-labs/rpc-providers": "3.9.6",
36
+ "@dynamic-labs/types": "3.9.6",
37
+ "@dynamic-labs/utils": "3.9.6",
38
+ "@dynamic-labs/wallet-book": "3.9.6",
39
+ "@dynamic-labs/wallet-connector-core": "3.9.6"
40
40
  }
41
41
  }
@@ -33,6 +33,9 @@ const interceptTransport = ({ getAccounts, onPersonalSign, onSendTransaction, on
33
33
  error.walk() instanceof utils.UserRejectedTransactionError) {
34
34
  throw new viem.UserRejectedRequestError(error.walk());
35
35
  }
36
+ if (error instanceof utils.UserRejectedTransactionError) {
37
+ throw new viem.UserRejectedRequestError(error);
38
+ }
36
39
  if (error instanceof utils.UserRejectedRequestError) {
37
40
  throw new viem.UserRejectedRequestError(error);
38
41
  }
@@ -29,6 +29,9 @@ const interceptTransport = ({ getAccounts, onPersonalSign, onSendTransaction, on
29
29
  error.walk() instanceof UserRejectedTransactionError) {
30
30
  throw new UserRejectedRequestError$1(error.walk());
31
31
  }
32
+ if (error instanceof UserRejectedTransactionError) {
33
+ throw new UserRejectedRequestError$1(error);
34
+ }
32
35
  if (error instanceof UserRejectedRequestError) {
33
36
  throw new UserRejectedRequestError$1(error);
34
37
  }