@dynamic-labs/ethereum 3.0.0-alpha.24 → 3.0.0-alpha.25
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
CHANGED
|
@@ -1,4 +1,13 @@
|
|
|
1
1
|
|
|
2
|
+
## [3.0.0-alpha.25](https://github.com/dynamic-labs/DynamicAuth/compare/v3.0.0-alpha.24...v3.0.0-alpha.25) (2024-07-24)
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
### Features
|
|
6
|
+
|
|
7
|
+
* add ability to specify mobileExperience on a wallet by wallet ([#6195](https://github.com/dynamic-labs/DynamicAuth/issues/6195)) ([947fd0a](https://github.com/dynamic-labs/DynamicAuth/commit/947fd0ab864d1995a1ef35a51c77a585649fd43f))
|
|
8
|
+
* global wallet new package ([#6385](https://github.com/dynamic-labs/DynamicAuth/issues/6385)) ([230a0f3](https://github.com/dynamic-labs/DynamicAuth/commit/230a0f380c2bc8c69619daed0c7f3280da8b8bb9))
|
|
9
|
+
* solana send balance modal for injected ([#6405](https://github.com/dynamic-labs/DynamicAuth/issues/6405)) ([b8aa84b](https://github.com/dynamic-labs/DynamicAuth/commit/b8aa84b58eb71791405bf68b6c46c40bebb170f8))
|
|
10
|
+
|
|
2
11
|
## [3.0.0-alpha.24](https://github.com/dynamic-labs/DynamicAuth/compare/v3.0.0-alpha.23...v3.0.0-alpha.24) (2024-07-20)
|
|
3
12
|
|
|
4
13
|
## [3.0.0-alpha.23](https://github.com/dynamic-labs/DynamicAuth/compare/v3.0.0-alpha.22...v3.0.0-alpha.23) (2024-07-19)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dynamic-labs/ethereum",
|
|
3
|
-
"version": "3.0.0-alpha.
|
|
3
|
+
"version": "3.0.0-alpha.25",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "git+https://github.com/dynamic-labs/dynamic-auth.git",
|
|
@@ -31,13 +31,13 @@
|
|
|
31
31
|
"@walletconnect/ethereum-provider": "2.11.2",
|
|
32
32
|
"eventemitter3": "5.0.1",
|
|
33
33
|
"buffer": "6.0.3",
|
|
34
|
-
"@dynamic-labs/embedded-wallet-evm": "3.0.0-alpha.
|
|
35
|
-
"@dynamic-labs/rpc-provider-ethereum": "3.0.0-alpha.
|
|
36
|
-
"@dynamic-labs/types": "3.0.0-alpha.
|
|
37
|
-
"@dynamic-labs/utils": "3.0.0-alpha.
|
|
38
|
-
"@dynamic-labs/viem-utils": "3.0.0-alpha.
|
|
39
|
-
"@dynamic-labs/wallet-book": "3.0.0-alpha.
|
|
40
|
-
"@dynamic-labs/wallet-connector-core": "3.0.0-alpha.
|
|
34
|
+
"@dynamic-labs/embedded-wallet-evm": "3.0.0-alpha.25",
|
|
35
|
+
"@dynamic-labs/rpc-provider-ethereum": "3.0.0-alpha.25",
|
|
36
|
+
"@dynamic-labs/types": "3.0.0-alpha.25",
|
|
37
|
+
"@dynamic-labs/utils": "3.0.0-alpha.25",
|
|
38
|
+
"@dynamic-labs/viem-utils": "3.0.0-alpha.25",
|
|
39
|
+
"@dynamic-labs/wallet-book": "3.0.0-alpha.25",
|
|
40
|
+
"@dynamic-labs/wallet-connector-core": "3.0.0-alpha.25",
|
|
41
41
|
"stream": "0.0.2"
|
|
42
42
|
},
|
|
43
43
|
"peerDependencies": {
|
|
@@ -39,7 +39,7 @@ class InjectedWalletBase extends EthWalletConnector.EthWalletConnector {
|
|
|
39
39
|
// when the user is in a webview, customers should set the deepLinkPreference prop to universal,
|
|
40
40
|
// in which case this condition will be false, and the SDK will use WalletConnect (if available)
|
|
41
41
|
if (((_b = (_a = this.wallet) === null || _a === void 0 ? void 0 : _a.mobile) === null || _b === void 0 ? void 0 : _b.inAppBrowser) &&
|
|
42
|
-
this.
|
|
42
|
+
this.mobileExperience === 'in-app-browser' &&
|
|
43
43
|
utils.isMobile()) {
|
|
44
44
|
return this;
|
|
45
45
|
}
|
|
@@ -37,7 +37,7 @@ class InjectedWalletBase extends EthWalletConnector {
|
|
|
37
37
|
// when the user is in a webview, customers should set the deepLinkPreference prop to universal,
|
|
38
38
|
// in which case this condition will be false, and the SDK will use WalletConnect (if available)
|
|
39
39
|
if (((_b = (_a = this.wallet) === null || _a === void 0 ? void 0 : _a.mobile) === null || _b === void 0 ? void 0 : _b.inAppBrowser) &&
|
|
40
|
-
this.
|
|
40
|
+
this.mobileExperience === 'in-app-browser' &&
|
|
41
41
|
isMobile()) {
|
|
42
42
|
return this;
|
|
43
43
|
}
|