@dynamic-labs/wallet-connector-core 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/wallet-connector-core",
3
- "version": "4.52.5",
3
+ "version": "4.53.1",
4
4
  "description": "Core package for utilities and types for handling multiple wallet/chain support Dynamic SDK",
5
5
  "author": "Dynamic Labs, Inc.",
6
6
  "license": "MIT",
@@ -19,12 +19,12 @@
19
19
  "homepage": "https://www.dynamic.xyz/",
20
20
  "dependencies": {
21
21
  "@dynamic-labs/sdk-api-core": "0.0.843",
22
- "@dynamic-labs/assert-package-version": "4.52.5",
23
- "@dynamic-labs/logger": "4.52.5",
24
- "@dynamic-labs/rpc-providers": "4.52.5",
25
- "@dynamic-labs/types": "4.52.5",
26
- "@dynamic-labs/utils": "4.52.5",
27
- "@dynamic-labs/wallet-book": "4.52.5",
22
+ "@dynamic-labs/assert-package-version": "4.53.1",
23
+ "@dynamic-labs/logger": "4.53.1",
24
+ "@dynamic-labs/rpc-providers": "4.53.1",
25
+ "@dynamic-labs/types": "4.53.1",
26
+ "@dynamic-labs/utils": "4.53.1",
27
+ "@dynamic-labs/wallet-book": "4.53.1",
28
28
  "eventemitter3": "5.0.1"
29
29
  },
30
30
  "peerDependencies": {}
@@ -8,18 +8,23 @@ interface GetMfaTokenFunction {
8
8
  export interface IDynamicWaasConnector extends WalletConnectorBase {
9
9
  setWaasAuthMode(authMode: 'cookie' | 'header'): void;
10
10
  createWalletAccount(options?: {
11
- thresholdSignatureScheme: string;
11
+ thresholdSignatureScheme?: string;
12
12
  password?: string;
13
+ bitcoinConfig?: {
14
+ addressType?: string;
15
+ network?: string;
16
+ };
13
17
  }): Promise<{
14
18
  accountAddress: string;
15
19
  publicKeyHex: string;
16
20
  rawPublicKey: string | Uint8Array | undefined;
17
21
  }>;
18
- importPrivateKey({ privateKey, chainName, thresholdSignatureScheme, publicAddressCheck, }: {
22
+ importPrivateKey({ privateKey, chainName, thresholdSignatureScheme, publicAddressCheck, addressType, }: {
19
23
  privateKey: string;
20
24
  chainName: string;
21
25
  thresholdSignatureScheme?: string;
22
26
  publicAddressCheck?: string;
27
+ addressType?: string;
23
28
  }): Promise<void>;
24
29
  exportPrivateKey({ accountAddress, displayContainer, }: {
25
30
  accountAddress: string;