@dynamic-labs/ethereum 2.0.0-alpha.27 → 2.0.0-alpha.29

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,32 @@
1
1
 
2
+ ## [2.0.0-alpha.29](https://github.com/dynamic-labs/DynamicAuth/compare/v2.0.0-alpha.28...v2.0.0-alpha.29) (2024-04-10)
3
+
4
+
5
+ ### ⚠ BREAKING CHANGES
6
+
7
+ * replace sdk-api with sdk-api-core (#5280)
8
+
9
+ ### Features
10
+
11
+ * add dynamic client context ([#5250](https://github.com/dynamic-labs/DynamicAuth/issues/5250)) ([778ebe6](https://github.com/dynamic-labs/DynamicAuth/commit/778ebe6313e0bf3c9876feb6eff5bf152c15c55e))
12
+ * **webview-controller:** fetch manifest and render Dynamic SDK ([#5287](https://github.com/dynamic-labs/DynamicAuth/issues/5287)) ([00e84ac](https://github.com/dynamic-labs/DynamicAuth/commit/00e84acc4bdda92bad91108788f8d7882d0790d6))
13
+
14
+
15
+ ### Bug Fixes
16
+
17
+ * don't render modal header component if there's no content ([#5269](https://github.com/dynamic-labs/DynamicAuth/issues/5269)) ([f4d7266](https://github.com/dynamic-labs/DynamicAuth/commit/f4d72668a5243108649774c6581733655f385cab))
18
+ * don't show get extension button when there are no download links ([#5276](https://github.com/dynamic-labs/DynamicAuth/issues/5276)) ([e8cf660](https://github.com/dynamic-labs/DynamicAuth/commit/e8cf66076a9914881a8edda69feb2fb192ac63a3))
19
+
20
+
21
+ * replace sdk-api with sdk-api-core ([#5280](https://github.com/dynamic-labs/DynamicAuth/issues/5280)) ([da4b695](https://github.com/dynamic-labs/DynamicAuth/commit/da4b6955a81d6bfb5c994cd62e21e9ae11a4f454))
22
+
23
+ ## [2.0.0-alpha.28](https://github.com/dynamic-labs/DynamicAuth/compare/v2.0.0-alpha.27...v2.0.0-alpha.28) (2024-04-10)
24
+
25
+
26
+ ### Bug Fixes
27
+
28
+ * improve bridge connect experience on mobile ([#5283](https://github.com/dynamic-labs/DynamicAuth/issues/5283)) ([155e4a9](https://github.com/dynamic-labs/DynamicAuth/commit/155e4a99e2cf5f78a1a5e91e774acbf170d6b083))
29
+
2
30
  ## [2.0.0-alpha.27](https://github.com/dynamic-labs/DynamicAuth/compare/v2.0.0-alpha.26...v2.0.0-alpha.27) (2024-04-09)
3
31
 
4
32
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dynamic-labs/ethereum",
3
- "version": "2.0.0-alpha.27",
3
+ "version": "2.0.0-alpha.29",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "https://github.com/dynamic-labs/DynamicAuth.git",
@@ -30,13 +30,13 @@
30
30
  "@walletconnect/ethereum-provider": "2.11.2",
31
31
  "eventemitter3": "5.0.1",
32
32
  "buffer": "6.0.3",
33
- "@dynamic-labs/rpc-provider-ethereum": "2.0.0-alpha.27",
34
- "@dynamic-labs/turnkey": "2.0.0-alpha.27",
35
- "@dynamic-labs/types": "2.0.0-alpha.27",
36
- "@dynamic-labs/utils": "2.0.0-alpha.27",
37
- "@dynamic-labs/viem-utils": "2.0.0-alpha.27",
38
- "@dynamic-labs/wallet-book": "2.0.0-alpha.27",
39
- "@dynamic-labs/wallet-connector-core": "2.0.0-alpha.27",
33
+ "@dynamic-labs/rpc-provider-ethereum": "2.0.0-alpha.29",
34
+ "@dynamic-labs/turnkey": "2.0.0-alpha.29",
35
+ "@dynamic-labs/types": "2.0.0-alpha.29",
36
+ "@dynamic-labs/utils": "2.0.0-alpha.29",
37
+ "@dynamic-labs/viem-utils": "2.0.0-alpha.29",
38
+ "@dynamic-labs/wallet-book": "2.0.0-alpha.29",
39
+ "@dynamic-labs/wallet-connector-core": "2.0.0-alpha.29",
40
40
  "stream": "0.0.2"
41
41
  },
42
42
  "peerDependencies": {
@@ -271,7 +271,7 @@ class WalletConnect extends EthWalletConnector.EthWalletConnector {
271
271
  throw new utils.DynamicError('No provider found');
272
272
  }
273
273
  }
274
- const metadata = walletBook.getWalletBookWallet(this.walletBook, this.key);
274
+ const metadata = walletBook.getWalletBookWallet(this.walletBook, this.key, this.walletFallback);
275
275
  walletConnectorCore.performPlatformSpecificConnectionMethod(WalletConnect.provider.signer.uri, metadata, {
276
276
  onDesktopUri: opts === null || opts === void 0 ? void 0 : opts.onDesktopUri,
277
277
  onDisplayUri: opts === null || opts === void 0 ? void 0 : opts.onDisplayUri,
@@ -262,7 +262,7 @@ class WalletConnect extends EthWalletConnector {
262
262
  throw new DynamicError('No provider found');
263
263
  }
264
264
  }
265
- const metadata = getWalletBookWallet(this.walletBook, this.key);
265
+ const metadata = getWalletBookWallet(this.walletBook, this.key, this.walletFallback);
266
266
  performPlatformSpecificConnectionMethod(WalletConnect.provider.signer.uri, metadata, {
267
267
  onDesktopUri: opts === null || opts === void 0 ? void 0 : opts.onDesktopUri,
268
268
  onDisplayUri: opts === null || opts === void 0 ? void 0 : opts.onDisplayUri,