@dynamic-labs/wallet-connector-core 4.9.7 → 4.9.8

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
+ ### [4.9.8](https://github.com/dynamic-labs/dynamic-auth/compare/v4.9.7...v4.9.8) (2025-03-24)
3
+
4
+
5
+ ### Bug Fixes
6
+
7
+ * unlink wallets when using 7702 account ([#8367](https://github.com/dynamic-labs/dynamic-auth/issues/8367)) ([f5acf05](https://github.com/dynamic-labs/dynamic-auth/commit/f5acf05ef31b8f411f3b0cd0e90e919e71f4ad50))
8
+
2
9
  ### [4.9.7](https://github.com/dynamic-labs/dynamic-auth/compare/v4.9.6...v4.9.7) (2025-03-21)
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 = "4.9.7";
6
+ var version = "4.9.8";
7
7
 
8
8
  exports.version = version;
package/package.js CHANGED
@@ -1,4 +1,4 @@
1
1
  'use client'
2
- var version = "4.9.7";
2
+ var version = "4.9.8";
3
3
 
4
4
  export { version };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dynamic-labs/wallet-connector-core",
3
- "version": "4.9.7",
3
+ "version": "4.9.8",
4
4
  "description": "Core package for utilities and types for handling multiple wallet/chain support Dynamic SDK",
5
5
  "author": "Dynamic Labs, Inc.",
6
6
  "license": "MIT",
@@ -19,12 +19,12 @@
19
19
  "homepage": "https://www.dynamic.xyz/",
20
20
  "dependencies": {
21
21
  "@dynamic-labs/sdk-api-core": "0.0.644",
22
- "@dynamic-labs/assert-package-version": "4.9.7",
23
- "@dynamic-labs/logger": "4.9.7",
24
- "@dynamic-labs/rpc-providers": "4.9.7",
25
- "@dynamic-labs/types": "4.9.7",
26
- "@dynamic-labs/utils": "4.9.7",
27
- "@dynamic-labs/wallet-book": "4.9.7",
22
+ "@dynamic-labs/assert-package-version": "4.9.8",
23
+ "@dynamic-labs/logger": "4.9.8",
24
+ "@dynamic-labs/rpc-providers": "4.9.8",
25
+ "@dynamic-labs/types": "4.9.8",
26
+ "@dynamic-labs/utils": "4.9.8",
27
+ "@dynamic-labs/wallet-book": "4.9.8",
28
28
  "eventemitter3": "5.0.1"
29
29
  },
30
30
  "peerDependencies": {}
@@ -88,6 +88,8 @@ class WalletConnectorBase extends EventEmitter__default["default"] {
88
88
  this.isWalletConnect = false;
89
89
  /**
90
90
  * Override key for the wallet (used for injected wallet linking)
91
+ *
92
+ * This is used to help group wallets by chain and should be set for multichain wallets.
91
93
  */
92
94
  this.overrideKey = undefined;
93
95
  /**
@@ -235,6 +235,8 @@ export declare abstract class WalletConnectorBase<C extends WalletConstructor<an
235
235
  abstract name: string;
236
236
  /**
237
237
  * Override key for the wallet (used for injected wallet linking)
238
+ *
239
+ * This is used to help group wallets by chain and should be set for multichain wallets.
238
240
  */
239
241
  overrideKey: string | undefined;
240
242
  /**
@@ -80,6 +80,8 @@ class WalletConnectorBase extends EventEmitter {
80
80
  this.isWalletConnect = false;
81
81
  /**
82
82
  * Override key for the wallet (used for injected wallet linking)
83
+ *
84
+ * This is used to help group wallets by chain and should be set for multichain wallets.
83
85
  */
84
86
  this.overrideKey = undefined;
85
87
  /**