@dynamic-labs/global-wallet-client 4.8.3 → 4.8.5

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,30 @@
1
1
 
2
+ ### [4.8.5](https://github.com/dynamic-labs/dynamic-auth/compare/v4.8.4...v4.8.5) (2025-03-06)
3
+
4
+
5
+ ### Features
6
+
7
+ * evm connector can sign arbitrary transactions ([#8217](https://github.com/dynamic-labs/dynamic-auth/issues/8217)) ([c5b227c](https://github.com/dynamic-labs/dynamic-auth/commit/c5b227c5a5d527f3fc74b8c1c9d0247eaf35a016))
8
+
9
+
10
+ ### Bug Fixes
11
+
12
+ * optimize shadow dom re-renders ([#8193](https://github.com/dynamic-labs/dynamic-auth/issues/8193)) ([c97310c](https://github.com/dynamic-labs/dynamic-auth/commit/c97310c9f3eb73b9f69b0b48a79e6bbd93d2e94a))
13
+ * show multichain wallets with zerodev ([#8220](https://github.com/dynamic-labs/dynamic-auth/issues/8220)) ([a48689d](https://github.com/dynamic-labs/dynamic-auth/commit/a48689da1303512551bdf8114de45493d33221a3))
14
+
15
+ ### [4.8.4](https://github.com/dynamic-labs/dynamic-auth/compare/v4.8.3...v4.8.4) (2025-03-05)
16
+
17
+
18
+ ### Features
19
+
20
+ * add iframe deeplink support for iOS Safari ([#8168](https://github.com/dynamic-labs/dynamic-auth/issues/8168)) ([cc4a6b9](https://github.com/dynamic-labs/dynamic-auth/commit/cc4a6b94b8e1b36b303ea5bf86734ba2e73bcef9))
21
+ * add binance bitcoin wallet support ([#8089](ttps://github.com/dynamic-labs/dynamic-auth/issues/8089)) ([c8a3a41](https://github.com/dynamic-labs/dynamic-auth/commit/c8a3a418e4f431b3442e5bc7332530b777e223c8))
22
+
23
+
24
+ ### Bug Fixes
25
+
26
+ * mobile wallet iframe redirects ([#8213](https://github.com/dynamic-labs/dynamic-auth/issues/8213)) ([96ea428](https://github.com/dynamic-labs/dynamic-auth/commit/96ea428375232e57379faef6e2a61dd818325777))
27
+
2
28
  ### [4.8.3](https://github.com/dynamic-labs/dynamic-auth/compare/v4.8.2...v4.8.3) (2025-03-04)
3
29
 
4
30
 
package/package.cjs CHANGED
@@ -3,6 +3,6 @@
3
3
 
4
4
  Object.defineProperty(exports, '__esModule', { value: true });
5
5
 
6
- var version = "4.8.3";
6
+ var version = "4.8.5";
7
7
 
8
8
  exports.version = version;
package/package.js CHANGED
@@ -1,4 +1,4 @@
1
1
  'use client'
2
- var version = "4.8.3";
2
+ var version = "4.8.5";
3
3
 
4
4
  export { version };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dynamic-labs/global-wallet-client",
3
- "version": "4.8.3",
3
+ "version": "4.8.5",
4
4
  "description": "Core package for building Dynamic's Global Wallet",
5
5
  "author": "Dynamic Labs, Inc.",
6
6
  "license": "MIT",
@@ -39,11 +39,11 @@
39
39
  },
40
40
  "homepage": "https://www.dynamic.xyz/",
41
41
  "dependencies": {
42
- "@dynamic-labs/assert-package-version": "4.8.3",
43
- "@dynamic-labs/logger": "4.8.3",
44
- "@dynamic-labs/store": "4.8.3",
45
- "@dynamic-labs/types": "4.8.3",
46
- "@dynamic-labs/utils": "4.8.3",
42
+ "@dynamic-labs/assert-package-version": "4.8.5",
43
+ "@dynamic-labs/logger": "4.8.5",
44
+ "@dynamic-labs/store": "4.8.5",
45
+ "@dynamic-labs/types": "4.8.5",
46
+ "@dynamic-labs/utils": "4.8.5",
47
47
  "eventemitter3": "5.0.1"
48
48
  },
49
49
  "peerDependencies": {
@@ -23,6 +23,7 @@ const createConnectAction = ({ store, openPopup, onConnect }) => (_a) => _tslib.
23
23
  store.setInitialConnectionState({
24
24
  connection: {
25
25
  expiresAt,
26
+ // TODO: use PlatformService
26
27
  origin: window.location.origin,
27
28
  sharedSecret,
28
29
  },
@@ -19,6 +19,7 @@ const createConnectAction = ({ store, openPopup, onConnect }) => (_a) => __await
19
19
  store.setInitialConnectionState({
20
20
  connection: {
21
21
  expiresAt,
22
+ // TODO: use PlatformService
22
23
  origin: window.location.origin,
23
24
  sharedSecret,
24
25
  },
@@ -31,6 +31,7 @@ const createPopupOpener = ({ environmentId, popupUrl, popupWidth = 420, popupHei
31
31
  // Setup popup URL and data
32
32
  popupFinalUrl.hash = `/${pathname}`;
33
33
  popupFinalUrl.searchParams.set('provider_env_id', environmentId);
34
+ // TODO: use PlatformService
34
35
  popupFinalUrl.searchParams.set('requester_origin', window.location.origin);
35
36
  if (popup === null) {
36
37
  const features = getCenteredPopupFeatures.getCenteredPopupFeatures({
@@ -27,6 +27,7 @@ const createPopupOpener = ({ environmentId, popupUrl, popupWidth = 420, popupHei
27
27
  // Setup popup URL and data
28
28
  popupFinalUrl.hash = `/${pathname}`;
29
29
  popupFinalUrl.searchParams.set('provider_env_id', environmentId);
30
+ // TODO: use PlatformService
30
31
  popupFinalUrl.searchParams.set('requester_origin', window.location.origin);
31
32
  if (popup === null) {
32
33
  const features = getCenteredPopupFeatures({