@dynamic-labs/ton 4.65.0 → 4.66.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,17 @@
1
1
 
2
+ ## [4.66.0](https://github.com/dynamic-labs/dynamic-auth/compare/v4.65.0...v4.66.0) (2026-03-02)
3
+
4
+
5
+ ### Features
6
+
7
+ * **stellar:** send serialized XDR for transaction signing ([#10548](https://github.com/dynamic-labs/dynamic-auth/issues/10548)) ([3ff6438](https://github.com/dynamic-labs/dynamic-auth/commit/3ff64384e16d5fdb32cd6a3fd144757bf05f4456))
8
+
9
+
10
+ ### Bug Fixes
11
+
12
+ * prevent MFA backup codes screen from being dismissed before acknowledgement ([#10530](https://github.com/dynamic-labs/dynamic-auth/issues/10530)) ([67086f0](https://github.com/dynamic-labs/dynamic-auth/commit/67086f0b4a1302d39853eb2eedcb6f5b8bfca889))
13
+ * **react-native:** add retry when setting items to secure store ([#10576](https://github.com/dynamic-labs/dynamic-auth/issues/10576)) ([22ea162](https://github.com/dynamic-labs/dynamic-auth/commit/22ea162420806a4a67394c99f3691754982a7f1f))
14
+
2
15
  ## [4.65.0](https://github.com/dynamic-labs/dynamic-auth/compare/v4.64.0...v4.65.0) (2026-02-27)
3
16
 
4
17
 
package/package.cjs CHANGED
@@ -3,6 +3,6 @@
3
3
 
4
4
  Object.defineProperty(exports, '__esModule', { value: true });
5
5
 
6
- var version = "4.65.0";
6
+ var version = "4.66.0";
7
7
 
8
8
  exports.version = version;
package/package.js CHANGED
@@ -1,4 +1,4 @@
1
1
  'use client'
2
- var version = "4.65.0";
2
+ var version = "4.66.0";
3
3
 
4
4
  export { version };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dynamic-labs/ton",
3
- "version": "4.65.0",
3
+ "version": "4.66.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,14 +18,14 @@
18
18
  },
19
19
  "homepage": "https://www.dynamic.xyz/",
20
20
  "dependencies": {
21
- "@dynamic-labs/assert-package-version": "4.65.0",
22
- "@dynamic-labs/logger": "4.65.0",
21
+ "@dynamic-labs/assert-package-version": "4.66.0",
22
+ "@dynamic-labs/logger": "4.66.0",
23
23
  "@dynamic-labs/sdk-api-core": "0.0.875",
24
- "@dynamic-labs/types": "4.65.0",
25
- "@dynamic-labs/utils": "4.65.0",
26
- "@dynamic-labs/waas": "4.65.0",
27
- "@dynamic-labs/wallet-book": "4.65.0",
28
- "@dynamic-labs/wallet-connector-core": "4.65.0",
24
+ "@dynamic-labs/types": "4.66.0",
25
+ "@dynamic-labs/utils": "4.66.0",
26
+ "@dynamic-labs/waas": "4.66.0",
27
+ "@dynamic-labs/wallet-book": "4.66.0",
28
+ "@dynamic-labs/wallet-connector-core": "4.66.0",
29
29
  "@ton/core": "0.62.0",
30
30
  "@ton/crypto": "3.3.0",
31
31
  "@ton/ton": "16.0.0",
@@ -59,7 +59,7 @@ declare const DynamicWaasTonConnector_base: (abstract new (...args: any[]) => {
59
59
  createWalletAccount({ thresholdSignatureScheme, password, bitcoinConfig, }?: {
60
60
  thresholdSignatureScheme?: string | undefined;
61
61
  password?: string | undefined;
62
- bitcoinConfig?: import("@dynamic-labs-wallet/core").BitcoinConfig | undefined;
62
+ bitcoinConfig?: import("@dynamic-labs-wallet/browser-wallet-client").BitcoinConfig | undefined;
63
63
  } | undefined): Promise<{
64
64
  chainName: string;
65
65
  accountAddress: string;
@@ -133,10 +133,10 @@ declare const DynamicWaasTonConnector_base: (abstract new (...args: any[]) => {
133
133
  unlockWallet({ accountAddress, password, }: {
134
134
  accountAddress: string;
135
135
  password?: string | undefined;
136
- }): Promise<import("@dynamic-labs-wallet/core").GetWalletResponse>;
136
+ }): Promise<import("@dynamic-labs-wallet/browser-wallet-client").GetWalletResponse>;
137
137
  getWalletRecoveryState({ accountAddress, }: {
138
138
  accountAddress: string;
139
- }): Promise<import("@dynamic-labs-wallet/core").WalletRecoveryState>;
139
+ }): Promise<import("@dynamic-labs-wallet/browser-wallet-client").WalletRecoveryState>;
140
140
  endSession(): Promise<void>;
141
141
  getActiveAccountAddress(): Promise<string | undefined>;
142
142
  getConnectedAccounts(): Promise<string[]>;