@dynamic-labs/wallet-book 4.20.11 → 4.20.13
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 +21 -0
- package/package.cjs +1 -1
- package/package.js +1 -1
- package/package.json +5 -5
- package/wallet-book-fallbacks.cjs +4 -1
- package/wallet-book-fallbacks.js +4 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,4 +1,25 @@
|
|
|
1
1
|
|
|
2
|
+
### [4.20.13](https://github.com/dynamic-labs/dynamic-auth/compare/v4.20.12...v4.20.13) (2025-07-02)
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
### Features
|
|
6
|
+
|
|
7
|
+
* add createWalletClient method to ZeroDevExtension ([#9036](https://github.com/dynamic-labs/dynamic-auth/issues/9036)) ([674df45](https://github.com/dynamic-labs/dynamic-auth/commit/674df45f21e76070594963c2e3b7c19ba94e3004))
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
### Bug Fixes
|
|
11
|
+
|
|
12
|
+
* allow to retry metamask deeplink ([#9066](https://github.com/dynamic-labs/dynamic-auth/issues/9066)) ([308c0d2](https://github.com/dynamic-labs/dynamic-auth/commit/308c0d2ddd7a5c7460f31d25365687b315b0a0f4))
|
|
13
|
+
|
|
14
|
+
### [4.20.12](https://github.com/dynamic-labs/dynamic-auth/compare/v4.20.11...v4.20.12) (2025-07-01)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Bug Fixes
|
|
18
|
+
|
|
19
|
+
* bring back braavos mobile deeplink support ([#9041](https://github.com/dynamic-labs/dynamic-auth/issues/9041)) ([90a7eb6](https://github.com/dynamic-labs/dynamic-auth/commit/90a7eb620f6bd27d4560e88fe5542a121e586bed))
|
|
20
|
+
* start exchange funding errors should be logged as error ([#9056](https://github.com/dynamic-labs/dynamic-auth/issues/9056)) ([ba122af](https://github.com/dynamic-labs/dynamic-auth/commit/ba122afb68c462fe8627828bd20f9cc5f92803ff))
|
|
21
|
+
* WC redirect on mobile ([#9063](https://github.com/dynamic-labs/dynamic-auth/issues/9063)) ([f43aa4a](https://github.com/dynamic-labs/dynamic-auth/commit/f43aa4aedea20e3baf012f4778f5e6a47c27515c))
|
|
22
|
+
|
|
2
23
|
### [4.20.11](https://github.com/dynamic-labs/dynamic-auth/compare/v4.20.10...v4.20.11) (2025-07-01)
|
|
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.20.
|
|
3
|
+
"version": "4.20.13",
|
|
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": "3.22.4",
|
|
20
|
-
"@dynamic-labs/assert-package-version": "4.20.
|
|
21
|
-
"@dynamic-labs/iconic": "4.20.
|
|
22
|
-
"@dynamic-labs/logger": "4.20.
|
|
23
|
-
"@dynamic-labs/utils": "4.20.
|
|
20
|
+
"@dynamic-labs/assert-package-version": "4.20.13",
|
|
21
|
+
"@dynamic-labs/iconic": "4.20.13",
|
|
22
|
+
"@dynamic-labs/logger": "4.20.13",
|
|
23
|
+
"@dynamic-labs/utils": "4.20.13",
|
|
24
24
|
"eventemitter3": "5.0.1",
|
|
25
25
|
"util": "0.12.5"
|
|
26
26
|
},
|
|
@@ -428,7 +428,7 @@ var wallets = {
|
|
|
428
428
|
androidId: "app.phantom",
|
|
429
429
|
iosId: "id1598432977"
|
|
430
430
|
},
|
|
431
|
-
mobileExperience: "
|
|
431
|
+
mobileExperience: "redirect",
|
|
432
432
|
name: "Phantom"
|
|
433
433
|
},
|
|
434
434
|
phantombtc: {
|
|
@@ -500,6 +500,7 @@ var wallets = {
|
|
|
500
500
|
androidId: "app.phantom",
|
|
501
501
|
iosId: "id1598432977"
|
|
502
502
|
},
|
|
503
|
+
mobileExperience: "in-app-browser",
|
|
503
504
|
name: "Phantom",
|
|
504
505
|
shortName: "Phantom (EVM)"
|
|
505
506
|
},
|
|
@@ -1216,6 +1217,8 @@ var wallets = {
|
|
|
1216
1217
|
],
|
|
1217
1218
|
mobile: {
|
|
1218
1219
|
androidId: "com.okinc.okex.gp",
|
|
1220
|
+
inAppBrowser: "okx://wallet/dapp/url?dappUrl={{encodedDappURI}}",
|
|
1221
|
+
inAppBrowserV2: "okx://wallet/dapp/url?dappUrl={{encodedDappURI}}",
|
|
1219
1222
|
iosId: "id1327268470",
|
|
1220
1223
|
native: "okex://main/wc"
|
|
1221
1224
|
},
|
package/wallet-book-fallbacks.js
CHANGED
|
@@ -424,7 +424,7 @@ var wallets = {
|
|
|
424
424
|
androidId: "app.phantom",
|
|
425
425
|
iosId: "id1598432977"
|
|
426
426
|
},
|
|
427
|
-
mobileExperience: "
|
|
427
|
+
mobileExperience: "redirect",
|
|
428
428
|
name: "Phantom"
|
|
429
429
|
},
|
|
430
430
|
phantombtc: {
|
|
@@ -496,6 +496,7 @@ var wallets = {
|
|
|
496
496
|
androidId: "app.phantom",
|
|
497
497
|
iosId: "id1598432977"
|
|
498
498
|
},
|
|
499
|
+
mobileExperience: "in-app-browser",
|
|
499
500
|
name: "Phantom",
|
|
500
501
|
shortName: "Phantom (EVM)"
|
|
501
502
|
},
|
|
@@ -1212,6 +1213,8 @@ var wallets = {
|
|
|
1212
1213
|
],
|
|
1213
1214
|
mobile: {
|
|
1214
1215
|
androidId: "com.okinc.okex.gp",
|
|
1216
|
+
inAppBrowser: "okx://wallet/dapp/url?dappUrl={{encodedDappURI}}",
|
|
1217
|
+
inAppBrowserV2: "okx://wallet/dapp/url?dappUrl={{encodedDappURI}}",
|
|
1215
1218
|
iosId: "id1327268470",
|
|
1216
1219
|
native: "okex://main/wc"
|
|
1217
1220
|
},
|