@dynamic-labs/multi-wallet 4.25.5 → 4.25.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,12 @@
|
|
|
1
1
|
|
|
2
|
+
### [4.25.6](https://github.com/dynamic-labs/dynamic-auth/compare/v4.25.5...v4.25.6) (2025-07-28)
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
### Bug Fixes
|
|
6
|
+
|
|
7
|
+
* don't create a new user when linking a wallet to a user with no wallets ([#9252](https://github.com/dynamic-labs/dynamic-auth/issues/9252)) ([30f846e](https://github.com/dynamic-labs/dynamic-auth/commit/30f846e89f2dffd112e656201bfa1cc24b787f03))
|
|
8
|
+
* Nufi EVM wallet showing up twice in wallet list ([#9256](https://github.com/dynamic-labs/dynamic-auth/issues/9256)) ([213488e](https://github.com/dynamic-labs/dynamic-auth/commit/213488e2226ef55965e12a1a548845cb100e859f))
|
|
9
|
+
|
|
2
10
|
### [4.25.5](https://github.com/dynamic-labs/dynamic-auth/compare/v4.25.4...v4.25.5) (2025-07-27)
|
|
3
11
|
|
|
4
12
|
|
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.25.
|
|
3
|
+
"version": "4.25.6",
|
|
4
4
|
"dependencies": {
|
|
5
5
|
"@dynamic-labs/sdk-api-core": "0.0.728",
|
|
6
6
|
"tslib": "2.4.1",
|
|
7
|
-
"@dynamic-labs/assert-package-version": "4.25.
|
|
8
|
-
"@dynamic-labs/rpc-providers": "4.25.
|
|
9
|
-
"@dynamic-labs/types": "4.25.
|
|
10
|
-
"@dynamic-labs/utils": "4.25.
|
|
11
|
-
"@dynamic-labs/wallet-book": "4.25.
|
|
12
|
-
"@dynamic-labs/wallet-connector-core": "4.25.
|
|
7
|
+
"@dynamic-labs/assert-package-version": "4.25.6",
|
|
8
|
+
"@dynamic-labs/rpc-providers": "4.25.6",
|
|
9
|
+
"@dynamic-labs/types": "4.25.6",
|
|
10
|
+
"@dynamic-labs/utils": "4.25.6",
|
|
11
|
+
"@dynamic-labs/wallet-book": "4.25.6",
|
|
12
|
+
"@dynamic-labs/wallet-connector-core": "4.25.6"
|
|
13
13
|
},
|
|
14
14
|
"devDependencies": {
|
|
15
15
|
"@walletconnect/types": "2.19.1"
|
package/src/utils/getWalletConnectorConstructorOptions/getWalletConnectorConstructorOptions.d.ts
CHANGED
|
@@ -78,8 +78,8 @@ export declare const getWalletConnectorConstructorOptions: ({ appLogoUrl, appNam
|
|
|
78
78
|
useMetamaskSdk: boolean;
|
|
79
79
|
walletBook: {
|
|
80
80
|
groups: Record<string, {
|
|
81
|
-
name: string;
|
|
82
81
|
key: string;
|
|
82
|
+
name: string;
|
|
83
83
|
brand?: {
|
|
84
84
|
alt?: string | undefined;
|
|
85
85
|
primaryColor?: string | undefined;
|
|
@@ -121,8 +121,8 @@ export declare const getWalletConnectorConstructorOptions: ({ appLogoUrl, appNam
|
|
|
121
121
|
injectedConfig?: {
|
|
122
122
|
chain: string;
|
|
123
123
|
extensionLocators: {
|
|
124
|
-
value: boolean;
|
|
125
124
|
flag: string;
|
|
125
|
+
value: boolean;
|
|
126
126
|
}[];
|
|
127
127
|
providerInterface?: string | undefined;
|
|
128
128
|
walletStandard?: {
|
|
@@ -131,8 +131,8 @@ export declare const getWalletConnectorConstructorOptions: ({ appLogoUrl, appNam
|
|
|
131
131
|
providerId?: string | undefined;
|
|
132
132
|
} | undefined;
|
|
133
133
|
walletStandardLocators?: {
|
|
134
|
-
name: string;
|
|
135
134
|
locator: string;
|
|
135
|
+
name: string;
|
|
136
136
|
}[] | undefined;
|
|
137
137
|
windowLocations?: string[] | undefined;
|
|
138
138
|
}[] | undefined;
|