@dynamic-labs/ton 4.61.7 → 4.62.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,16 @@
1
1
 
2
+ ## [4.62.0](https://github.com/dynamic-labs/dynamic-auth/compare/v4.61.7...v4.62.0) (2026-02-23)
3
+
4
+
5
+ ### Features
6
+
7
+ * add stellar waas connector ([#10472](https://github.com/dynamic-labs/dynamic-auth/issues/10472)) ([8349afe](https://github.com/dynamic-labs/dynamic-auth/commit/8349afece59b430ef398585b372d4cd2733c0ce4))
8
+
9
+
10
+ ### Bug Fixes
11
+
12
+ * **react-native:** ensure transaction confirmation UI is displayed ([#10488](https://github.com/dynamic-labs/dynamic-auth/issues/10488)) ([dfa2304](https://github.com/dynamic-labs/dynamic-auth/commit/dfa230435a9ce0febc5b66fcca5098cbe979f8d7))
13
+
2
14
  ### [4.61.7](https://github.com/dynamic-labs/dynamic-auth/compare/v4.61.6...v4.61.7) (2026-02-20)
3
15
 
4
16
 
package/package.cjs CHANGED
@@ -3,6 +3,6 @@
3
3
 
4
4
  Object.defineProperty(exports, '__esModule', { value: true });
5
5
 
6
- var version = "4.61.7";
6
+ var version = "4.62.0";
7
7
 
8
8
  exports.version = version;
package/package.js CHANGED
@@ -1,4 +1,4 @@
1
1
  'use client'
2
- var version = "4.61.7";
2
+ var version = "4.62.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.61.7",
3
+ "version": "4.62.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,17 +18,18 @@
18
18
  },
19
19
  "homepage": "https://www.dynamic.xyz/",
20
20
  "dependencies": {
21
- "@dynamic-labs/assert-package-version": "4.61.7",
22
- "@dynamic-labs/logger": "4.61.7",
21
+ "@dynamic-labs/assert-package-version": "4.62.0",
22
+ "@dynamic-labs/logger": "4.62.0",
23
23
  "@dynamic-labs/sdk-api-core": "0.0.864",
24
- "@dynamic-labs/types": "4.61.7",
25
- "@dynamic-labs/utils": "4.61.7",
26
- "@dynamic-labs/waas": "4.61.7",
27
- "@dynamic-labs/wallet-book": "4.61.7",
28
- "@dynamic-labs/wallet-connector-core": "4.61.7",
24
+ "@dynamic-labs/types": "4.62.0",
25
+ "@dynamic-labs/utils": "4.62.0",
26
+ "@dynamic-labs/waas": "4.62.0",
27
+ "@dynamic-labs/wallet-book": "4.62.0",
28
+ "@dynamic-labs/wallet-connector-core": "4.62.0",
29
29
  "@ton/core": "0.62.0",
30
30
  "@ton/crypto": "3.3.0",
31
31
  "@ton/ton": "16.0.0",
32
- "@tonconnect/sdk": "3.3.1"
32
+ "@tonconnect/sdk": "3.4.0",
33
+ "@tonconnect/ui": "2.4.0"
33
34
  }
34
35
  }
@@ -3,7 +3,7 @@ import { TonClient } from '@ton/ton';
3
3
  import { Chain, WalletConnectorBase } from '@dynamic-labs/wallet-connector-core';
4
4
  import type { GenericNetwork, IUITransaction } from '@dynamic-labs/types';
5
5
  import { TonWallet } from '../../wallet/TonWallet';
6
- import type { SendJettonOptions, TonConnectConnectorOpts, TonConnectProof, TonTransactionResult } from '../../types';
6
+ import { type SendJettonOptions, type TonConnectConnectorOpts, type TonConnectProof, type TonTransactionResult } from '../../types';
7
7
  /**
8
8
  * TON Connect connector implementation
9
9
  *
package/src/index.d.ts CHANGED
@@ -5,6 +5,7 @@ export * from './types';
5
5
  export { TonWallet, isTonWallet, WaasTonWallet } from './wallet';
6
6
  export { TonUiTransaction, NANOTON_PER_TON, prepareTransaction, prepareTonTransfer, prepareJettonTransfer, getJettonWalletAddress, getWalletSeqno, executeTransaction, extractDisplayInfoFromRequest, convertSendTransactionRequest, generateTonConnectProofHash, } from './utils';
7
7
  export type { PrepareTransactionParams, PrepareTransactionResult, PrepareTonTransferParams, PrepareJettonTransferParams, GetJettonWalletAddressParams, ExecuteTransactionParams, ExecuteTransactionResult, GenerateTonConnectProofHashParams, TransactionRequestDisplayInfo, } from './utils';
8
+ export type { WalletsModalState as TonConnectModalState } from '@tonconnect/ui';
8
9
  export { DynamicWaasTonConnector } from './waas/connector/DynamicWaasTonConnector';
9
10
  export type { DynamicWaasTonConnectorProps } from './waas/connector/DynamicWaasTonConnector';
10
11
  export { DynamicWaasTonConnectors } from './waas/DynamicWaasTonConnectors';