@dynamic-labs/multi-wallet 4.40.1 → 4.41.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,23 @@
1
1
 
2
+ ## [4.41.0](https://github.com/dynamic-labs/dynamic-auth/compare/v4.40.2...v4.41.0) (2025-10-29)
3
+
4
+
5
+ ### Features
6
+
7
+ * **react-native:** add MFA recovery methods ([#9788](https://github.com/dynamic-labs/dynamic-auth/issues/9788)) ([664e0d5](https://github.com/dynamic-labs/dynamic-auth/commit/664e0d5878530abc9e645c8801a87f3109cfd8f9))
8
+
9
+
10
+ ### Bug Fixes
11
+
12
+ * crypto.com link opening on mobile ([#9779](https://github.com/dynamic-labs/dynamic-auth/issues/9779)) ([3439ac9](https://github.com/dynamic-labs/dynamic-auth/commit/3439ac9e2610360c6204f6195433ae3e05e26c30))
13
+
14
+ ### [4.40.2](https://github.com/dynamic-labs/dynamic-auth/compare/v4.40.1...v4.40.2) (2025-10-28)
15
+
16
+
17
+ ### Bug Fixes
18
+
19
+ * upgrade node to 20.20 in sanity-yarn-add-sdk job for compatibility ([#9743](https://github.com/dynamic-labs/dynamic-auth/issues/9743)) ([58d7e32](https://github.com/dynamic-labs/dynamic-auth/commit/58d7e32cd3965fba983c91c6345eae3bfe8dd1d5))
20
+
2
21
  ### [4.40.1](https://github.com/dynamic-labs/dynamic-auth/compare/v4.40.0...v4.40.1) (2025-10-24)
3
22
 
4
23
  ### Bug Fixes
package/package.cjs CHANGED
@@ -3,6 +3,6 @@
3
3
 
4
4
  Object.defineProperty(exports, '__esModule', { value: true });
5
5
 
6
- var version = "4.40.1";
6
+ var version = "4.41.0";
7
7
 
8
8
  exports.version = version;
package/package.js CHANGED
@@ -1,4 +1,4 @@
1
1
  'use client'
2
- var version = "4.40.1";
2
+ var version = "4.41.0";
3
3
 
4
4
  export { version };
package/package.json CHANGED
@@ -1,15 +1,15 @@
1
1
  {
2
2
  "name": "@dynamic-labs/multi-wallet",
3
- "version": "4.40.1",
3
+ "version": "4.41.0",
4
4
  "dependencies": {
5
5
  "@dynamic-labs/sdk-api-core": "0.0.813",
6
6
  "tslib": "2.4.1",
7
- "@dynamic-labs/assert-package-version": "4.40.1",
8
- "@dynamic-labs/rpc-providers": "4.40.1",
9
- "@dynamic-labs/types": "4.40.1",
10
- "@dynamic-labs/utils": "4.40.1",
11
- "@dynamic-labs/wallet-book": "4.40.1",
12
- "@dynamic-labs/wallet-connector-core": "4.40.1"
7
+ "@dynamic-labs/assert-package-version": "4.41.0",
8
+ "@dynamic-labs/rpc-providers": "4.41.0",
9
+ "@dynamic-labs/types": "4.41.0",
10
+ "@dynamic-labs/utils": "4.41.0",
11
+ "@dynamic-labs/wallet-book": "4.41.0",
12
+ "@dynamic-labs/wallet-connector-core": "4.41.0"
13
13
  },
14
14
  "devDependencies": {
15
15
  "@walletconnect/types": "2.21.5"
@@ -60,6 +60,7 @@ const getSupportedWallets = (args) => {
60
60
  // if there is, return false (filter out WC wallet)
61
61
  // if there is no other wallet with the same key that is not WalletConnect, return true (keep WC wallet)
62
62
  return !allWalletConnectors.some((wc) => wc.key === walletConnector.key &&
63
+ wc.connectedChain === walletConnector.connectedChain &&
63
64
  !wc.isWalletConnect &&
64
65
  wc.isInstalledOnBrowser());
65
66
  });
@@ -56,6 +56,7 @@ const getSupportedWallets = (args) => {
56
56
  // if there is, return false (filter out WC wallet)
57
57
  // if there is no other wallet with the same key that is not WalletConnect, return true (keep WC wallet)
58
58
  return !allWalletConnectors.some((wc) => wc.key === walletConnector.key &&
59
+ wc.connectedChain === walletConnector.connectedChain &&
59
60
  !wc.isWalletConnect &&
60
61
  wc.isInstalledOnBrowser());
61
62
  });