@dynamic-labs/waas-evm 4.52.5 → 4.53.1

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,22 @@
1
1
 
2
+ ### [4.53.1](https://github.com/dynamic-labs/dynamic-auth/compare/v4.53.0...v4.53.1) (2026-01-14)
3
+
4
+ ## [4.53.0](https://github.com/dynamic-labs/dynamic-auth/compare/v4.52.5...v4.53.0) (2026-01-13)
5
+
6
+
7
+ ### Features
8
+
9
+ * add contract deployment bundle into first transaction ([#10089](https://github.com/dynamic-labs/dynamic-auth/issues/10089)) ([1291f2a](https://github.com/dynamic-labs/dynamic-auth/commit/1291f2ae2d4881c047a3e6e4e6cf4281a868f626))
10
+ * add ton balance to wallet connector ([#10186](https://github.com/dynamic-labs/dynamic-auth/issues/10186)) ([7b1bdf3](https://github.com/dynamic-labs/dynamic-auth/commit/7b1bdf38f9685cb74974de0592e0e824146d343d))
11
+ * add waas btc support in demo ([#10192](https://github.com/dynamic-labs/dynamic-auth/issues/10192)) ([36aedd6](https://github.com/dynamic-labs/dynamic-auth/commit/36aedd614b7fe781c7150efb4c1a77a5fe55a1ae))
12
+ * merge waas-bitcoin to existing bitcoin package ([#10190](https://github.com/dynamic-labs/dynamic-auth/issues/10190)) ([70dfc6b](https://github.com/dynamic-labs/dynamic-auth/commit/70dfc6baca4f69af56a10ad29faca0fb361ec17b))
13
+ * update sdk-react-core to support btc from waas ([#10191](https://github.com/dynamic-labs/dynamic-auth/issues/10191)) ([c39a99c](https://github.com/dynamic-labs/dynamic-auth/commit/c39a99c544e567a75f43e9b83d4969b70d3c01d1))
14
+
15
+
16
+ ### Bug Fixes
17
+
18
+ * udpate ESM compatibility issues in build scripts for iconic ([#10201](https://github.com/dynamic-labs/dynamic-auth/issues/10201)) ([55059ad](https://github.com/dynamic-labs/dynamic-auth/commit/55059ad8c874b7f04699c277467242783f5d6eff))
19
+
2
20
  ### [4.52.5](https://github.com/dynamic-labs/dynamic-auth/compare/v4.52.4...v4.52.5) (2026-01-08)
3
21
 
4
22
 
package/package.cjs CHANGED
@@ -3,6 +3,6 @@
3
3
 
4
4
  Object.defineProperty(exports, '__esModule', { value: true });
5
5
 
6
- var version = "4.52.5";
6
+ var version = "4.53.1";
7
7
 
8
8
  exports.version = version;
package/package.js CHANGED
@@ -1,4 +1,4 @@
1
1
  'use client'
2
- var version = "4.52.5";
2
+ var version = "4.53.1";
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.52.5",
3
+ "version": "4.53.1",
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.843",
22
22
  "viem": "^2.28.4",
23
- "@dynamic-labs/assert-package-version": "4.52.5",
24
- "@dynamic-labs/ethereum-core": "4.52.5",
25
- "@dynamic-labs/logger": "4.52.5",
26
- "@dynamic-labs/types": "4.52.5",
27
- "@dynamic-labs/utils": "4.52.5",
28
- "@dynamic-labs/waas": "4.52.5",
29
- "@dynamic-labs/wallet-connector-core": "4.52.5"
23
+ "@dynamic-labs/assert-package-version": "4.53.1",
24
+ "@dynamic-labs/ethereum-core": "4.53.1",
25
+ "@dynamic-labs/logger": "4.53.1",
26
+ "@dynamic-labs/types": "4.53.1",
27
+ "@dynamic-labs/utils": "4.53.1",
28
+ "@dynamic-labs/waas": "4.53.1",
29
+ "@dynamic-labs/wallet-connector-core": "4.53.1"
30
30
  },
31
31
  "peerDependencies": {}
32
32
  }
@@ -40,6 +40,13 @@ declare const DynamicWaasEVMConnector_base: (abstract new (...args: any[]) => {
40
40
  setBaseApiUrl(baseApiUrl: string): void;
41
41
  setBaseClientKeysharesRelayApiUrl(baseClientKeysharesRelayApiUrl?: string | undefined): void;
42
42
  setRelayUrl(relayUrl: string): void;
43
+ /**
44
+ * Relationship between verifiedCredential and verifiedCredentials:
45
+ * - verifiedCredential: The first/primary credential from the array (used for active account)
46
+ * - verifiedCredentials: The full array of all credentials
47
+ * When setVerifiedCredentials is called, it processes the input array and sets both properties
48
+ * The first credential (verifiedCredential) is specifically filtered to be a "dynamicwaas"
49
+ */
43
50
  setGetSignedSessionIdFunction(getSignedSessionId: () => Promise<string>): void;
44
51
  delegateKeyShares({ accountAddress, password, }: {
45
52
  accountAddress: string;
@@ -47,19 +54,21 @@ declare const DynamicWaasEVMConnector_base: (abstract new (...args: any[]) => {
47
54
  }): Promise<void>;
48
55
  createDynamicWaasClient(traceContext?: import("dist/packages/waas/utils/instrumentation").TraceContext | undefined): Promise<import("@dynamic-labs-wallet/browser-wallet-client").DynamicWalletClient>;
49
56
  getWaasWalletClient(traceContext?: import("dist/packages/waas/utils/instrumentation").TraceContext | undefined): Promise<import("@dynamic-labs-wallet/browser-wallet-client").DynamicWalletClient>;
50
- createWalletAccount({ thresholdSignatureScheme, password, }?: {
57
+ createWalletAccount({ thresholdSignatureScheme, password, bitcoinConfig, }?: {
51
58
  thresholdSignatureScheme?: string | undefined;
52
59
  password?: string | undefined;
60
+ bitcoinConfig?: import("@dynamic-labs-wallet/core").BitcoinConfig | undefined;
53
61
  } | undefined): Promise<{
54
62
  chainName: string;
55
63
  accountAddress: string;
56
64
  publicKeyHex: string;
57
65
  rawPublicKey: string | Uint8Array | undefined;
58
66
  }>;
59
- importPrivateKey({ privateKey, thresholdSignatureScheme, publicAddressCheck, }: {
67
+ importPrivateKey({ privateKey, thresholdSignatureScheme, publicAddressCheck, addressType, }: {
60
68
  privateKey: string;
61
69
  thresholdSignatureScheme?: string | undefined;
62
70
  publicAddressCheck?: string | undefined;
71
+ addressType?: string | undefined;
63
72
  }): Promise<void>;
64
73
  exportPrivateKey({ accountAddress, displayContainer, password, }?: {
65
74
  accountAddress?: string | undefined;