@dynamic-labs/wallet-book 4.40.1 → 4.41.0
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 +19 -0
- package/package.cjs +1 -1
- package/package.js +1 -1
- package/package.json +5 -5
- package/src/build/sources/walletConnectOverrides/index.d.ts +32 -0
- package/wallet-book-fallbacks.cjs +21 -2
- package/wallet-book-fallbacks.js +21 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,4 +1,23 @@
|
|
|
1
1
|
|
|
2
|
+
## [4.41.0](https://github.com/dynamic-labs/dynamic-auth/compare/v4.40.2...v4.41.0) (2025-10-29)
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
### Features
|
|
6
|
+
|
|
7
|
+
* **react-native:** add MFA recovery methods ([#9788](https://github.com/dynamic-labs/dynamic-auth/issues/9788)) ([664e0d5](https://github.com/dynamic-labs/dynamic-auth/commit/664e0d5878530abc9e645c8801a87f3109cfd8f9))
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
### Bug Fixes
|
|
11
|
+
|
|
12
|
+
* crypto.com link opening on mobile ([#9779](https://github.com/dynamic-labs/dynamic-auth/issues/9779)) ([3439ac9](https://github.com/dynamic-labs/dynamic-auth/commit/3439ac9e2610360c6204f6195433ae3e05e26c30))
|
|
13
|
+
|
|
14
|
+
### [4.40.2](https://github.com/dynamic-labs/dynamic-auth/compare/v4.40.1...v4.40.2) (2025-10-28)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Bug Fixes
|
|
18
|
+
|
|
19
|
+
* upgrade node to 20.20 in sanity-yarn-add-sdk job for compatibility ([#9743](https://github.com/dynamic-labs/dynamic-auth/issues/9743)) ([58d7e32](https://github.com/dynamic-labs/dynamic-auth/commit/58d7e32cd3965fba983c91c6345eae3bfe8dd1d5))
|
|
20
|
+
|
|
2
21
|
### [4.40.1](https://github.com/dynamic-labs/dynamic-auth/compare/v4.40.0...v4.40.1) (2025-10-24)
|
|
3
22
|
|
|
4
23
|
### Bug Fixes
|
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.41.0",
|
|
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.41.0",
|
|
21
|
+
"@dynamic-labs/iconic": "4.41.0",
|
|
22
|
+
"@dynamic-labs/logger": "4.41.0",
|
|
23
|
+
"@dynamic-labs/utils": "4.41.0",
|
|
24
24
|
"eventemitter3": "5.0.1",
|
|
25
25
|
"util": "0.12.5"
|
|
26
26
|
},
|
|
@@ -61,6 +61,26 @@ export declare const walletConnectOverrides: {
|
|
|
61
61
|
};
|
|
62
62
|
};
|
|
63
63
|
};
|
|
64
|
+
exodussol: {
|
|
65
|
+
chains: {
|
|
66
|
+
action: string;
|
|
67
|
+
value: string[];
|
|
68
|
+
};
|
|
69
|
+
mobile: {
|
|
70
|
+
action: string;
|
|
71
|
+
value: {
|
|
72
|
+
androidId: string;
|
|
73
|
+
iosId: string;
|
|
74
|
+
native: string;
|
|
75
|
+
};
|
|
76
|
+
};
|
|
77
|
+
walletConnect: {
|
|
78
|
+
action: string;
|
|
79
|
+
value: {
|
|
80
|
+
sdks: string[];
|
|
81
|
+
};
|
|
82
|
+
};
|
|
83
|
+
};
|
|
64
84
|
fireblocks: {
|
|
65
85
|
brand: {
|
|
66
86
|
spriteId: {
|
|
@@ -112,6 +132,18 @@ export declare const walletConnectOverrides: {
|
|
|
112
132
|
value: string;
|
|
113
133
|
};
|
|
114
134
|
};
|
|
135
|
+
okxsolana: {
|
|
136
|
+
mobile: {
|
|
137
|
+
action: string;
|
|
138
|
+
value: {
|
|
139
|
+
androidId: string;
|
|
140
|
+
inAppBrowser: string;
|
|
141
|
+
inAppBrowserV2: string;
|
|
142
|
+
iosId: string;
|
|
143
|
+
native: string;
|
|
144
|
+
};
|
|
145
|
+
};
|
|
146
|
+
};
|
|
115
147
|
okxwallet: {
|
|
116
148
|
desktop: {
|
|
117
149
|
action: string;
|
|
@@ -165,6 +165,15 @@ var groups = {
|
|
|
165
165
|
key: "phantom",
|
|
166
166
|
name: "Phantom"
|
|
167
167
|
},
|
|
168
|
+
tronlinkwallet: {
|
|
169
|
+
brand: {
|
|
170
|
+
alt: "TronLink Wallet",
|
|
171
|
+
primaryColor: "#1677FF",
|
|
172
|
+
spriteId: "tronlink"
|
|
173
|
+
},
|
|
174
|
+
key: "tronlink",
|
|
175
|
+
name: "TronLink"
|
|
176
|
+
},
|
|
168
177
|
trust: {
|
|
169
178
|
brand: {
|
|
170
179
|
alt: "Trust Wallet",
|
|
@@ -1179,6 +1188,9 @@ var wallets = {
|
|
|
1179
1188
|
spriteId: "exodus"
|
|
1180
1189
|
},
|
|
1181
1190
|
chainGroup: "exodus",
|
|
1191
|
+
chains: [
|
|
1192
|
+
"solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp"
|
|
1193
|
+
],
|
|
1182
1194
|
desktop: {
|
|
1183
1195
|
chromeId: "aholpfdialjgjfhomihkjbmgjidlcdno"
|
|
1184
1196
|
},
|
|
@@ -1203,10 +1215,17 @@ var wallets = {
|
|
|
1203
1215
|
],
|
|
1204
1216
|
mobile: {
|
|
1205
1217
|
androidId: "exodusmovement.exodus",
|
|
1206
|
-
iosId: "id1414384820"
|
|
1218
|
+
iosId: "id1414384820",
|
|
1219
|
+
native: "exodus://wc"
|
|
1207
1220
|
},
|
|
1208
1221
|
name: "Exodus",
|
|
1209
|
-
shortName: "Exodus Wallet (Solana)"
|
|
1222
|
+
shortName: "Exodus Wallet (Solana)",
|
|
1223
|
+
walletConnect: {
|
|
1224
|
+
sdks: [
|
|
1225
|
+
"sign_v2",
|
|
1226
|
+
"auth_v1"
|
|
1227
|
+
]
|
|
1228
|
+
}
|
|
1210
1229
|
},
|
|
1211
1230
|
okxwallet: {
|
|
1212
1231
|
brand: {
|
package/wallet-book-fallbacks.js
CHANGED
|
@@ -161,6 +161,15 @@ var groups = {
|
|
|
161
161
|
key: "phantom",
|
|
162
162
|
name: "Phantom"
|
|
163
163
|
},
|
|
164
|
+
tronlinkwallet: {
|
|
165
|
+
brand: {
|
|
166
|
+
alt: "TronLink Wallet",
|
|
167
|
+
primaryColor: "#1677FF",
|
|
168
|
+
spriteId: "tronlink"
|
|
169
|
+
},
|
|
170
|
+
key: "tronlink",
|
|
171
|
+
name: "TronLink"
|
|
172
|
+
},
|
|
164
173
|
trust: {
|
|
165
174
|
brand: {
|
|
166
175
|
alt: "Trust Wallet",
|
|
@@ -1175,6 +1184,9 @@ var wallets = {
|
|
|
1175
1184
|
spriteId: "exodus"
|
|
1176
1185
|
},
|
|
1177
1186
|
chainGroup: "exodus",
|
|
1187
|
+
chains: [
|
|
1188
|
+
"solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp"
|
|
1189
|
+
],
|
|
1178
1190
|
desktop: {
|
|
1179
1191
|
chromeId: "aholpfdialjgjfhomihkjbmgjidlcdno"
|
|
1180
1192
|
},
|
|
@@ -1199,10 +1211,17 @@ var wallets = {
|
|
|
1199
1211
|
],
|
|
1200
1212
|
mobile: {
|
|
1201
1213
|
androidId: "exodusmovement.exodus",
|
|
1202
|
-
iosId: "id1414384820"
|
|
1214
|
+
iosId: "id1414384820",
|
|
1215
|
+
native: "exodus://wc"
|
|
1203
1216
|
},
|
|
1204
1217
|
name: "Exodus",
|
|
1205
|
-
shortName: "Exodus Wallet (Solana)"
|
|
1218
|
+
shortName: "Exodus Wallet (Solana)",
|
|
1219
|
+
walletConnect: {
|
|
1220
|
+
sdks: [
|
|
1221
|
+
"sign_v2",
|
|
1222
|
+
"auth_v1"
|
|
1223
|
+
]
|
|
1224
|
+
}
|
|
1206
1225
|
},
|
|
1207
1226
|
okxwallet: {
|
|
1208
1227
|
brand: {
|