@dynamic-labs/multi-wallet 0.16.9 → 0.16.11
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 +14 -0
- package/package.json +4 -4
- package/src/multi-wallet.cjs +0 -8
- package/src/multi-wallet.js +0 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,4 +1,18 @@
|
|
|
1
1
|
|
|
2
|
+
### [0.16.11](https://github.com/dynamic-labs/DynamicAuth/compare/v0.16.10...v0.16.11) (2023-05-03)
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
### Bug Fixes
|
|
6
|
+
|
|
7
|
+
* Wallet Connect menu on mobile ([#2019](https://github.com/dynamic-labs/DynamicAuth/issues/2019)) ([88e0ab9](https://github.com/dynamic-labs/DynamicAuth/commit/88e0ab9488e365046bab8d98038c1e3acc9d8503))
|
|
8
|
+
|
|
9
|
+
### [0.16.10](https://github.com/dynamic-labs/DynamicAuth/compare/v0.16.9...v0.16.10) (2023-04-28)
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
### Bug Fixes
|
|
13
|
+
|
|
14
|
+
* update setPrimaryWallet return type ([#1986](https://github.com/dynamic-labs/DynamicAuth/issues/1986)) ([bb6a832](https://github.com/dynamic-labs/DynamicAuth/commit/bb6a83270be424650bc4807f29fda5a1f9475df9))
|
|
15
|
+
|
|
2
16
|
### [0.16.9](https://github.com/dynamic-labs/DynamicAuth/compare/v0.16.8...v0.16.9) (2023-04-26)
|
|
3
17
|
|
|
4
18
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dynamic-labs/multi-wallet",
|
|
3
|
-
"version": "0.16.
|
|
3
|
+
"version": "0.16.11",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "https://github.com/dynamic-labs/DynamicAuth.git",
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
"buffer": "^6.0.3",
|
|
11
11
|
"deepmerge": "^4.3.1",
|
|
12
12
|
"@dynamic-labs/sdk-api": "0.0.174",
|
|
13
|
-
"@dynamic-labs/wallet-book": "^0.0.
|
|
13
|
+
"@dynamic-labs/wallet-book": "^0.0.14",
|
|
14
14
|
"starknet": "^3.19.0",
|
|
15
15
|
"ethers": "^5.7.2",
|
|
16
16
|
"@randlabs/myalgo-connect": "^1.4.2",
|
|
@@ -28,8 +28,8 @@
|
|
|
28
28
|
"magic-sdk": "^16.0.1",
|
|
29
29
|
"@keplr-wallet/provider": "0.11.56",
|
|
30
30
|
"@keplr-wallet/types": "^0.11.51",
|
|
31
|
-
"@dynamic-labs/logger": "0.16.
|
|
32
|
-
"@dynamic-labs/wallet-connector-core": "0.16.
|
|
31
|
+
"@dynamic-labs/logger": "0.16.11",
|
|
32
|
+
"@dynamic-labs/wallet-connector-core": "0.16.11"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
35
|
"@walletconnect/types": "^2.2.1"
|
package/src/multi-wallet.cjs
CHANGED
|
@@ -198,14 +198,6 @@ const filterWalletsForPlatform = (wallets) => wallets.filter((wallet) => {
|
|
|
198
198
|
const handleMobileWalletFilter = (wallet, metadata) => {
|
|
199
199
|
if (!metadata.mobile)
|
|
200
200
|
return false;
|
|
201
|
-
/**
|
|
202
|
-
* Custom check added with DYN-1489 for mobile version only:
|
|
203
|
-
* it shows a WalletConnect listItem that wraps-up all the WalletConnect wallets
|
|
204
|
-
* in a new wallet-list view.
|
|
205
|
-
*/
|
|
206
|
-
if (wallet.isWalletConnect && wallet.name === 'WalletConnect') {
|
|
207
|
-
return true;
|
|
208
|
-
}
|
|
209
201
|
/**
|
|
210
202
|
* WalletConnect provides a "universal" and "native" deep link. They recommend using
|
|
211
203
|
* the universal deep link over the native one due to UX differences, and our current
|
package/src/multi-wallet.js
CHANGED
|
@@ -195,14 +195,6 @@ const filterWalletsForPlatform = (wallets) => wallets.filter((wallet) => {
|
|
|
195
195
|
const handleMobileWalletFilter = (wallet, metadata) => {
|
|
196
196
|
if (!metadata.mobile)
|
|
197
197
|
return false;
|
|
198
|
-
/**
|
|
199
|
-
* Custom check added with DYN-1489 for mobile version only:
|
|
200
|
-
* it shows a WalletConnect listItem that wraps-up all the WalletConnect wallets
|
|
201
|
-
* in a new wallet-list view.
|
|
202
|
-
*/
|
|
203
|
-
if (wallet.isWalletConnect && wallet.name === 'WalletConnect') {
|
|
204
|
-
return true;
|
|
205
|
-
}
|
|
206
198
|
/**
|
|
207
199
|
* WalletConnect provides a "universal" and "native" deep link. They recommend using
|
|
208
200
|
* the universal deep link over the native one due to UX differences, and our current
|