@dynamic-labs/waas-svm 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-svm",
3
- "version": "4.41.0",
3
+ "version": "4.42.0",
4
4
  "description": "A React SDK for implementing wallet web3 authentication and authorization to your website.",
5
5
  "author": "Dynamic Labs, Inc.",
6
6
  "license": "MIT",
@@ -18,18 +18,18 @@
18
18
  },
19
19
  "homepage": "https://www.dynamic.xyz/",
20
20
  "dependencies": {
21
- "@dynamic-labs/sdk-api-core": "0.0.813",
21
+ "@dynamic-labs/sdk-api-core": "0.0.818",
22
22
  "@solana/web3.js": "1.98.1",
23
23
  "eventemitter3": "5.0.1",
24
24
  "bs58": "5.0.0",
25
- "@dynamic-labs/assert-package-version": "4.41.0",
26
- "@dynamic-labs/logger": "4.41.0",
27
- "@dynamic-labs/rpc-providers": "4.41.0",
28
- "@dynamic-labs/solana-core": "4.41.0",
29
- "@dynamic-labs/types": "4.41.0",
30
- "@dynamic-labs/utils": "4.41.0",
31
- "@dynamic-labs/waas": "4.41.0",
32
- "@dynamic-labs/wallet-connector-core": "4.41.0"
25
+ "@dynamic-labs/assert-package-version": "4.42.0",
26
+ "@dynamic-labs/logger": "4.42.0",
27
+ "@dynamic-labs/rpc-providers": "4.42.0",
28
+ "@dynamic-labs/solana-core": "4.42.0",
29
+ "@dynamic-labs/types": "4.42.0",
30
+ "@dynamic-labs/utils": "4.42.0",
31
+ "@dynamic-labs/waas": "4.42.0",
32
+ "@dynamic-labs/wallet-connector-core": "4.42.0"
33
33
  },
34
34
  "peerDependencies": {}
35
35
  }
@@ -48,9 +48,10 @@ declare const DynamicWaasSVMConnector_base: (abstract new (...args: any[]) => {
48
48
  publicKeyHex: string;
49
49
  rawPublicKey: string | Uint8Array | undefined;
50
50
  }>;
51
- importPrivateKey({ privateKey, thresholdSignatureScheme, }: {
51
+ importPrivateKey({ privateKey, thresholdSignatureScheme, publicAddressCheck, }: {
52
52
  privateKey: string;
53
53
  thresholdSignatureScheme?: string | undefined;
54
+ publicAddressCheck?: string | undefined;
54
55
  }): Promise<void>;
55
56
  exportPrivateKey({ accountAddress, displayContainer, password, }?: {
56
57
  accountAddress?: string | undefined;