@dynamic-labs/ton 4.90.0 → 4.91.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,21 @@
1
1
 
2
+ ## [4.91.0](https://github.com/dynamic-labs/dynamic-auth/compare/v4.90.0...v4.91.0) (2026-06-23)
3
+
4
+
5
+ ### Features
6
+
7
+ * **midnight:** add WaaS layer to @dynamic-labs/midnight ([#11006](https://github.com/dynamic-labs/dynamic-auth/issues/11006)) ([01b9d16](https://github.com/dynamic-labs/dynamic-auth/commit/01b9d16d0ba92a141a9be546ca00cca4029894d5))
8
+ * **sdk-react-core:** widget support for Midnight multi-address display + export hiding ([#11008](https://github.com/dynamic-labs/dynamic-auth/issues/11008)) ([87320b4](https://github.com/dynamic-labs/dynamic-auth/commit/87320b4d6e286b88e17f144641346e16a27e9e71))
9
+ * **waas:** wire session public key through host backup ops for keyshare diagnostics [DYNT-1280] ([#11675](https://github.com/dynamic-labs/dynamic-auth/issues/11675)) ([4f7981c](https://github.com/dynamic-labs/dynamic-auth/commit/4f7981c009930469dec7b3dec93f20f99bbe5498))
10
+
11
+
12
+ ### Bug Fixes
13
+
14
+ * **ethereum-aa:** make ZeroDevConnector inert instead of throwing when ZeroDev config is absent ([#11610](https://github.com/dynamic-labs/dynamic-auth/issues/11610)) ([a3aab6a](https://github.com/dynamic-labs/dynamic-auth/commit/a3aab6a97e2e996f96b725f9336704b844f79603))
15
+ * **react-native-extension:** fall back to react-native-webview when embedded native module is unavailable ([#11683](https://github.com/dynamic-labs/dynamic-auth/issues/11683)) ([3f8d92c](https://github.com/dynamic-labs/dynamic-auth/commit/3f8d92ca0c327128b16e3355ab2f4e63d2c8e731))
16
+ * **sdk-react-core:** warn instead of throwing when ZeroDev connector is absent ([#11611](https://github.com/dynamic-labs/dynamic-auth/issues/11611)) ([5836252](https://github.com/dynamic-labs/dynamic-auth/commit/58362524e45205399c0fdc5b92414190d1929e0b))
17
+ * **waas-evm:** sign EOA transactions with the resolved chainId, not the connector default ([#11653](https://github.com/dynamic-labs/dynamic-auth/issues/11653)) ([e634098](https://github.com/dynamic-labs/dynamic-auth/commit/e634098f0f23f4c53f92a580db6f4aacbd6b1f92))
18
+
2
19
  ## [4.90.0](https://github.com/dynamic-labs/dynamic-auth/compare/v4.89.0...v4.90.0) (2026-06-19)
3
20
 
4
21
 
package/package.cjs CHANGED
@@ -3,6 +3,6 @@
3
3
 
4
4
  Object.defineProperty(exports, '__esModule', { value: true });
5
5
 
6
- var version = "4.90.0";
6
+ var version = "4.91.0";
7
7
 
8
8
  exports.version = version;
package/package.js CHANGED
@@ -1,4 +1,4 @@
1
1
  'use client'
2
- var version = "4.90.0";
2
+ var version = "4.91.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.90.0",
3
+ "version": "4.91.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",
@@ -19,14 +19,14 @@
19
19
  "homepage": "https://www.dynamic.xyz/",
20
20
  "dependencies": {
21
21
  "@dynamic-labs-sdk/client": "1.12.1",
22
- "@dynamic-labs/assert-package-version": "4.90.0",
23
- "@dynamic-labs/logger": "4.90.0",
22
+ "@dynamic-labs/assert-package-version": "4.91.0",
23
+ "@dynamic-labs/logger": "4.91.0",
24
24
  "@dynamic-labs/sdk-api-core": "0.0.1046",
25
- "@dynamic-labs/types": "4.90.0",
26
- "@dynamic-labs/utils": "4.90.0",
27
- "@dynamic-labs/waas": "4.90.0",
28
- "@dynamic-labs/wallet-book": "4.90.0",
29
- "@dynamic-labs/wallet-connector-core": "4.90.0",
25
+ "@dynamic-labs/types": "4.91.0",
26
+ "@dynamic-labs/utils": "4.91.0",
27
+ "@dynamic-labs/waas": "4.91.0",
28
+ "@dynamic-labs/wallet-book": "4.91.0",
29
+ "@dynamic-labs/wallet-connector-core": "4.91.0",
30
30
  "@ton/core": "0.62.0",
31
31
  "@ton/crypto": "3.3.0",
32
32
  "@ton/ton": "16.0.0",
@@ -17,6 +17,7 @@ declare const DynamicWaasTonConnector_base: (abstract new (...args: any[]) => {
17
17
  overrideKey: string;
18
18
  isEmbeddedWallet: boolean;
19
19
  getSignedSessionId?: (() => Promise<string>) | undefined;
20
+ getSessionPublicKey?: (() => Promise<string | undefined>) | undefined;
20
21
  getMfaToken?: ((props?: {
21
22
  mfaAction?: MFAAction | undefined;
22
23
  } | undefined) => Promise<string | undefined>) | undefined;
@@ -25,6 +26,7 @@ declare const DynamicWaasTonConnector_base: (abstract new (...args: any[]) => {
25
26
  getElevatedAccessToken?: ((props: {
26
27
  scope: TokenScope;
27
28
  }) => Promise<string | undefined>) | undefined;
29
+ onUnauthorized?: (() => void | Promise<void>) | undefined;
28
30
  environmentId?: string | undefined;
29
31
  baseApiUrl?: string | undefined;
30
32
  relayUrl?: string | undefined;
@@ -36,6 +38,7 @@ declare const DynamicWaasTonConnector_base: (abstract new (...args: any[]) => {
36
38
  __exportHandler: import("@dynamic-labs/waas").WaasExportHandler;
37
39
  validateActiveWallet(expectedAddress: string): Promise<void>;
38
40
  setGetAuthTokenFunction(getAuthToken: () => string): void;
41
+ setOnUnauthorizedFunction(onUnauthorized: () => void | Promise<void>): void;
39
42
  setWaasAuthMode(authMode: "cookie" | "header"): void;
40
43
  setGetMfaTokenFunction(getMfaToken: (props?: {
41
44
  mfaAction?: MFAAction | undefined;
@@ -55,6 +58,7 @@ declare const DynamicWaasTonConnector_base: (abstract new (...args: any[]) => {
55
58
  setBaseClientKeysharesRelayApiUrl(baseClientKeysharesRelayApiUrl?: string | undefined): void;
56
59
  setRelayUrl(relayUrl: string): void;
57
60
  setGetSignedSessionIdFunction(getSignedSessionId: () => Promise<string>): void;
61
+ setGetSessionPublicKeyFunction(getSessionPublicKey: () => Promise<string | undefined>): void;
58
62
  delegateKeyShares({ accountAddress, password, }: {
59
63
  accountAddress: string;
60
64
  password?: string | undefined;
@@ -165,6 +169,16 @@ declare const DynamicWaasTonConnector_base: (abstract new (...args: any[]) => {
165
169
  fn: (timing: import("dist/packages/waas/utils/instrumentation").InstrumentationTimer) => Promise<T_1>;
166
170
  context?: Record<string, any> | undefined;
167
171
  }): Promise<T_1>;
172
+ getPrivateBalance(): Promise<{
173
+ unshielded: Record<string, string>;
174
+ shielded: Record<string, string>;
175
+ dust: {
176
+ balance: string;
177
+ cap: string;
178
+ };
179
+ address: string;
180
+ dustSynced: boolean;
181
+ }>;
168
182
  }) & typeof TonWalletConnector;
169
183
  export declare class DynamicWaasTonConnector extends DynamicWaasTonConnector_base implements IDynamicWaasConnector {
170
184
  ChainWallet: typeof WaasTonWallet;