@dynamic-labs/waas-evm 4.29.0 → 4.29.2
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 +22 -0
- package/package.cjs +1 -1
- package/package.js +1 -1
- package/package.json +9 -9
- package/src/DynamicWaasEVMConnector.d.ts +2 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,4 +1,26 @@
|
|
|
1
1
|
|
|
2
|
+
### [4.29.2](https://github.com/dynamic-labs/dynamic-auth/compare/v4.29.1...v4.29.2) (2025-08-25)
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
### Features
|
|
6
|
+
|
|
7
|
+
* return wallet metadata in walletOption ([#9391](https://github.com/dynamic-labs/dynamic-auth/issues/9391)) ([4ddd7ea](https://github.com/dynamic-labs/dynamic-auth/commit/4ddd7eadc37d646ab5d39fab420e598e47f5741b))
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
### Bug Fixes
|
|
11
|
+
|
|
12
|
+
* export usePayWithDynamic ([#9395](https://github.com/dynamic-labs/dynamic-auth/issues/9395)) ([059999e](https://github.com/dynamic-labs/dynamic-auth/commit/059999e3b156510ce95c6bf413c0a0123a52b251))
|
|
13
|
+
|
|
14
|
+
### [4.29.1](https://github.com/dynamic-labs/dynamic-auth/compare/v4.29.0...v4.29.1) (2025-08-21)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Bug Fixes
|
|
18
|
+
|
|
19
|
+
* clear user op cache on send transaction ([#9382](https://github.com/dynamic-labs/dynamic-auth/issues/9382)) ([ddef1e1](https://github.com/dynamic-labs/dynamic-auth/commit/ddef1e16367e04d217e6d79a138988394605dda6))
|
|
20
|
+
* display error when trying to register a previously registered passkey ([#9381](https://github.com/dynamic-labs/dynamic-auth/issues/9381)) ([51ecdd8](https://github.com/dynamic-labs/dynamic-auth/commit/51ecdd84a3d1a36435cc79063caa2fd7187a25db))
|
|
21
|
+
* do not double disable confirmation ui ([#9385](https://github.com/dynamic-labs/dynamic-auth/issues/9385)) ([2deb3ae](https://github.com/dynamic-labs/dynamic-auth/commit/2deb3aeb3055ceb79ea2e8410cce94448b18f8c5))
|
|
22
|
+
* **react-native:** dont emit network change events for disabled chains ([#9375](https://github.com/dynamic-labs/dynamic-auth/issues/9375)) ([f03151e](https://github.com/dynamic-labs/dynamic-auth/commit/f03151ea6b065f6b297edb053fbf84f1060b35e4))
|
|
23
|
+
|
|
2
24
|
## [4.29.0](https://github.com/dynamic-labs/dynamic-auth/compare/v4.28.0...v4.29.0) (2025-08-19)
|
|
3
25
|
|
|
4
26
|
|
package/package.cjs
CHANGED
package/package.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dynamic-labs/waas-evm",
|
|
3
|
-
"version": "4.29.
|
|
3
|
+
"version": "4.29.2",
|
|
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,15 +18,15 @@
|
|
|
18
18
|
},
|
|
19
19
|
"homepage": "https://www.dynamic.xyz/",
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@dynamic-labs/sdk-api-core": "0.0.
|
|
21
|
+
"@dynamic-labs/sdk-api-core": "0.0.758",
|
|
22
22
|
"viem": "^2.28.4",
|
|
23
|
-
"@dynamic-labs/assert-package-version": "4.29.
|
|
24
|
-
"@dynamic-labs/ethereum-core": "4.29.
|
|
25
|
-
"@dynamic-labs/logger": "4.29.
|
|
26
|
-
"@dynamic-labs/types": "4.29.
|
|
27
|
-
"@dynamic-labs/utils": "4.29.
|
|
28
|
-
"@dynamic-labs/waas": "4.29.
|
|
29
|
-
"@dynamic-labs/wallet-connector-core": "4.29.
|
|
23
|
+
"@dynamic-labs/assert-package-version": "4.29.2",
|
|
24
|
+
"@dynamic-labs/ethereum-core": "4.29.2",
|
|
25
|
+
"@dynamic-labs/logger": "4.29.2",
|
|
26
|
+
"@dynamic-labs/types": "4.29.2",
|
|
27
|
+
"@dynamic-labs/utils": "4.29.2",
|
|
28
|
+
"@dynamic-labs/waas": "4.29.2",
|
|
29
|
+
"@dynamic-labs/wallet-connector-core": "4.29.2"
|
|
30
30
|
},
|
|
31
31
|
"peerDependencies": {}
|
|
32
32
|
}
|
|
@@ -43,8 +43,9 @@ declare const DynamicWaasEVMConnector_base: (abstract new (...args: any[]) => {
|
|
|
43
43
|
}): Promise<void>;
|
|
44
44
|
createDynamicWaasClient(): Promise<import("@dynamic-labs-wallet/browser-wallet-client").DynamicWalletClient>;
|
|
45
45
|
getWaasWalletClient(): Promise<import("@dynamic-labs-wallet/browser-wallet-client").DynamicWalletClient>;
|
|
46
|
-
createWalletAccount({ thresholdSignatureScheme, }?: {
|
|
46
|
+
createWalletAccount({ thresholdSignatureScheme, password, }?: {
|
|
47
47
|
thresholdSignatureScheme?: string | undefined;
|
|
48
|
+
password?: string | undefined;
|
|
48
49
|
} | undefined): Promise<{
|
|
49
50
|
chainName: string;
|
|
50
51
|
accountAddress: string;
|