@dynamic-labs/wallet-connector-core 4.51.2 → 4.52.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,13 @@
1
1
 
2
+ ## [4.52.0](https://github.com/dynamic-labs/dynamic-auth/compare/v4.51.2...v4.52.0) (2025-12-22)
3
+
4
+
5
+ ### Features
6
+
7
+ * add dynamic waas ton connector ([#9981](https://github.com/dynamic-labs/dynamic-auth/issues/9981)) ([95f2ecf](https://github.com/dynamic-labs/dynamic-auth/commit/95f2ecf253550ec8badad588a904599321a5846d))
8
+ * add getTransactionHistory to react-native ([#10132](https://github.com/dynamic-labs/dynamic-auth/issues/10132)) ([bed6ce1](https://github.com/dynamic-labs/dynamic-auth/commit/bed6ce13b5e12f80121eebf6421355ae2b87968d))
9
+ * add useGetTransactionHistory hook ([#10131](https://github.com/dynamic-labs/dynamic-auth/issues/10131)) ([431e7e1](https://github.com/dynamic-labs/dynamic-auth/commit/431e7e1a70cd0556c14f55c2827bb419f38a59c9))
10
+
2
11
  ### [4.51.2](https://github.com/dynamic-labs/dynamic-auth/compare/v4.51.1...v4.51.2) (2025-12-19)
3
12
 
4
13
 
package/package.cjs CHANGED
@@ -3,6 +3,6 @@
3
3
 
4
4
  Object.defineProperty(exports, '__esModule', { value: true });
5
5
 
6
- var version = "4.51.2";
6
+ var version = "4.52.0";
7
7
 
8
8
  exports.version = version;
package/package.js CHANGED
@@ -1,4 +1,4 @@
1
1
  'use client'
2
- var version = "4.51.2";
2
+ var version = "4.52.0";
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.51.2",
3
+ "version": "4.52.0",
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.51.2",
23
- "@dynamic-labs/logger": "4.51.2",
24
- "@dynamic-labs/rpc-providers": "4.51.2",
25
- "@dynamic-labs/types": "4.51.2",
26
- "@dynamic-labs/utils": "4.51.2",
27
- "@dynamic-labs/wallet-book": "4.51.2",
22
+ "@dynamic-labs/assert-package-version": "4.52.0",
23
+ "@dynamic-labs/logger": "4.52.0",
24
+ "@dynamic-labs/rpc-providers": "4.52.0",
25
+ "@dynamic-labs/types": "4.52.0",
26
+ "@dynamic-labs/utils": "4.52.0",
27
+ "@dynamic-labs/wallet-book": "4.52.0",
28
28
  "eventemitter3": "5.0.1"
29
29
  },
30
30
  "peerDependencies": {}
@@ -22,6 +22,7 @@ const chainsInfo = [
22
22
  createChainInfo('Starknet', 'starknet', 'ETH'),
23
23
  createChainInfo('Sui', 'sui', 'SUI'),
24
24
  createChainInfo('Tron', 'tron', 'TRON'),
25
+ createChainInfo('TON', 'ton', 'TON'),
25
26
  ];
26
27
  const chainOverrides = {
27
28
  algo: 'algorand',
@@ -1,5 +1,5 @@
1
1
  import { ChainInfo } from '../..';
2
- export type ChainName = 'algorand' | 'aptos' | 'bitcoin' | 'cosmos' | 'eclipse' | 'evm' | 'flow' | 'solana' | 'spark' | 'starknet' | 'sui' | 'tron';
2
+ export type ChainName = 'algorand' | 'aptos' | 'bitcoin' | 'cosmos' | 'eclipse' | 'evm' | 'flow' | 'solana' | 'spark' | 'starknet' | 'sui' | 'ton' | 'tron';
3
3
  export type ChainDisplayOverrides = Partial<Record<ChainName, {
4
4
  displayName?: string;
5
5
  }>>;
@@ -18,6 +18,7 @@ const chainsInfo = [
18
18
  createChainInfo('Starknet', 'starknet', 'ETH'),
19
19
  createChainInfo('Sui', 'sui', 'SUI'),
20
20
  createChainInfo('Tron', 'tron', 'TRON'),
21
+ createChainInfo('TON', 'ton', 'TON'),
21
22
  ];
22
23
  const chainOverrides = {
23
24
  algo: 'algorand',