@dynamic-labs/wallet-connector-core 4.9.7 → 4.9.9
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.9.9](https://github.com/dynamic-labs/dynamic-auth/compare/v4.9.8...v4.9.9) (2025-03-26)
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
### Bug Fixes
|
|
6
|
+
|
|
7
|
+
* **global-wallet-client:** properly clean up the popup state when popup is closed ([#8379](https://github.com/dynamic-labs/dynamic-auth/issues/8379)) ([782963f](https://github.com/dynamic-labs/dynamic-auth/commit/782963f87fcb2658b921ff6cc6f22c63be9714fb))
|
|
8
|
+
* hanging promises when a starknet wallet is connected but locked ([#8376](https://github.com/dynamic-labs/dynamic-auth/issues/8376)) ([a753939](https://github.com/dynamic-labs/dynamic-auth/commit/a7539395d4653be49f000ae51d15347a176b5b6c))
|
|
9
|
+
* token balance list should respect sort from backend ([#8383](https://github.com/dynamic-labs/dynamic-auth/issues/8383)) ([1c3bef4](https://github.com/dynamic-labs/dynamic-auth/commit/1c3bef47dbfd319e2444368a4a503b0839b5ad4b))
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
* add message auth code to global wallet ([#8354](https://github.com/dynamic-labs/dynamic-auth/issues/8354)) ([c847bf8](https://github.com/dynamic-labs/dynamic-auth/commit/c847bf8d66db54534348622255997f30f4309542))
|
|
13
|
+
|
|
14
|
+
### [4.9.8](https://github.com/dynamic-labs/dynamic-auth/compare/v4.9.7...v4.9.8) (2025-03-24)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Bug Fixes
|
|
18
|
+
|
|
19
|
+
* 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))
|
|
20
|
+
|
|
2
21
|
### [4.9.7](https://github.com/dynamic-labs/dynamic-auth/compare/v4.9.6...v4.9.7) (2025-03-21)
|
|
3
22
|
|
|
4
23
|
|
package/package.cjs
CHANGED
package/package.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dynamic-labs/wallet-connector-core",
|
|
3
|
-
"version": "4.9.
|
|
3
|
+
"version": "4.9.9",
|
|
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.
|
|
23
|
-
"@dynamic-labs/logger": "4.9.
|
|
24
|
-
"@dynamic-labs/rpc-providers": "4.9.
|
|
25
|
-
"@dynamic-labs/types": "4.9.
|
|
26
|
-
"@dynamic-labs/utils": "4.9.
|
|
27
|
-
"@dynamic-labs/wallet-book": "4.9.
|
|
22
|
+
"@dynamic-labs/assert-package-version": "4.9.9",
|
|
23
|
+
"@dynamic-labs/logger": "4.9.9",
|
|
24
|
+
"@dynamic-labs/rpc-providers": "4.9.9",
|
|
25
|
+
"@dynamic-labs/types": "4.9.9",
|
|
26
|
+
"@dynamic-labs/utils": "4.9.9",
|
|
27
|
+
"@dynamic-labs/wallet-book": "4.9.9",
|
|
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
|
/**
|