@dynamic-labs/waas-evm 4.47.2 → 4.48.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 +17 -0
- package/package.cjs +1 -1
- package/package.js +1 -1
- package/package.json +9 -9
- package/src/DynamicWaasEVMConnector.d.ts +2 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,4 +1,21 @@
|
|
|
1
1
|
|
|
2
|
+
## [4.48.0](https://github.com/dynamic-labs/dynamic-auth/compare/v4.47.3...v4.48.0) (2025-12-01)
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
### Features
|
|
6
|
+
|
|
7
|
+
* export share view ([#9973](https://github.com/dynamic-labs/dynamic-auth/issues/9973)) ([41831bf](https://github.com/dynamic-labs/dynamic-auth/commit/41831bf31f5661fae3a6664643f7b2e7875df137))
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
### Bug Fixes
|
|
11
|
+
|
|
12
|
+
* add logout button to MFA verification view ([#9972](https://github.com/dynamic-labs/dynamic-auth/issues/9972)) ([240a286](https://github.com/dynamic-labs/dynamic-auth/commit/240a2864ca92ff2262720797001327b5721bd894))
|
|
13
|
+
* allow user to login with MFA after logout ([#9975](https://github.com/dynamic-labs/dynamic-auth/issues/9975)) ([b404874](https://github.com/dynamic-labs/dynamic-auth/commit/b404874d65ffca166f8f2e8289a6624c685fa257))
|
|
14
|
+
* issue connecting with custom cosmos chain using Keplr wallet ([#9995](https://github.com/dynamic-labs/dynamic-auth/issues/9995)) ([8e045ea](https://github.com/dynamic-labs/dynamic-auth/commit/8e045ea084299f5264ae7a7515fd8d68d4f9caf2))
|
|
15
|
+
* support waas wallet for cookie-auth with optional custom KeyshareRelayBaseUrl ([#9994](https://github.com/dynamic-labs/dynamic-auth/issues/9994)) ([d768378](https://github.com/dynamic-labs/dynamic-auth/commit/d768378693a1cd11e89b0f59f8219ac9fd8690f9))
|
|
16
|
+
|
|
17
|
+
### [4.47.3](https://github.com/dynamic-labs/dynamic-auth/compare/v4.47.2...v4.47.3) (2025-11-27)
|
|
18
|
+
|
|
2
19
|
### [4.47.2](https://github.com/dynamic-labs/dynamic-auth/compare/v4.47.1...v4.47.2) (2025-11-27)
|
|
3
20
|
|
|
4
21
|
|
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.
|
|
3
|
+
"version": "4.48.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,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.824",
|
|
22
22
|
"viem": "^2.28.4",
|
|
23
|
-
"@dynamic-labs/assert-package-version": "4.
|
|
24
|
-
"@dynamic-labs/ethereum-core": "4.
|
|
25
|
-
"@dynamic-labs/logger": "4.
|
|
26
|
-
"@dynamic-labs/types": "4.
|
|
27
|
-
"@dynamic-labs/utils": "4.
|
|
28
|
-
"@dynamic-labs/waas": "4.
|
|
29
|
-
"@dynamic-labs/wallet-connector-core": "4.
|
|
23
|
+
"@dynamic-labs/assert-package-version": "4.48.0",
|
|
24
|
+
"@dynamic-labs/ethereum-core": "4.48.0",
|
|
25
|
+
"@dynamic-labs/logger": "4.48.0",
|
|
26
|
+
"@dynamic-labs/types": "4.48.0",
|
|
27
|
+
"@dynamic-labs/utils": "4.48.0",
|
|
28
|
+
"@dynamic-labs/waas": "4.48.0",
|
|
29
|
+
"@dynamic-labs/wallet-connector-core": "4.48.0"
|
|
30
30
|
},
|
|
31
31
|
"peerDependencies": {}
|
|
32
32
|
}
|
|
@@ -24,6 +24,7 @@ declare const DynamicWaasEVMConnector_base: (abstract new (...args: any[]) => {
|
|
|
24
24
|
environmentId?: string | undefined;
|
|
25
25
|
baseApiUrl?: string | undefined;
|
|
26
26
|
relayUrl?: string | undefined;
|
|
27
|
+
baseClientKeysharesRelayApiUrl?: string | undefined;
|
|
27
28
|
dynamicWaasClient: import("@dynamic-labs-wallet/browser-wallet-client").DynamicWalletClient | undefined;
|
|
28
29
|
chainName: string;
|
|
29
30
|
authMode: "cookie" | "header";
|
|
@@ -37,17 +38,11 @@ declare const DynamicWaasEVMConnector_base: (abstract new (...args: any[]) => {
|
|
|
37
38
|
} | undefined) => Promise<string | undefined>): void;
|
|
38
39
|
setEnvironmentId(environmentId: string): void;
|
|
39
40
|
setBaseApiUrl(baseApiUrl: string): void;
|
|
41
|
+
setBaseClientKeysharesRelayApiUrl(baseClientKeysharesRelayApiUrl?: string | undefined): void;
|
|
40
42
|
setRelayUrl(relayUrl: string): void;
|
|
41
43
|
setGetSignedSessionIdFunction(getSignedSessionId: () => Promise<string>): void;
|
|
42
44
|
delegateKeyShares({ accountAddress, password, }: {
|
|
43
45
|
accountAddress: string;
|
|
44
|
-
/**
|
|
45
|
-
* Relationship between verifiedCredential and verifiedCredentials:
|
|
46
|
-
* - verifiedCredential: The first/primary credential from the array (used for active account)
|
|
47
|
-
* - verifiedCredentials: The full array of all credentials
|
|
48
|
-
* When setVerifiedCredentials is called, it processes the input array and sets both properties
|
|
49
|
-
* The first credential (verifiedCredential) is specifically filtered to be a "dynamicwaas"
|
|
50
|
-
*/
|
|
51
46
|
password?: string | undefined;
|
|
52
47
|
}): Promise<void>;
|
|
53
48
|
createDynamicWaasClient(): Promise<import("@dynamic-labs-wallet/browser-wallet-client").DynamicWalletClient>;
|