@dynamic-labs/waas 4.20.10 → 4.20.12

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,26 @@
1
1
 
2
+ ### [4.20.12](https://github.com/dynamic-labs/dynamic-auth/compare/v4.20.11...v4.20.12) (2025-07-01)
3
+
4
+
5
+ ### Bug Fixes
6
+
7
+ * bring back braavos mobile deeplink support ([#9041](https://github.com/dynamic-labs/dynamic-auth/issues/9041)) ([90a7eb6](https://github.com/dynamic-labs/dynamic-auth/commit/90a7eb620f6bd27d4560e88fe5542a121e586bed))
8
+ * start exchange funding errors should be logged as error ([#9056](https://github.com/dynamic-labs/dynamic-auth/issues/9056)) ([ba122af](https://github.com/dynamic-labs/dynamic-auth/commit/ba122afb68c462fe8627828bd20f9cc5f92803ff))
9
+ * WC redirect on mobile ([#9063](https://github.com/dynamic-labs/dynamic-auth/issues/9063)) ([f43aa4a](https://github.com/dynamic-labs/dynamic-auth/commit/f43aa4aedea20e3baf012f4778f5e6a47c27515c))
10
+
11
+ ### [4.20.11](https://github.com/dynamic-labs/dynamic-auth/compare/v4.20.10...v4.20.11) (2025-07-01)
12
+
13
+
14
+ ### Features
15
+
16
+ * add signed typed data to waas ([#9050](https://github.com/dynamic-labs/dynamic-auth/issues/9050)) ([19c8fea](https://github.com/dynamic-labs/dynamic-auth/commit/19c8fea2e5448e027cbec2f6158d32247dfcd321))
17
+ * pass jwt to waas operations ([#8981](https://github.com/dynamic-labs/dynamic-auth/issues/8981)) ([6b63394](https://github.com/dynamic-labs/dynamic-auth/commit/6b63394a1a724c2a1499a3d1ff13078d2314b10e))
18
+
19
+
20
+ ### Bug Fixes
21
+
22
+ * 7702 signature for undeployed contracts ([#9052](https://github.com/dynamic-labs/dynamic-auth/issues/9052)) ([7052149](https://github.com/dynamic-labs/dynamic-auth/commit/7052149aae53524a0ac2bdad0b7ddf68e3c86189))
23
+
2
24
  ### [4.20.10](https://github.com/dynamic-labs/dynamic-auth/compare/v4.20.9...v4.20.10) (2025-06-30)
3
25
 
4
26
 
package/package.cjs CHANGED
@@ -3,6 +3,6 @@
3
3
 
4
4
  Object.defineProperty(exports, '__esModule', { value: true });
5
5
 
6
- var version = "4.20.10";
6
+ var version = "4.20.12";
7
7
 
8
8
  exports.version = version;
package/package.js CHANGED
@@ -1,4 +1,4 @@
1
1
  'use client'
2
- var version = "4.20.10";
2
+ var version = "4.20.12";
3
3
 
4
4
  export { version };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dynamic-labs/waas",
3
- "version": "4.20.10",
3
+ "version": "4.20.12",
4
4
  "type": "module",
5
5
  "author": "Dynamic Labs, Inc.",
6
6
  "license": "MIT",
@@ -16,12 +16,12 @@
16
16
  "./package.json": "./package.json"
17
17
  },
18
18
  "dependencies": {
19
- "@dynamic-labs/assert-package-version": "4.20.10",
20
- "@dynamic-labs-wallet/browser-wallet-client": "0.0.101",
21
- "@dynamic-labs/ethereum-core": "4.20.10",
22
- "@dynamic-labs/solana-core": "4.20.10",
23
- "@dynamic-labs/sui-core": "4.20.10",
24
- "@dynamic-labs/wallet-book": "4.20.10"
19
+ "@dynamic-labs/assert-package-version": "4.20.12",
20
+ "@dynamic-labs-wallet/browser-wallet-client": "0.0.106",
21
+ "@dynamic-labs/ethereum-core": "4.20.12",
22
+ "@dynamic-labs/solana-core": "4.20.12",
23
+ "@dynamic-labs/sui-core": "4.20.12",
24
+ "@dynamic-labs/wallet-book": "4.20.12"
25
25
  },
26
26
  "peerDependencies": {}
27
27
  }
@@ -4,6 +4,7 @@
4
4
  Object.defineProperty(exports, '__esModule', { value: true });
5
5
 
6
6
  var browserWalletClient = require('@dynamic-labs-wallet/browser-wallet-client');
7
+ var _package = require('../package.cjs');
7
8
  var constants = require('../utils/constants.cjs');
8
9
 
9
10
  const withDynamicWaas = (BaseClass) => {
@@ -57,6 +58,7 @@ const withDynamicWaas = (BaseClass) => {
57
58
  baseMPCRelayApiUrl: this.relayUrl || constants.DEFAULT_BASE_MPC_RELAY_API_URL,
58
59
  chainName: this.chainName,
59
60
  environmentId: this.environmentId,
61
+ sdkVersion: _package.version,
60
62
  });
61
63
  }
62
64
  getWaasWalletClient() {
@@ -1,5 +1,6 @@
1
1
  'use client'
2
2
  import { DynamicWalletClient } from '@dynamic-labs-wallet/browser-wallet-client';
3
+ import { version } from '../package.js';
3
4
  import { DEFAULT_BASE_API_URL, DEFAULT_BASE_MPC_RELAY_API_URL } from '../utils/constants.js';
4
5
 
5
6
  const withDynamicWaas = (BaseClass) => {
@@ -53,6 +54,7 @@ const withDynamicWaas = (BaseClass) => {
53
54
  baseMPCRelayApiUrl: this.relayUrl || DEFAULT_BASE_MPC_RELAY_API_URL,
54
55
  chainName: this.chainName,
55
56
  environmentId: this.environmentId,
57
+ sdkVersion: version,
56
58
  });
57
59
  }
58
60
  getWaasWalletClient() {