@dynamic-labs/wallet-book 3.0.2 → 3.0.3
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 +8 -0
- package/package.json +4 -4
- package/wallet-book-fallbacks.cjs +6 -0
- package/wallet-book-fallbacks.js +6 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,4 +1,12 @@
|
|
|
1
1
|
|
|
2
|
+
### [3.0.3](https://github.com/dynamic-labs/DynamicAuth/compare/v3.0.2...v3.0.3) (2024-09-16)
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
### Bug Fixes
|
|
6
|
+
|
|
7
|
+
* deeplinking for magic eden ethereum and btc ([#6919](https://github.com/dynamic-labs/DynamicAuth/issues/6919)) ([822efaa](https://github.com/dynamic-labs/DynamicAuth/commit/822efaabdec4415a031afabeef13b66ae7d3cd7c))
|
|
8
|
+
* sendBitcoin for unisat ([#6903](https://github.com/dynamic-labs/DynamicAuth/issues/6903)) ([71f726d](https://github.com/dynamic-labs/DynamicAuth/commit/71f726df7d8ff8307048ba1390c4847a9b16ce64))
|
|
9
|
+
|
|
2
10
|
### [3.0.2](https://github.com/dynamic-labs/DynamicAuth/compare/v3.0.1...v3.0.2) (2024-09-13)
|
|
3
11
|
|
|
4
12
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dynamic-labs/wallet-book",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.3",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "git+https://github.com/dynamic-labs/dynamic-auth.git",
|
|
@@ -26,9 +26,9 @@
|
|
|
26
26
|
},
|
|
27
27
|
"dependencies": {
|
|
28
28
|
"zod": "3.22.4",
|
|
29
|
-
"@dynamic-labs/iconic": "3.0.
|
|
30
|
-
"@dynamic-labs/logger": "3.0.
|
|
31
|
-
"@dynamic-labs/utils": "3.0.
|
|
29
|
+
"@dynamic-labs/iconic": "3.0.3",
|
|
30
|
+
"@dynamic-labs/logger": "3.0.3",
|
|
31
|
+
"@dynamic-labs/utils": "3.0.3",
|
|
32
32
|
"util": "0.12.5"
|
|
33
33
|
},
|
|
34
34
|
"peerDependencies": {
|
|
@@ -906,6 +906,12 @@ var wallets = {
|
|
|
906
906
|
]
|
|
907
907
|
}
|
|
908
908
|
],
|
|
909
|
+
mobile: {
|
|
910
|
+
androidId: "com.magiceden.wallet",
|
|
911
|
+
inAppBrowser: "magiceden://browser/{{encodedDappURI}}",
|
|
912
|
+
iosId: "id6478631482",
|
|
913
|
+
universal: "https://magiceden.io/browser/{{encodedDappURI}}"
|
|
914
|
+
},
|
|
909
915
|
name: "Magic Eden",
|
|
910
916
|
shortName: "Magic Eden (Bitcoin)",
|
|
911
917
|
walletLimitations: {
|
package/wallet-book-fallbacks.js
CHANGED
|
@@ -902,6 +902,12 @@ var wallets = {
|
|
|
902
902
|
]
|
|
903
903
|
}
|
|
904
904
|
],
|
|
905
|
+
mobile: {
|
|
906
|
+
androidId: "com.magiceden.wallet",
|
|
907
|
+
inAppBrowser: "magiceden://browser/{{encodedDappURI}}",
|
|
908
|
+
iosId: "id6478631482",
|
|
909
|
+
universal: "https://magiceden.io/browser/{{encodedDappURI}}"
|
|
910
|
+
},
|
|
905
911
|
name: "Magic Eden",
|
|
906
912
|
shortName: "Magic Eden (Bitcoin)",
|
|
907
913
|
walletLimitations: {
|