@dynamic-labs/ethereum 0.19.0-alpha.21 → 0.19.0-alpha.23

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
+ ## [0.19.0-alpha.23](https://github.com/dynamic-labs/DynamicAuth/compare/v0.19.0-alpha.22...v0.19.0-alpha.23) (2023-10-24)
3
+
4
+
5
+ ### Bug Fixes
6
+
7
+ * better handling of CB wallet disconnect + upgrade to 3.7.2 ([#3659](https://github.com/dynamic-labs/DynamicAuth/issues/3659)) ([42a0857](https://github.com/dynamic-labs/DynamicAuth/commit/42a0857c66101cde901661e844c66ba324ff641b))
8
+ * calculate the settings override in real time ([#3671](https://github.com/dynamic-labs/DynamicAuth/issues/3671)) ([06cf28d](https://github.com/dynamic-labs/DynamicAuth/commit/06cf28d4dc29dda21312691985ed1b903d3120cc))
9
+ * handle rp.id edgecases for private domains due to webauthn restrictions on scoping to them ([#3658](https://github.com/dynamic-labs/DynamicAuth/issues/3658)) ([7067bc5](https://github.com/dynamic-labs/DynamicAuth/commit/7067bc5110afb8a010f13c2b2e0170faaa840995))
10
+ * twitter origin check should also look for current window location origin ([#3676](https://github.com/dynamic-labs/DynamicAuth/issues/3676)) ([6c30989](https://github.com/dynamic-labs/DynamicAuth/commit/6c30989d4cde3516a177f6290b5376c5d4c61cbc))
11
+
12
+ ## [0.19.0-alpha.22](https://github.com/dynamic-labs/DynamicAuth/compare/v0.19.0-alpha.21...v0.19.0-alpha.22) (2023-10-23)
13
+
14
+
15
+ ### ⚠ BREAKING CHANGES
16
+
17
+ * rename unlinkConnectedWallet to disconnectWallet (#3595)
18
+
19
+ ### Features
20
+
21
+ * rename unlinkConnectedWallet to disconnectWallet ([#3595](https://github.com/dynamic-labs/DynamicAuth/issues/3595)) ([ac4a59e](https://github.com/dynamic-labs/DynamicAuth/commit/ac4a59ee5e50814fdb4190f07f5905b0c1499c7d))
22
+
23
+
24
+ ### Bug Fixes
25
+
26
+ * add support for apple oauth ([#3568](https://github.com/dynamic-labs/DynamicAuth/issues/3568)) ([10455fd](https://github.com/dynamic-labs/DynamicAuth/commit/10455fd74f22c6a1d66409fc01650d6ec68c2156))
27
+ * only process oauth message coming from the expected origin ([#3653](https://github.com/dynamic-labs/DynamicAuth/issues/3653)) ([3bf48d4](https://github.com/dynamic-labs/DynamicAuth/commit/3bf48d4a61fa624c30ff11861e6f5db4c33ef5c3))
28
+ * **SignMessagePreview:** safely render message to sign ([#3655](https://github.com/dynamic-labs/DynamicAuth/issues/3655)) ([02b520a](https://github.com/dynamic-labs/DynamicAuth/commit/02b520a2ddb6ba4042bf630de4cf80259c4fac37))
29
+
2
30
  ## [0.19.0-alpha.21](https://github.com/dynamic-labs/DynamicAuth/compare/v0.19.0-alpha.20...v0.19.0-alpha.21) (2023-10-23)
3
31
 
4
32
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dynamic-labs/ethereum",
3
- "version": "0.19.0-alpha.21",
3
+ "version": "0.19.0-alpha.23",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "https://github.com/dynamic-labs/DynamicAuth.git",
@@ -26,18 +26,18 @@
26
26
  "./package.json": "./package.json"
27
27
  },
28
28
  "dependencies": {
29
- "@coinbase/wallet-sdk": "3.6.4",
29
+ "@coinbase/wallet-sdk": "3.7.2",
30
30
  "@walletconnect/client": "1.8.0",
31
31
  "@walletconnect/ethereum-provider": "1.8.0",
32
32
  "@walletconnect/universal-provider": "2.10.1",
33
33
  "eventemitter3": "5.0.1",
34
34
  "buffer": "6.0.3",
35
- "@dynamic-labs/rpc-providers": "0.19.0-alpha.21",
36
- "@dynamic-labs/turnkey": "0.19.0-alpha.21",
37
- "@dynamic-labs/types": "0.19.0-alpha.21",
38
- "@dynamic-labs/utils": "0.19.0-alpha.21",
39
- "@dynamic-labs/wallet-book": "0.19.0-alpha.21",
40
- "@dynamic-labs/wallet-connector-core": "0.19.0-alpha.21",
35
+ "@dynamic-labs/rpc-providers": "0.19.0-alpha.23",
36
+ "@dynamic-labs/turnkey": "0.19.0-alpha.23",
37
+ "@dynamic-labs/types": "0.19.0-alpha.23",
38
+ "@dynamic-labs/utils": "0.19.0-alpha.23",
39
+ "@dynamic-labs/wallet-book": "0.19.0-alpha.23",
40
+ "@dynamic-labs/wallet-connector-core": "0.19.0-alpha.23",
41
41
  "stream": "0.0.2"
42
42
  },
43
43
  "peerDependencies": {
@@ -25,6 +25,7 @@ const getCoinbaseProvider = ({ opts: { appLogoUrl, appName = '', evmNetworks = [
25
25
  },
26
26
  },
27
27
  headlessMode: true,
28
+ reloadOnDisconnect: false,
28
29
  });
29
30
  const network = evmNetworks === null || evmNetworks === void 0 ? void 0 : evmNetworks.find((network) => network.chainId === chainId);
30
31
  const rpcUrl = ((_a = network === null || network === void 0 ? void 0 : network.privateCustomerRpcUrls) === null || _a === void 0 ? void 0 : _a[0]) ||
@@ -35,10 +36,11 @@ const getCoinbaseProvider = ({ opts: { appLogoUrl, appName = '', evmNetworks = [
35
36
  return coinbaseProvider;
36
37
  };
37
38
  const killCoinbaseSession = () => _tslib.__awaiter(void 0, void 0, void 0, function* () {
38
- if (coinbaseProvider) {
39
- coinbaseProvider.close();
40
- coinbaseProvider.disconnect();
41
- }
39
+ yield (coinbaseProvider === null || coinbaseProvider === void 0 ? void 0 : coinbaseProvider.close());
40
+ coinbaseProvider === null || coinbaseProvider === void 0 ? void 0 : coinbaseProvider.disconnect();
41
+ // We needed to remove the provider, because after a disconnect the initial settings that
42
+ // were set in the SDK reset, and they need to be initialized again.
43
+ coinbaseProvider = undefined;
42
44
  });
43
45
  const fetchPublicAddress = (coinbaseProviderOpts, opts) => _tslib.__awaiter(void 0, void 0, void 0, function* () {
44
46
  var _a;
@@ -21,6 +21,7 @@ const getCoinbaseProvider = ({ opts: { appLogoUrl, appName = '', evmNetworks = [
21
21
  },
22
22
  },
23
23
  headlessMode: true,
24
+ reloadOnDisconnect: false,
24
25
  });
25
26
  const network = evmNetworks === null || evmNetworks === void 0 ? void 0 : evmNetworks.find((network) => network.chainId === chainId);
26
27
  const rpcUrl = ((_a = network === null || network === void 0 ? void 0 : network.privateCustomerRpcUrls) === null || _a === void 0 ? void 0 : _a[0]) ||
@@ -31,10 +32,11 @@ const getCoinbaseProvider = ({ opts: { appLogoUrl, appName = '', evmNetworks = [
31
32
  return coinbaseProvider;
32
33
  };
33
34
  const killCoinbaseSession = () => __awaiter(void 0, void 0, void 0, function* () {
34
- if (coinbaseProvider) {
35
- coinbaseProvider.close();
36
- coinbaseProvider.disconnect();
37
- }
35
+ yield (coinbaseProvider === null || coinbaseProvider === void 0 ? void 0 : coinbaseProvider.close());
36
+ coinbaseProvider === null || coinbaseProvider === void 0 ? void 0 : coinbaseProvider.disconnect();
37
+ // We needed to remove the provider, because after a disconnect the initial settings that
38
+ // were set in the SDK reset, and they need to be initialized again.
39
+ coinbaseProvider = undefined;
38
40
  });
39
41
  const fetchPublicAddress = (coinbaseProviderOpts, opts) => __awaiter(void 0, void 0, void 0, function* () {
40
42
  var _a;