@dynamic-labs/ethereum 1.1.0-alpha.7 → 1.1.0-alpha.8

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,21 @@
1
1
 
2
+ ## [1.1.0-alpha.8](https://github.com/dynamic-labs/DynamicAuth/compare/v1.1.0-alpha.7...v1.1.0-alpha.8) (2024-01-03)
3
+
4
+
5
+ ### Features
6
+
7
+ * add new sdk view section for text ([#4280](https://github.com/dynamic-labs/DynamicAuth/issues/4280)) ([457ae38](https://github.com/dynamic-labs/DynamicAuth/commit/457ae38cd2be8dae078f40b54ffc4704299d4ed9))
8
+ * add new setShowLinkNewWalletModal method ([f46447a](https://github.com/dynamic-labs/DynamicAuth/commit/f46447ab606f4fdbf55e5fef21dd98f8f2650e90))
9
+ * add pk export for hd wallets ([#4266](https://github.com/dynamic-labs/DynamicAuth/issues/4266)) ([44aac69](https://github.com/dynamic-labs/DynamicAuth/commit/44aac69580ed44e66eab971f87cb6061a3fadc90))
10
+ * add starknet support for sopelia ([#4248](https://github.com/dynamic-labs/DynamicAuth/issues/4248)) ([f9a0980](https://github.com/dynamic-labs/DynamicAuth/commit/f9a0980c3cd2d6d95c5dd17b179fbd0931f08b1a))
11
+ * enable hardware wallet for solana wallets ([#4275](https://github.com/dynamic-labs/DynamicAuth/issues/4275)) ([704b380](https://github.com/dynamic-labs/DynamicAuth/commit/704b380186618a5a5793e88f36ccbe84b59a2e4a))
12
+
13
+
14
+ ### Bug Fixes
15
+
16
+ * phantom solana not connecting on mobile ([#4284](https://github.com/dynamic-labs/DynamicAuth/issues/4284)) ([6ad75f1](https://github.com/dynamic-labs/DynamicAuth/commit/6ad75f152896459f5cf658227f998c246b6a572b))
17
+ * use bitcoin payment address for onramp ([#4273](https://github.com/dynamic-labs/DynamicAuth/issues/4273)) ([a2f54e8](https://github.com/dynamic-labs/DynamicAuth/commit/a2f54e812a11a91ee488eca64f14b5eeea1a8874))
18
+
2
19
  ## [1.1.0-alpha.7](https://github.com/dynamic-labs/DynamicAuth/compare/v1.1.0-alpha.6...v1.1.0-alpha.7) (2023-12-28)
3
20
 
4
21
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dynamic-labs/ethereum",
3
- "version": "1.1.0-alpha.7",
3
+ "version": "1.1.0-alpha.8",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "https://github.com/dynamic-labs/DynamicAuth.git",
@@ -32,12 +32,12 @@
32
32
  "@walletconnect/universal-provider": "2.10.6",
33
33
  "eventemitter3": "5.0.1",
34
34
  "buffer": "6.0.3",
35
- "@dynamic-labs/rpc-providers": "1.1.0-alpha.7",
36
- "@dynamic-labs/turnkey": "1.1.0-alpha.7",
37
- "@dynamic-labs/types": "1.1.0-alpha.7",
38
- "@dynamic-labs/utils": "1.1.0-alpha.7",
39
- "@dynamic-labs/wallet-book": "1.1.0-alpha.7",
40
- "@dynamic-labs/wallet-connector-core": "1.1.0-alpha.7",
35
+ "@dynamic-labs/rpc-providers": "1.1.0-alpha.8",
36
+ "@dynamic-labs/turnkey": "1.1.0-alpha.8",
37
+ "@dynamic-labs/types": "1.1.0-alpha.8",
38
+ "@dynamic-labs/utils": "1.1.0-alpha.8",
39
+ "@dynamic-labs/wallet-book": "1.1.0-alpha.8",
40
+ "@dynamic-labs/wallet-connector-core": "1.1.0-alpha.8",
41
41
  "stream": "0.0.2"
42
42
  },
43
43
  "peerDependencies": {
@@ -21,16 +21,11 @@ class PhantomEvm extends InjectedWalletBase {
21
21
  if (this.isInstalledOnBrowser()) {
22
22
  return _super.fetchPublicAddress.call(this);
23
23
  }
24
- const url = encodeURIComponent(window.location.toString());
25
- const ref = encodeURIComponent(window.location.origin);
26
- // samsung browser only supports native links, not universal links
27
24
  if (utils.isMobile()) {
28
- if (utils.isSamsungBrowser()) {
29
- window.location.assign(`phantom://browse/${url}?ref=${ref}`);
30
- }
31
- else {
32
- window.location.assign(`https://phantom.app/ul/browse/${url}?ref=${ref}`);
33
- }
25
+ utils.handleMobileWalletRedirect({
26
+ nativeLink: 'phantom://browse',
27
+ universalLink: 'https://phantom.app/ul/browse',
28
+ });
34
29
  }
35
30
  return undefined;
36
31
  });
@@ -1,5 +1,5 @@
1
1
  import { __awaiter } from '../../_virtual/_tslib.js';
2
- import { isMobile, isSamsungBrowser } from '@dynamic-labs/utils';
2
+ import { isMobile, handleMobileWalletRedirect } from '@dynamic-labs/utils';
3
3
  import { findWalletBookWallet } from '@dynamic-labs/wallet-book';
4
4
  import InjectedWalletBase from './InjectedWalletBase.js';
5
5
 
@@ -17,16 +17,11 @@ class PhantomEvm extends InjectedWalletBase {
17
17
  if (this.isInstalledOnBrowser()) {
18
18
  return _super.fetchPublicAddress.call(this);
19
19
  }
20
- const url = encodeURIComponent(window.location.toString());
21
- const ref = encodeURIComponent(window.location.origin);
22
- // samsung browser only supports native links, not universal links
23
20
  if (isMobile()) {
24
- if (isSamsungBrowser()) {
25
- window.location.assign(`phantom://browse/${url}?ref=${ref}`);
26
- }
27
- else {
28
- window.location.assign(`https://phantom.app/ul/browse/${url}?ref=${ref}`);
29
- }
21
+ handleMobileWalletRedirect({
22
+ nativeLink: 'phantom://browse',
23
+ universalLink: 'https://phantom.app/ul/browse',
24
+ });
30
25
  }
31
26
  return undefined;
32
27
  });