@dynamic-labs/wallet-book 4.95.2 → 4.96.1
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,25 @@
|
|
|
1
1
|
|
|
2
|
+
### [4.96.1](https://github.com/dynamic-labs/dynamic-auth/compare/v4.96.0...v4.96.1) (2026-08-10)
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
### Bug Fixes
|
|
6
|
+
|
|
7
|
+
* security updates ([#12151](https://github.com/dynamic-labs/dynamic-auth/issues/12151)) ([faf22dd](https://github.com/dynamic-labs/dynamic-auth/commit/faf22dda11f5cfd888e860bd05731604ee19b51d))
|
|
8
|
+
* **sdk-react-core:** avoid spurious WaaS client rebuild on transient user sessionId churn ([#12183](https://github.com/dynamic-labs/dynamic-auth/issues/12183)) ([6248f74](https://github.com/dynamic-labs/dynamic-auth/commit/6248f7498fbd279031a4e9176fa707bca360f0f1))
|
|
9
|
+
|
|
10
|
+
## [4.96.0](https://github.com/dynamic-labs/dynamic-auth/compare/v4.95.2...v4.96.0) (2026-08-03)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Features
|
|
14
|
+
|
|
15
|
+
* **midnight:** add contract wallet provider support ([#12133](https://github.com/dynamic-labs/dynamic-auth/issues/12133)) ([f649ce4](https://github.com/dynamic-labs/dynamic-auth/commit/f649ce47101b439542e8db1c802a4a372fb45eb2))
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
### Bug Fixes
|
|
19
|
+
|
|
20
|
+
* **starknet:** restore Braavos L2 session after lock and unlock ([#12125](https://github.com/dynamic-labs/dynamic-auth/issues/12125)) ([9ea226f](https://github.com/dynamic-labs/dynamic-auth/commit/9ea226f1dd2a58e3087c267d74cfe79452ddaeff))
|
|
21
|
+
* **wallet-book:** add universal deep link for Exodus Solana WalletConnect ([168dba5](https://github.com/dynamic-labs/dynamic-auth/commit/168dba5aa6076a769b78394eef093c91948b3c91)), closes [#12123](https://github.com/dynamic-labs/dynamic-auth/issues/12123)
|
|
22
|
+
|
|
2
23
|
### [4.95.2](https://github.com/dynamic-labs/dynamic-auth/compare/v4.95.1...v4.95.2) (2026-07-30)
|
|
3
24
|
|
|
4
25
|
|
package/package.cjs
CHANGED
package/package.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dynamic-labs/wallet-book",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.96.1",
|
|
4
4
|
"author": "Dynamic Labs, Inc.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"main": "./src/index.cjs",
|
|
@@ -17,10 +17,10 @@
|
|
|
17
17
|
},
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"zod": "4.0.5",
|
|
20
|
-
"@dynamic-labs/assert-package-version": "4.
|
|
21
|
-
"@dynamic-labs/iconic": "4.
|
|
22
|
-
"@dynamic-labs/logger": "4.
|
|
23
|
-
"@dynamic-labs/utils": "4.
|
|
20
|
+
"@dynamic-labs/assert-package-version": "4.96.1",
|
|
21
|
+
"@dynamic-labs/iconic": "4.96.1",
|
|
22
|
+
"@dynamic-labs/logger": "4.96.1",
|
|
23
|
+
"@dynamic-labs/utils": "4.96.1",
|
|
24
24
|
"eventemitter3": "5.0.1",
|
|
25
25
|
"util": "0.12.5"
|
|
26
26
|
},
|
|
@@ -72,6 +72,7 @@ export declare const walletConnectOverrides: {
|
|
|
72
72
|
androidId: string;
|
|
73
73
|
iosId: string;
|
|
74
74
|
native: string;
|
|
75
|
+
universal: string;
|
|
75
76
|
};
|
|
76
77
|
};
|
|
77
78
|
walletConnect: {
|
|
@@ -92,6 +93,7 @@ export declare const walletConnectOverrides: {
|
|
|
92
93
|
androidId: string;
|
|
93
94
|
iosId: string;
|
|
94
95
|
native: string;
|
|
96
|
+
universal: string;
|
|
95
97
|
};
|
|
96
98
|
};
|
|
97
99
|
walletConnect: {
|
|
@@ -1190,7 +1190,8 @@ var wallets = {
|
|
|
1190
1190
|
mobile: {
|
|
1191
1191
|
androidId: "exodusmovement.exodus",
|
|
1192
1192
|
iosId: "id1414384820",
|
|
1193
|
-
native: "exodus://wc"
|
|
1193
|
+
native: "exodus://wc",
|
|
1194
|
+
universal: "https://exodus.com/m/wc"
|
|
1194
1195
|
},
|
|
1195
1196
|
name: "Exodus",
|
|
1196
1197
|
shortName: "Exodus Wallet (EVM)",
|
|
@@ -1235,7 +1236,8 @@ var wallets = {
|
|
|
1235
1236
|
mobile: {
|
|
1236
1237
|
androidId: "exodusmovement.exodus",
|
|
1237
1238
|
iosId: "id1414384820",
|
|
1238
|
-
native: "exodus://wc"
|
|
1239
|
+
native: "exodus://wc",
|
|
1240
|
+
universal: "https://exodus.com/m/wc"
|
|
1239
1241
|
},
|
|
1240
1242
|
name: "Exodus",
|
|
1241
1243
|
shortName: "Exodus Wallet (Solana)",
|
package/wallet-book-fallbacks.js
CHANGED
|
@@ -1186,7 +1186,8 @@ var wallets = {
|
|
|
1186
1186
|
mobile: {
|
|
1187
1187
|
androidId: "exodusmovement.exodus",
|
|
1188
1188
|
iosId: "id1414384820",
|
|
1189
|
-
native: "exodus://wc"
|
|
1189
|
+
native: "exodus://wc",
|
|
1190
|
+
universal: "https://exodus.com/m/wc"
|
|
1190
1191
|
},
|
|
1191
1192
|
name: "Exodus",
|
|
1192
1193
|
shortName: "Exodus Wallet (EVM)",
|
|
@@ -1231,7 +1232,8 @@ var wallets = {
|
|
|
1231
1232
|
mobile: {
|
|
1232
1233
|
androidId: "exodusmovement.exodus",
|
|
1233
1234
|
iosId: "id1414384820",
|
|
1234
|
-
native: "exodus://wc"
|
|
1235
|
+
native: "exodus://wc",
|
|
1236
|
+
universal: "https://exodus.com/m/wc"
|
|
1235
1237
|
},
|
|
1236
1238
|
name: "Exodus",
|
|
1237
1239
|
shortName: "Exodus Wallet (Solana)",
|