@dynamic-labs/waas 4.41.0 → 4.42.0

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,24 @@
1
1
 
2
+ ## [4.42.0](https://github.com/dynamic-labs/dynamic-auth/compare/v4.41.1...v4.42.0) (2025-11-04)
3
+
4
+
5
+ ### Features
6
+
7
+ * add support for send balance in React Native ([#9807](https://github.com/dynamic-labs/dynamic-auth/issues/9807)) ([40cab11](https://github.com/dynamic-labs/dynamic-auth/commit/40cab119f23d0b2efa5d6b161294bc682f1c0031))
8
+
9
+
10
+ ### Bug Fixes
11
+
12
+ * don't override mfa token on non-mfa related state updates ([#9817](https://github.com/dynamic-labs/dynamic-auth/issues/9817)) ([76dfbb9](https://github.com/dynamic-labs/dynamic-auth/commit/76dfbb9f5012709c6c400c1d51b8a20b2b99c3db))
13
+
14
+ ### [4.41.1](https://github.com/dynamic-labs/dynamic-auth/compare/v4.41.0...v4.41.1) (2025-10-30)
15
+
16
+
17
+ ### Bug Fixes
18
+
19
+ * aptos login with petra keyless accounts ([#9795](https://github.com/dynamic-labs/dynamic-auth/issues/9795)) ([99dc34b](https://github.com/dynamic-labs/dynamic-auth/commit/99dc34b95d1ec23d168c9e092e2d735b1d50a71d))
20
+ * backpack aptos login due to invalid public key ([#9806](https://github.com/dynamic-labs/dynamic-auth/issues/9806)) ([ec8b761](https://github.com/dynamic-labs/dynamic-auth/commit/ec8b76181acff7906fd92c77c2fca42ce52010ae))
21
+
2
22
  ## [4.41.0](https://github.com/dynamic-labs/dynamic-auth/compare/v4.40.2...v4.41.0) (2025-10-29)
3
23
 
4
24
 
package/package.cjs CHANGED
@@ -3,6 +3,6 @@
3
3
 
4
4
  Object.defineProperty(exports, '__esModule', { value: true });
5
5
 
6
- var version = "4.41.0";
6
+ var version = "4.42.0";
7
7
 
8
8
  exports.version = version;
package/package.js CHANGED
@@ -1,4 +1,4 @@
1
1
  'use client'
2
- var version = "4.41.0";
2
+ var version = "4.42.0";
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.41.0",
3
+ "version": "4.42.0",
4
4
  "type": "module",
5
5
  "author": "Dynamic Labs, Inc.",
6
6
  "license": "MIT",
@@ -16,14 +16,14 @@
16
16
  "./package.json": "./package.json"
17
17
  },
18
18
  "dependencies": {
19
- "@dynamic-labs/assert-package-version": "4.41.0",
20
- "@dynamic-labs/sdk-api-core": "0.0.813",
21
- "@dynamic-labs-wallet/browser-wallet-client": "0.0.189",
22
- "@dynamic-labs/ethereum-core": "4.41.0",
23
- "@dynamic-labs/solana-core": "4.41.0",
24
- "@dynamic-labs/sui-core": "4.41.0",
25
- "@dynamic-labs/utils": "4.41.0",
26
- "@dynamic-labs/wallet-book": "4.41.0"
19
+ "@dynamic-labs/assert-package-version": "4.42.0",
20
+ "@dynamic-labs/sdk-api-core": "0.0.818",
21
+ "@dynamic-labs-wallet/browser-wallet-client": "0.0.190",
22
+ "@dynamic-labs/ethereum-core": "4.42.0",
23
+ "@dynamic-labs/solana-core": "4.42.0",
24
+ "@dynamic-labs/sui-core": "4.42.0",
25
+ "@dynamic-labs/utils": "4.42.0",
26
+ "@dynamic-labs/wallet-book": "4.42.0"
27
27
  },
28
28
  "peerDependencies": {}
29
29
  }
@@ -143,7 +143,7 @@ const withDynamicWaas = (BaseClass) => {
143
143
  });
144
144
  }
145
145
  importPrivateKey(_a) {
146
- return _tslib.__awaiter(this, arguments, void 0, function* ({ privateKey, thresholdSignatureScheme = 'TWO_OF_TWO', }) {
146
+ return _tslib.__awaiter(this, arguments, void 0, function* ({ privateKey, thresholdSignatureScheme = 'TWO_OF_TWO', publicAddressCheck, }) {
147
147
  var _b, _c;
148
148
  const walletClient = yield this.getWaasWalletClient();
149
149
  const signedSessionId = yield ((_b = this.getSignedSessionId) === null || _b === void 0 ? void 0 : _b.call(this));
@@ -153,6 +153,7 @@ const withDynamicWaas = (BaseClass) => {
153
153
  yield walletClient.importPrivateKey({
154
154
  authToken: (_c = this.getAuthToken) === null || _c === void 0 ? void 0 : _c.call(this),
155
155
  privateKey,
156
+ publicAddressCheck,
156
157
  signedSessionId,
157
158
  thresholdSignatureScheme: thresholdSignatureScheme,
158
159
  });
@@ -47,9 +47,10 @@ export declare const withDynamicWaas: <T extends abstract new (...args: any[]) =
47
47
  publicKeyHex: string;
48
48
  rawPublicKey: string | Uint8Array | undefined;
49
49
  }>;
50
- importPrivateKey({ privateKey, thresholdSignatureScheme, }: {
50
+ importPrivateKey({ privateKey, thresholdSignatureScheme, publicAddressCheck, }: {
51
51
  privateKey: string;
52
52
  thresholdSignatureScheme?: string;
53
+ publicAddressCheck?: string;
53
54
  }): Promise<void>;
54
55
  exportPrivateKey({ accountAddress, displayContainer, password, }?: {
55
56
  accountAddress?: string;
@@ -139,7 +139,7 @@ const withDynamicWaas = (BaseClass) => {
139
139
  });
140
140
  }
141
141
  importPrivateKey(_a) {
142
- return __awaiter(this, arguments, void 0, function* ({ privateKey, thresholdSignatureScheme = 'TWO_OF_TWO', }) {
142
+ return __awaiter(this, arguments, void 0, function* ({ privateKey, thresholdSignatureScheme = 'TWO_OF_TWO', publicAddressCheck, }) {
143
143
  var _b, _c;
144
144
  const walletClient = yield this.getWaasWalletClient();
145
145
  const signedSessionId = yield ((_b = this.getSignedSessionId) === null || _b === void 0 ? void 0 : _b.call(this));
@@ -149,6 +149,7 @@ const withDynamicWaas = (BaseClass) => {
149
149
  yield walletClient.importPrivateKey({
150
150
  authToken: (_c = this.getAuthToken) === null || _c === void 0 ? void 0 : _c.call(this),
151
151
  privateKey,
152
+ publicAddressCheck,
152
153
  signedSessionId,
153
154
  thresholdSignatureScheme: thresholdSignatureScheme,
154
155
  });