@dynamic-labs/wallet-book 4.8.1 → 4.8.2
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 +16 -0
- 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,4 +1,20 @@
|
|
|
1
1
|
|
|
2
|
+
### [4.8.2](https://github.com/dynamic-labs/dynamic-auth/compare/v4.8.1...v4.8.2) (2025-03-01)
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
### Features
|
|
6
|
+
|
|
7
|
+
* add disconnect to wallet action in connect only ([#8152](https://github.com/dynamic-labs/dynamic-auth/issues/8152)) ([4f8fa26](https://github.com/dynamic-labs/dynamic-auth/commit/4f8fa26c293aa249e697cc6494463b3bb545251a))
|
|
8
|
+
* add dynamic waas evm connector ([#8167](https://github.com/dynamic-labs/dynamic-auth/issues/8167)) ([b51c0ae](https://github.com/dynamic-labs/dynamic-auth/commit/b51c0ae1822c9676d1923b77eb3e468aebe275e6))
|
|
9
|
+
* support for onramp options via function, and default support for coinbase ([#8139](https://github.com/dynamic-labs/dynamic-auth/issues/8139)) ([f4dee01](https://github.com/dynamic-labs/dynamic-auth/commit/f4dee0175512de7a15928c577a20cc620863c282))
|
|
10
|
+
* upgrade [@solana](https://github.com/solana) libs ([#8180](https://github.com/dynamic-labs/dynamic-auth/issues/8180)) ([7c7f51e](https://github.com/dynamic-labs/dynamic-auth/commit/7c7f51ec5a29f8d9e4f860eb21d60666f6e6b9a2))
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Bug Fixes
|
|
14
|
+
|
|
15
|
+
* filter out networks without a key value when parsing coinbase onramp url ([#8158](https://github.com/dynamic-labs/dynamic-auth/issues/8158)) ([8033299](https://github.com/dynamic-labs/dynamic-auth/commit/80332991551987a29b6ea7c8f66fd373956d875b))
|
|
16
|
+
* **QNTM-2927:** send users back to login on MM cancel ([#8149](https://github.com/dynamic-labs/dynamic-auth/issues/8149)) ([8e92702](https://github.com/dynamic-labs/dynamic-auth/commit/8e9270270220fc781da9c9235f86b29b9c4d2f28))
|
|
17
|
+
|
|
2
18
|
### [4.8.1](https://github.com/dynamic-labs/dynamic-auth/compare/v4.8.0...v4.8.1) (2025-02-25)
|
|
3
19
|
|
|
4
20
|
|
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.8.
|
|
3
|
+
"version": "4.8.2",
|
|
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.8.
|
|
21
|
-
"@dynamic-labs/iconic": "4.8.
|
|
22
|
-
"@dynamic-labs/logger": "4.8.
|
|
23
|
-
"@dynamic-labs/utils": "4.8.
|
|
20
|
+
"@dynamic-labs/assert-package-version": "4.8.2",
|
|
21
|
+
"@dynamic-labs/iconic": "4.8.2",
|
|
22
|
+
"@dynamic-labs/logger": "4.8.2",
|
|
23
|
+
"@dynamic-labs/utils": "4.8.2",
|
|
24
24
|
"eventemitter3": "5.0.1",
|
|
25
25
|
"util": "0.12.5"
|
|
26
26
|
},
|
|
@@ -346,6 +346,12 @@ var wallets = {
|
|
|
346
346
|
]
|
|
347
347
|
}
|
|
348
348
|
],
|
|
349
|
+
mobile: {
|
|
350
|
+
androidId: "org.toshi",
|
|
351
|
+
inAppBrowser: "cbwallet://dapp?url={{encodedDappURI}}",
|
|
352
|
+
iosId: "id1278383455"
|
|
353
|
+
},
|
|
354
|
+
mobileExperience: "in-app-browser",
|
|
349
355
|
name: "Coinbase",
|
|
350
356
|
shortName: "Coinbase Wallet (Solana)",
|
|
351
357
|
walletLimitations: {
|
package/wallet-book-fallbacks.js
CHANGED
|
@@ -342,6 +342,12 @@ var wallets = {
|
|
|
342
342
|
]
|
|
343
343
|
}
|
|
344
344
|
],
|
|
345
|
+
mobile: {
|
|
346
|
+
androidId: "org.toshi",
|
|
347
|
+
inAppBrowser: "cbwallet://dapp?url={{encodedDappURI}}",
|
|
348
|
+
iosId: "id1278383455"
|
|
349
|
+
},
|
|
350
|
+
mobileExperience: "in-app-browser",
|
|
345
351
|
name: "Coinbase",
|
|
346
352
|
shortName: "Coinbase Wallet (Solana)",
|
|
347
353
|
walletLimitations: {
|