@dynamic-labs/multi-wallet 4.9.8 → 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 +12 -0
- package/package.cjs +1 -1
- package/package.js +1 -1
- package/package.json +7 -7
- package/src/utils/getWalletConnectorConstructorOptions/getWalletConnectorConstructorOptions.cjs +2 -0
- package/src/utils/getWalletConnectorConstructorOptions/getWalletConnectorConstructorOptions.d.ts +1 -0
- package/src/utils/getWalletConnectorConstructorOptions/getWalletConnectorConstructorOptions.js +2 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,4 +1,16 @@
|
|
|
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
|
+
|
|
2
14
|
### [4.9.8](https://github.com/dynamic-labs/dynamic-auth/compare/v4.9.7...v4.9.8) (2025-03-24)
|
|
3
15
|
|
|
4
16
|
|
package/package.cjs
CHANGED
package/package.js
CHANGED
package/package.json
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dynamic-labs/multi-wallet",
|
|
3
|
-
"version": "4.9.
|
|
3
|
+
"version": "4.9.9",
|
|
4
4
|
"dependencies": {
|
|
5
5
|
"@dynamic-labs/sdk-api-core": "0.0.644",
|
|
6
6
|
"tslib": "2.4.1",
|
|
7
|
-
"@dynamic-labs/assert-package-version": "4.9.
|
|
8
|
-
"@dynamic-labs/rpc-providers": "4.9.
|
|
9
|
-
"@dynamic-labs/types": "4.9.
|
|
10
|
-
"@dynamic-labs/utils": "4.9.
|
|
11
|
-
"@dynamic-labs/wallet-book": "4.9.
|
|
12
|
-
"@dynamic-labs/wallet-connector-core": "4.9.
|
|
7
|
+
"@dynamic-labs/assert-package-version": "4.9.9",
|
|
8
|
+
"@dynamic-labs/rpc-providers": "4.9.9",
|
|
9
|
+
"@dynamic-labs/types": "4.9.9",
|
|
10
|
+
"@dynamic-labs/utils": "4.9.9",
|
|
11
|
+
"@dynamic-labs/wallet-book": "4.9.9",
|
|
12
|
+
"@dynamic-labs/wallet-connector-core": "4.9.9"
|
|
13
13
|
},
|
|
14
14
|
"devDependencies": {
|
|
15
15
|
"@walletconnect/types": "2.19.1"
|
package/src/utils/getWalletConnectorConstructorOptions/getWalletConnectorConstructorOptions.cjs
CHANGED
|
@@ -14,6 +14,7 @@ const getWalletConnectorConstructorOptions = ({ appLogoUrl, appName, authMode, c
|
|
|
14
14
|
const solanaNetworkConfigs = (networkConfigurations === null || networkConfigurations === void 0 ? void 0 : networkConfigurations.solana) || [];
|
|
15
15
|
const cosmosNetworkConfigs = (networkConfigurations === null || networkConfigurations === void 0 ? void 0 : networkConfigurations.cosmos) || [];
|
|
16
16
|
const starknetNetworkConfigs = (networkConfigurations === null || networkConfigurations === void 0 ? void 0 : networkConfigurations.starknet) || [];
|
|
17
|
+
const suiNetworkConfigs = (networkConfigurations === null || networkConfigurations === void 0 ? void 0 : networkConfigurations.sui) || [];
|
|
17
18
|
const apiProviders = getApiProviders.getApiProviders(getEnabledProviders.getEnabledProviders(settings.providers));
|
|
18
19
|
const opts = {
|
|
19
20
|
apiProviders,
|
|
@@ -32,6 +33,7 @@ const getWalletConnectorConstructorOptions = ({ appLogoUrl, appName, authMode, c
|
|
|
32
33
|
settings,
|
|
33
34
|
solNetworks: solanaNetworkConfigs,
|
|
34
35
|
starknetNetworks: starknetNetworkConfigs,
|
|
36
|
+
suiNetworks: suiNetworkConfigs,
|
|
35
37
|
walletBook,
|
|
36
38
|
walletConnectPreferredChains,
|
|
37
39
|
walletConnectorEventsEmitter: walletConnectorCore.walletConnectorEvents,
|
package/src/utils/getWalletConnectorConstructorOptions/getWalletConnectorConstructorOptions.d.ts
CHANGED
|
@@ -69,6 +69,7 @@ export declare const getWalletConnectorConstructorOptions: ({ appLogoUrl, appNam
|
|
|
69
69
|
settings: ProjectSettings;
|
|
70
70
|
solNetworks: import("@dynamic-labs/types").GenericNetwork[];
|
|
71
71
|
starknetNetworks: import("@dynamic-labs/types").GenericNetwork[];
|
|
72
|
+
suiNetworks: import("@dynamic-labs/types").GenericNetwork[];
|
|
72
73
|
walletBook: {
|
|
73
74
|
groups: Record<string, {
|
|
74
75
|
name: string;
|
package/src/utils/getWalletConnectorConstructorOptions/getWalletConnectorConstructorOptions.js
CHANGED
|
@@ -10,6 +10,7 @@ const getWalletConnectorConstructorOptions = ({ appLogoUrl, appName, authMode, c
|
|
|
10
10
|
const solanaNetworkConfigs = (networkConfigurations === null || networkConfigurations === void 0 ? void 0 : networkConfigurations.solana) || [];
|
|
11
11
|
const cosmosNetworkConfigs = (networkConfigurations === null || networkConfigurations === void 0 ? void 0 : networkConfigurations.cosmos) || [];
|
|
12
12
|
const starknetNetworkConfigs = (networkConfigurations === null || networkConfigurations === void 0 ? void 0 : networkConfigurations.starknet) || [];
|
|
13
|
+
const suiNetworkConfigs = (networkConfigurations === null || networkConfigurations === void 0 ? void 0 : networkConfigurations.sui) || [];
|
|
13
14
|
const apiProviders = getApiProviders(getEnabledProviders(settings.providers));
|
|
14
15
|
const opts = {
|
|
15
16
|
apiProviders,
|
|
@@ -28,6 +29,7 @@ const getWalletConnectorConstructorOptions = ({ appLogoUrl, appName, authMode, c
|
|
|
28
29
|
settings,
|
|
29
30
|
solNetworks: solanaNetworkConfigs,
|
|
30
31
|
starknetNetworks: starknetNetworkConfigs,
|
|
32
|
+
suiNetworks: suiNetworkConfigs,
|
|
31
33
|
walletBook,
|
|
32
34
|
walletConnectPreferredChains,
|
|
33
35
|
walletConnectorEventsEmitter: walletConnectorEvents,
|