@dynamic-labs/wallet-book 4.32.1-preview.0 → 4.32.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 +9 -1
- package/package.cjs +1 -1
- package/package.js +1 -1
- package/package.json +5 -5
- package/wallet-book-fallbacks.cjs +6 -0
- package/wallet-book-fallbacks.js +6 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,10 +1,18 @@
|
|
|
1
1
|
|
|
2
|
-
### [4.32.1
|
|
2
|
+
### [4.32.1](https://github.com/dynamic-labs/dynamic-auth/compare/v4.32.0...v4.32.1) (2025-09-25)
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
### Features
|
|
6
|
+
|
|
7
|
+
* allow connecting multiple WC wallets ([#9493](https://github.com/dynamic-labs/dynamic-auth/issues/9493)) ([350c53c](https://github.com/dynamic-labs/dynamic-auth/commit/350c53cfc2198a565e9a324d9d65c3e57883d772))
|
|
8
|
+
* always use redirect inside MM IAB ([#9535](https://github.com/dynamic-labs/dynamic-auth/issues/9535)) ([8aca796](https://github.com/dynamic-labs/dynamic-auth/commit/8aca7968dfa0ef0f3caee043b415f9f76187112e))
|
|
3
9
|
|
|
4
10
|
|
|
5
11
|
### Bug Fixes
|
|
6
12
|
|
|
7
13
|
* correct naming ([#9513](https://github.com/dynamic-labs/dynamic-auth/issues/9513)) ([5b4e31b](https://github.com/dynamic-labs/dynamic-auth/commit/5b4e31b9bbf2401d377201a4cd12edf79eaef75f))
|
|
14
|
+
* correct Safe Wallet App Store ID to prevent misdirect ([#9531](https://github.com/dynamic-labs/dynamic-auth/issues/9531)) ([b58adc5](https://github.com/dynamic-labs/dynamic-auth/commit/b58adc54de8018bf25011b205b94977da9676c2d))
|
|
15
|
+
* prevent social login popup in headless scenarios ([#9541](https://github.com/dynamic-labs/dynamic-auth/issues/9541)) ([a91c0b0](https://github.com/dynamic-labs/dynamic-auth/commit/a91c0b0d1d09210fa149cae80abab6978f4ae998))
|
|
8
16
|
|
|
9
17
|
## [4.32.0](https://github.com/dynamic-labs/dynamic-auth/compare/v4.31.4...v4.32.0) (2025-09-17)
|
|
10
18
|
|
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.32.1
|
|
3
|
+
"version": "4.32.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.32.1
|
|
21
|
-
"@dynamic-labs/iconic": "4.32.1
|
|
22
|
-
"@dynamic-labs/logger": "4.32.1
|
|
23
|
-
"@dynamic-labs/utils": "4.32.1
|
|
20
|
+
"@dynamic-labs/assert-package-version": "4.32.1",
|
|
21
|
+
"@dynamic-labs/iconic": "4.32.1",
|
|
22
|
+
"@dynamic-labs/logger": "4.32.1",
|
|
23
|
+
"@dynamic-labs/utils": "4.32.1",
|
|
24
24
|
"eventemitter3": "5.0.1",
|
|
25
25
|
"util": "0.12.5"
|
|
26
26
|
},
|
|
@@ -1333,6 +1333,12 @@ var wallets = {
|
|
|
1333
1333
|
]
|
|
1334
1334
|
}
|
|
1335
1335
|
],
|
|
1336
|
+
mobile: {
|
|
1337
|
+
androidId: "com.unisat.wallet",
|
|
1338
|
+
inAppBrowser: "unisat://request?method=connect&from=Dynamic&nonce={{encodedDappURI}}",
|
|
1339
|
+
inAppBrowserV2: "unisat://request?method=connect&from=Dynamic&nonce={{encodedDappURI}}",
|
|
1340
|
+
iosId: "id6450081796"
|
|
1341
|
+
},
|
|
1336
1342
|
name: "UniSat"
|
|
1337
1343
|
},
|
|
1338
1344
|
unknown: {
|
package/wallet-book-fallbacks.js
CHANGED
|
@@ -1329,6 +1329,12 @@ var wallets = {
|
|
|
1329
1329
|
]
|
|
1330
1330
|
}
|
|
1331
1331
|
],
|
|
1332
|
+
mobile: {
|
|
1333
|
+
androidId: "com.unisat.wallet",
|
|
1334
|
+
inAppBrowser: "unisat://request?method=connect&from=Dynamic&nonce={{encodedDappURI}}",
|
|
1335
|
+
inAppBrowserV2: "unisat://request?method=connect&from=Dynamic&nonce={{encodedDappURI}}",
|
|
1336
|
+
iosId: "id6450081796"
|
|
1337
|
+
},
|
|
1332
1338
|
name: "UniSat"
|
|
1333
1339
|
},
|
|
1334
1340
|
unknown: {
|