@dynamic-labs/waas-evm 4.57.1 → 4.58.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,20 @@
1
1
 
2
+ ## [4.58.0](https://github.com/dynamic-labs/dynamic-auth/compare/v4.57.2...v4.58.0) (2026-01-28)
3
+
4
+
5
+ ### Features
6
+
7
+ * add password setup flow for WaaS wallets ([#10308](https://github.com/dynamic-labs/dynamic-auth/issues/10308)) ([aad892d](https://github.com/dynamic-labs/dynamic-auth/commit/aad892d0359df589753b141c1099a03c72b799d9))
8
+ * add useRefreshAuth ([#10280](https://github.com/dynamic-labs/dynamic-auth/issues/10280)) ([bff850a](https://github.com/dynamic-labs/dynamic-auth/commit/bff850afc4167d47d3a38c5e9845d35b754ea573))
9
+ * **waas:** add unlockWallet and getWalletRecoveryState methods ([#10286](https://github.com/dynamic-labs/dynamic-auth/issues/10286)) ([4c2f26b](https://github.com/dynamic-labs/dynamic-auth/commit/4c2f26b1cd6483406288513d73be66554cd3c66a))
10
+
11
+ ### Bug Fixes
12
+
13
+ * ensure refresh user not update the jwt ([#10278](https://github.com/dynamic-labs/dynamic-auth/issues/10278)) ([c8cdbe6](https://github.com/dynamic-labs/dynamic-auth/commit/c8cdbe6e10636b39985f299a219fa362c25b4cd0))
14
+ * use isVersionedTransaction for reliable Solana transaction type detection ([#10319](https://github.com/dynamic-labs/dynamic-auth/issues/10319)) ([472aa15](https://github.com/dynamic-labs/dynamic-auth/commit/472aa15a94cfe541b22b96c5c63483e6a5971781))
15
+
16
+ ### [4.57.2](https://github.com/dynamic-labs/dynamic-auth/compare/v4.57.1...v4.57.2) (2026-01-23)
17
+
2
18
  ### [4.57.1](https://github.com/dynamic-labs/dynamic-auth/compare/v4.57.0...v4.57.1) (2026-01-22)
3
19
 
4
20
 
package/package.cjs CHANGED
@@ -3,6 +3,6 @@
3
3
 
4
4
  Object.defineProperty(exports, '__esModule', { value: true });
5
5
 
6
- var version = "4.57.1";
6
+ var version = "4.58.0";
7
7
 
8
8
  exports.version = version;
package/package.js CHANGED
@@ -1,4 +1,4 @@
1
1
  'use client'
2
- var version = "4.57.1";
2
+ var version = "4.58.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.57.1",
3
+ "version": "4.58.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.860",
22
22
  "viem": "^2.28.4",
23
- "@dynamic-labs/assert-package-version": "4.57.1",
24
- "@dynamic-labs/ethereum-core": "4.57.1",
25
- "@dynamic-labs/logger": "4.57.1",
26
- "@dynamic-labs/types": "4.57.1",
27
- "@dynamic-labs/utils": "4.57.1",
28
- "@dynamic-labs/waas": "4.57.1",
29
- "@dynamic-labs/wallet-connector-core": "4.57.1"
23
+ "@dynamic-labs/assert-package-version": "4.58.0",
24
+ "@dynamic-labs/ethereum-core": "4.58.0",
25
+ "@dynamic-labs/logger": "4.58.0",
26
+ "@dynamic-labs/types": "4.58.0",
27
+ "@dynamic-labs/utils": "4.58.0",
28
+ "@dynamic-labs/waas": "4.58.0",
29
+ "@dynamic-labs/wallet-connector-core": "4.58.0"
30
30
  },
31
31
  "peerDependencies": {}
32
32
  }
@@ -123,6 +123,13 @@ declare const DynamicWaasEVMConnector_base: (abstract new (...args: any[]) => {
123
123
  message: string;
124
124
  password?: string | undefined;
125
125
  }): Promise<string>;
126
+ unlockWallet({ accountAddress, password, }: {
127
+ accountAddress: string;
128
+ password: string;
129
+ }): Promise<import("@dynamic-labs-wallet/core").GetWalletResponse>;
130
+ getWalletRecoveryState({ accountAddress, }: {
131
+ accountAddress: string;
132
+ }): Promise<import("@dynamic-labs-wallet/core").WalletRecoveryState>;
126
133
  endSession(): Promise<void>;
127
134
  getActiveAccountAddress(): Promise<string | undefined>;
128
135
  getConnectedAccounts(): Promise<string[]>;