@dynamic-labs/multi-wallet 4.51.0 → 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,27 @@
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
+
11
+ ### [4.51.2](https://github.com/dynamic-labs/dynamic-auth/compare/v4.51.1...v4.51.2) (2025-12-19)
12
+
13
+
14
+ ### Features
15
+
16
+ * add updateUserEmail method ([#10133](https://github.com/dynamic-labs/dynamic-auth/issues/10133)) ([78ba809](https://github.com/dynamic-labs/dynamic-auth/commit/78ba809b8226d00d7c69a55424dc9c9471060ae7))
17
+
18
+ ### [4.51.1](https://github.com/dynamic-labs/dynamic-auth/compare/v4.51.0...v4.51.1) (2025-12-19)
19
+
20
+
21
+ ### Bug Fixes
22
+
23
+ * emit mfaCompletionSuccess event when registering a passkey ([#10135](https://github.com/dynamic-labs/dynamic-auth/issues/10135)) ([1e1a19a](https://github.com/dynamic-labs/dynamic-auth/commit/1e1a19ac19002183b3041c733b2fd98e51b77fa6))
24
+
2
25
  ## [4.51.0](https://github.com/dynamic-labs/dynamic-auth/compare/v4.50.5...v4.51.0) (2025-12-18)
3
26
 
4
27
 
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.0";
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.0";
2
+ var version = "4.52.0";
3
3
 
4
4
  export { version };
package/package.json CHANGED
@@ -1,15 +1,15 @@
1
1
  {
2
2
  "name": "@dynamic-labs/multi-wallet",
3
- "version": "4.51.0",
3
+ "version": "4.52.0",
4
4
  "dependencies": {
5
- "@dynamic-labs/sdk-api-core": "0.0.831",
5
+ "@dynamic-labs/sdk-api-core": "0.0.843",
6
6
  "tslib": "2.4.1",
7
- "@dynamic-labs/assert-package-version": "4.51.0",
8
- "@dynamic-labs/rpc-providers": "4.51.0",
9
- "@dynamic-labs/types": "4.51.0",
10
- "@dynamic-labs/utils": "4.51.0",
11
- "@dynamic-labs/wallet-book": "4.51.0",
12
- "@dynamic-labs/wallet-connector-core": "4.51.0"
7
+ "@dynamic-labs/assert-package-version": "4.52.0",
8
+ "@dynamic-labs/rpc-providers": "4.52.0",
9
+ "@dynamic-labs/types": "4.52.0",
10
+ "@dynamic-labs/utils": "4.52.0",
11
+ "@dynamic-labs/wallet-book": "4.52.0",
12
+ "@dynamic-labs/wallet-connector-core": "4.52.0"
13
13
  },
14
14
  "devDependencies": {
15
15
  "@walletconnect/types": "2.21.5"
@@ -17,6 +17,7 @@ const getWalletConnectorConstructorOptions = ({ appLogoUrl, appName, authMode, c
17
17
  const suiNetworkConfigs = (networkConfigurations === null || networkConfigurations === void 0 ? void 0 : networkConfigurations.sui) || [];
18
18
  const tronNetworkConfigs = (networkConfigurations === null || networkConfigurations === void 0 ? void 0 : networkConfigurations.tron) || [];
19
19
  const aptosNetworkConfigs = (networkConfigurations === null || networkConfigurations === void 0 ? void 0 : networkConfigurations.aptos) || [];
20
+ const tonNetworkConfigs = (networkConfigurations === null || networkConfigurations === void 0 ? void 0 : networkConfigurations.ton) || [];
20
21
  const apiProviders = getApiProviders.getApiProviders(getEnabledProviders.getEnabledProviders(settings.providers));
21
22
  const opts = {
22
23
  apiProviders,
@@ -37,6 +38,7 @@ const getWalletConnectorConstructorOptions = ({ appLogoUrl, appName, authMode, c
37
38
  solNetworks: solanaNetworkConfigs,
38
39
  starknetNetworks: starknetNetworkConfigs,
39
40
  suiNetworks: suiNetworkConfigs,
41
+ tonNetworks: tonNetworkConfigs,
40
42
  tronNetworks: tronNetworkConfigs,
41
43
  useMetamaskSdk,
42
44
  walletBook,
@@ -80,6 +80,7 @@ export declare const getWalletConnectorConstructorOptions: ({ appLogoUrl, appNam
80
80
  solNetworks: import("@dynamic-labs/types").GenericNetwork[];
81
81
  starknetNetworks: import("@dynamic-labs/types").GenericNetwork[];
82
82
  suiNetworks: import("@dynamic-labs/types").GenericNetwork[];
83
+ tonNetworks: import("@dynamic-labs/types").GenericNetwork[];
83
84
  tronNetworks: import("@dynamic-labs/types").GenericNetwork[];
84
85
  useMetamaskSdk: boolean;
85
86
  walletBook: {
@@ -13,6 +13,7 @@ const getWalletConnectorConstructorOptions = ({ appLogoUrl, appName, authMode, c
13
13
  const suiNetworkConfigs = (networkConfigurations === null || networkConfigurations === void 0 ? void 0 : networkConfigurations.sui) || [];
14
14
  const tronNetworkConfigs = (networkConfigurations === null || networkConfigurations === void 0 ? void 0 : networkConfigurations.tron) || [];
15
15
  const aptosNetworkConfigs = (networkConfigurations === null || networkConfigurations === void 0 ? void 0 : networkConfigurations.aptos) || [];
16
+ const tonNetworkConfigs = (networkConfigurations === null || networkConfigurations === void 0 ? void 0 : networkConfigurations.ton) || [];
16
17
  const apiProviders = getApiProviders(getEnabledProviders(settings.providers));
17
18
  const opts = {
18
19
  apiProviders,
@@ -33,6 +34,7 @@ const getWalletConnectorConstructorOptions = ({ appLogoUrl, appName, authMode, c
33
34
  solNetworks: solanaNetworkConfigs,
34
35
  starknetNetworks: starknetNetworkConfigs,
35
36
  suiNetworks: suiNetworkConfigs,
37
+ tonNetworks: tonNetworkConfigs,
36
38
  tronNetworks: tronNetworkConfigs,
37
39
  useMetamaskSdk,
38
40
  walletBook,