@dynamic-labs/waas-evm 4.63.1 → 4.65.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,27 @@
1
1
 
2
+ ## [4.65.0](https://github.com/dynamic-labs/dynamic-auth/compare/v4.64.0...v4.65.0) (2026-02-27)
3
+
4
+
5
+ ### Features
6
+
7
+ * add CSP nonce support for style and link tags ([#10514](https://github.com/dynamic-labs/dynamic-auth/issues/10514)) ([62128f5](https://github.com/dynamic-labs/dynamic-auth/commit/62128f5eddfd2a037c2ed6e9320b5009d350c0b5))
8
+ * add setPassword method for initial wallet password setup ([#10534](https://github.com/dynamic-labs/dynamic-auth/issues/10534)) ([87d1e5f](https://github.com/dynamic-labs/dynamic-auth/commit/87d1e5f3c41fe4417320f6971566526e8bf07e99))
9
+ * add step-up authentication and walletsVerify API ([#10482](https://github.com/dynamic-labs/dynamic-auth/issues/10482)) ([e762a63](https://github.com/dynamic-labs/dynamic-auth/commit/e762a634e9782c34926f5947db5446ad95617064))
10
+
11
+
12
+ ### Bug Fixes
13
+
14
+ * **react-native:** ensure items are saved to storage successfully ([#10538](https://github.com/dynamic-labs/dynamic-auth/issues/10538)) ([60bfd5e](https://github.com/dynamic-labs/dynamic-auth/commit/60bfd5e4bf1e7265e754c222839662ff615495b2))
15
+ * **sdk-react-core:** add stellar to compareChains to prevent duplicate wallet creation ([#10526](https://github.com/dynamic-labs/dynamic-auth/issues/10526)) ([89f4498](https://github.com/dynamic-labs/dynamic-auth/commit/89f449892a5153dc8032e0e8ea61cf453e0a2b23))
16
+ * show password setup button for all WaaS wallets regardless of passcodeRequired ([#10532](https://github.com/dynamic-labs/dynamic-auth/issues/10532)) ([615cbf2](https://github.com/dynamic-labs/dynamic-auth/commit/615cbf25fcf95cb5b82a118a2d5d37285e8b5b83))
17
+
18
+ ## [4.64.0](https://github.com/dynamic-labs/dynamic-auth/compare/v4.63.1...v4.64.0) (2026-02-25)
19
+
20
+
21
+ ### Features
22
+
23
+ * add addTrustline method to the stellar wallet ([#10510](https://github.com/dynamic-labs/dynamic-auth/issues/10510)) ([e8690e8](https://github.com/dynamic-labs/dynamic-auth/commit/e8690e821dfe867355618d970380568487c3dd36))
24
+
2
25
  ### [4.63.1](https://github.com/dynamic-labs/dynamic-auth/compare/v4.63.0...v4.63.1) (2026-02-24)
3
26
 
4
27
 
package/package.cjs CHANGED
@@ -3,6 +3,6 @@
3
3
 
4
4
  Object.defineProperty(exports, '__esModule', { value: true });
5
5
 
6
- var version = "4.63.1";
6
+ var version = "4.65.0";
7
7
 
8
8
  exports.version = version;
package/package.js CHANGED
@@ -1,4 +1,4 @@
1
1
  'use client'
2
- var version = "4.63.1";
2
+ var version = "4.65.0";
3
3
 
4
4
  export { version };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dynamic-labs/waas-evm",
3
- "version": "4.63.1",
3
+ "version": "4.65.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",
@@ -20,13 +20,13 @@
20
20
  "dependencies": {
21
21
  "@dynamic-labs/sdk-api-core": "0.0.875",
22
22
  "viem": "^2.28.4",
23
- "@dynamic-labs/assert-package-version": "4.63.1",
24
- "@dynamic-labs/ethereum-core": "4.63.1",
25
- "@dynamic-labs/logger": "4.63.1",
26
- "@dynamic-labs/types": "4.63.1",
27
- "@dynamic-labs/utils": "4.63.1",
28
- "@dynamic-labs/waas": "4.63.1",
29
- "@dynamic-labs/wallet-connector-core": "4.63.1"
23
+ "@dynamic-labs/assert-package-version": "4.65.0",
24
+ "@dynamic-labs/ethereum-core": "4.65.0",
25
+ "@dynamic-labs/logger": "4.65.0",
26
+ "@dynamic-labs/types": "4.65.0",
27
+ "@dynamic-labs/utils": "4.65.0",
28
+ "@dynamic-labs/waas": "4.65.0",
29
+ "@dynamic-labs/wallet-connector-core": "4.65.0"
30
30
  },
31
31
  "peerDependencies": {}
32
32
  }
@@ -126,6 +126,10 @@ declare const DynamicWaasEVMConnector_base: (abstract new (...args: any[]) => {
126
126
  existingPassword?: string | undefined;
127
127
  newPassword: string;
128
128
  }): Promise<void>;
129
+ setPassword({ accountAddress, newPassword, }: {
130
+ accountAddress: string;
131
+ newPassword: string;
132
+ }): Promise<void>;
129
133
  signRawMessage({ accountAddress, message, password, }: {
130
134
  accountAddress: string;
131
135
  message: string;