@dynamic-labs/webview-messages 4.88.5 → 4.88.6

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,12 @@
1
1
 
2
+ ### [4.88.6](https://github.com/dynamic-labs/dynamic-auth/compare/v4.88.5...v4.88.6) (2026-06-13)
3
+
4
+
5
+ ### Bug Fixes
6
+
7
+ * **DynamicBridgeWidget:** prevent bridge chain sync from reverting manual wallet switches ([#11560](https://github.com/dynamic-labs/dynamic-auth/issues/11560)) ([40c4973](https://github.com/dynamic-labs/dynamic-auth/commit/40c4973761b3e887577664f72f89d1d6ba285ea3))
8
+ * resolve EOA wallet client on the correct chain for EIP-7702 smart wallets ([#11564](https://github.com/dynamic-labs/dynamic-auth/issues/11564)) ([893b083](https://github.com/dynamic-labs/dynamic-auth/commit/893b0837a450ec683ccd09f2bb54204b77b6bd50))
9
+
2
10
  ### [4.88.5](https://github.com/dynamic-labs/dynamic-auth/compare/v4.88.4...v4.88.5) (2026-06-11)
3
11
 
4
12
 
@@ -6502,4 +6510,4 @@ Enjoy!
6502
6510
  ### Bug Fixes
6503
6511
 
6504
6512
  * **view-context:** refactor view context to have initial view ([#2268](https://github.com/dynamic-labs/DynamicAuth/issues/2268)) ([0afe6ae](https://github.com/dynamic-labs/DynamicAuth/commit/0afe6ae469f62fd16fd8471322f9295957f607f6))
6505
- * **wcv2:** upgrade universal p
6513
+ * **wcv2:** upgrade universal p
package/package.cjs CHANGED
@@ -3,6 +3,6 @@
3
3
 
4
4
  Object.defineProperty(exports, '__esModule', { value: true });
5
5
 
6
- var version = "4.88.5";
6
+ var version = "4.88.6";
7
7
 
8
8
  exports.version = version;
package/package.js CHANGED
@@ -1,4 +1,4 @@
1
1
  'use client'
2
- var version = "4.88.5";
2
+ var version = "4.88.6";
3
3
 
4
4
  export { version };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dynamic-labs/webview-messages",
3
- "version": "4.88.5",
3
+ "version": "4.88.6",
4
4
  "description": "A package to define messages for the webview-controller",
5
5
  "author": "Dynamic Labs, Inc.",
6
6
  "license": "MIT",
@@ -18,16 +18,16 @@
18
18
  "./package.json": "./package.json"
19
19
  },
20
20
  "dependencies": {
21
- "@dynamic-labs/ethereum-gasless-core": "4.88.5",
21
+ "@dynamic-labs/ethereum-gasless-core": "4.88.6",
22
22
  "@dynamic-labs/sdk-api-core": "0.0.1015",
23
23
  "@dynamic-labs-sdk/client": "1.8.2",
24
- "@dynamic-labs/assert-package-version": "4.88.5",
25
- "@dynamic-labs/locale": "4.88.5",
26
- "@dynamic-labs/logger": "4.88.5",
27
- "@dynamic-labs/message-transport": "4.88.5",
28
- "@dynamic-labs/types": "4.88.5",
29
- "@dynamic-labs/wallet-connector-core": "4.88.5",
30
- "@dynamic-labs/webauthn": "4.88.5"
24
+ "@dynamic-labs/assert-package-version": "4.88.6",
25
+ "@dynamic-labs/locale": "4.88.6",
26
+ "@dynamic-labs/logger": "4.88.6",
27
+ "@dynamic-labs/message-transport": "4.88.6",
28
+ "@dynamic-labs/types": "4.88.6",
29
+ "@dynamic-labs/wallet-connector-core": "4.88.6",
30
+ "@dynamic-labs/webauthn": "4.88.6"
31
31
  },
32
32
  "peerDependencies": {}
33
33
  }
@@ -8,6 +8,12 @@ export type EthRequestWithAddressParams = {
8
8
  * EOA wallet instead.
9
9
  */
10
10
  useEoaWallet?: boolean;
11
+ /**
12
+ * Chain the requesting wallet client is bound to. Used to resolve the
13
+ * wallet client on the correct network when routing to the underlying
14
+ * EOA wallet, which does not follow the smart wallet's network switches.
15
+ */
16
+ chainId?: number;
11
17
  };
12
18
  export type EthRequestWithChainIdParams = {
13
19
  method: string;