@dynamic-labs/multi-wallet 4.70.0 → 4.71.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.71.0](https://github.com/dynamic-labs/dynamic-auth/compare/v4.70.0...v4.71.0) (2026-03-24)
3
+
4
+
5
+ ### Features
6
+
7
+ * add Tempo chain connector and core type definitions ([#10672](https://github.com/dynamic-labs/dynamic-auth/issues/10672)) ([0439c15](https://github.com/dynamic-labs/dynamic-auth/commit/0439c153238359083b9f226dcd2ebf6d83e26519))
8
+ * add verifySocial method to demo site step-up auth methods ([#10721](https://github.com/dynamic-labs/dynamic-auth/issues/10721)) ([b9ef517](https://github.com/dynamic-labs/dynamic-auth/commit/b9ef5173df3e3ed08f718de49b036ea899dc1832))
9
+ * **demo:** add Tempo chain support to demo app ([#10674](https://github.com/dynamic-labs/dynamic-auth/issues/10674)) ([a5918fc](https://github.com/dynamic-labs/dynamic-auth/commit/a5918fc2ab0821e7f025aa470573129f71de33cc))
10
+ * repurpose verifyWithExternalJwt for elevated access token requests ([#10743](https://github.com/dynamic-labs/dynamic-auth/issues/10743)) ([d1abda0](https://github.com/dynamic-labs/dynamic-auth/commit/d1abda0111d68c78226d30bd0630e6e341dedad9))
11
+ * **sdk:** add Tempo chain support to UI components ([#10673](https://github.com/dynamic-labs/dynamic-auth/issues/10673)) ([aec9fbb](https://github.com/dynamic-labs/dynamic-auth/commit/aec9fbb20754a2935bffe106e7e8715f46be3de7))
12
+ * support multi-chain wallet creation in createWallet ([#10694](https://github.com/dynamic-labs/dynamic-auth/issues/10694)) ([0b6b57f](https://github.com/dynamic-labs/dynamic-auth/commit/0b6b57f4179c35d1f86d1c8c9c40f52cb307c849))
13
+ * wire up elevatedAccessToken for sign, reshare, and refresh operations ([#10737](https://github.com/dynamic-labs/dynamic-auth/issues/10737)) ([f9d5c76](https://github.com/dynamic-labs/dynamic-auth/commit/f9d5c768037aff4f5d7994b6bc6c338621a6ee6b))
14
+
2
15
  ## [4.70.0](https://github.com/dynamic-labs/dynamic-auth/compare/v4.69.0...v4.70.0) (2026-03-23)
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.70.0";
6
+ var version = "4.71.0";
7
7
 
8
8
  exports.version = version;
package/package.js CHANGED
@@ -1,4 +1,4 @@
1
1
  'use client'
2
- var version = "4.70.0";
2
+ var version = "4.71.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.70.0",
3
+ "version": "4.71.0",
4
4
  "dependencies": {
5
5
  "@dynamic-labs/sdk-api-core": "0.0.909",
6
6
  "tslib": "2.4.1",
7
- "@dynamic-labs/assert-package-version": "4.70.0",
8
- "@dynamic-labs/rpc-providers": "4.70.0",
9
- "@dynamic-labs/types": "4.70.0",
10
- "@dynamic-labs/utils": "4.70.0",
11
- "@dynamic-labs/wallet-book": "4.70.0",
12
- "@dynamic-labs/wallet-connector-core": "4.70.0"
7
+ "@dynamic-labs/assert-package-version": "4.71.0",
8
+ "@dynamic-labs/rpc-providers": "4.71.0",
9
+ "@dynamic-labs/types": "4.71.0",
10
+ "@dynamic-labs/utils": "4.71.0",
11
+ "@dynamic-labs/wallet-book": "4.71.0",
12
+ "@dynamic-labs/wallet-connector-core": "4.71.0"
13
13
  },
14
14
  "devDependencies": {
15
15
  "@walletconnect/types": "2.21.5"
@@ -21,6 +21,7 @@ const getWalletConnectorConstructorOptions = ({ appLogoUrl, appName, authMode, c
21
21
  const aptosNetworkConfigs = (networkConfigurations === null || networkConfigurations === void 0 ? void 0 : networkConfigurations.aptos) || [];
22
22
  const tonNetworkConfigs = (networkConfigurations === null || networkConfigurations === void 0 ? void 0 : networkConfigurations.ton) || [];
23
23
  const bitcoinNetworkConfigs = (networkConfigurations === null || networkConfigurations === void 0 ? void 0 : networkConfigurations.bitcoin) || [];
24
+ const tempoNetworkConfigs = (networkConfigurations === null || networkConfigurations === void 0 ? void 0 : networkConfigurations.tempo) || [];
24
25
  const apiProviders = getApiProviders.getApiProviders(getEnabledProviders.getEnabledProviders(settings.providers));
25
26
  const opts = {
26
27
  aleoNetworks: aleoNetworkConfigs,
@@ -45,6 +46,7 @@ const getWalletConnectorConstructorOptions = ({ appLogoUrl, appName, authMode, c
45
46
  starknetNetworks: starknetNetworkConfigs,
46
47
  stellarNetworks: stellarNetworkConfigs,
47
48
  suiNetworks: suiNetworkConfigs,
49
+ tempoNetworks: tempoNetworkConfigs,
48
50
  tonNetworks: tonNetworkConfigs,
49
51
  tronNetworks: tronNetworkConfigs,
50
52
  useMetamaskSdk,
@@ -85,6 +85,7 @@ export declare const getWalletConnectorConstructorOptions: ({ appLogoUrl, appNam
85
85
  starknetNetworks: import("@dynamic-labs/types").GenericNetwork[];
86
86
  stellarNetworks: import("@dynamic-labs/types").GenericNetwork[];
87
87
  suiNetworks: import("@dynamic-labs/types").GenericNetwork[];
88
+ tempoNetworks: import("@dynamic-labs/types").GenericNetwork[];
88
89
  tonNetworks: import("@dynamic-labs/types").GenericNetwork[];
89
90
  tronNetworks: import("@dynamic-labs/types").GenericNetwork[];
90
91
  useMetamaskSdk: boolean;
@@ -17,6 +17,7 @@ const getWalletConnectorConstructorOptions = ({ appLogoUrl, appName, authMode, c
17
17
  const aptosNetworkConfigs = (networkConfigurations === null || networkConfigurations === void 0 ? void 0 : networkConfigurations.aptos) || [];
18
18
  const tonNetworkConfigs = (networkConfigurations === null || networkConfigurations === void 0 ? void 0 : networkConfigurations.ton) || [];
19
19
  const bitcoinNetworkConfigs = (networkConfigurations === null || networkConfigurations === void 0 ? void 0 : networkConfigurations.bitcoin) || [];
20
+ const tempoNetworkConfigs = (networkConfigurations === null || networkConfigurations === void 0 ? void 0 : networkConfigurations.tempo) || [];
20
21
  const apiProviders = getApiProviders(getEnabledProviders(settings.providers));
21
22
  const opts = {
22
23
  aleoNetworks: aleoNetworkConfigs,
@@ -41,6 +42,7 @@ const getWalletConnectorConstructorOptions = ({ appLogoUrl, appName, authMode, c
41
42
  starknetNetworks: starknetNetworkConfigs,
42
43
  stellarNetworks: stellarNetworkConfigs,
43
44
  suiNetworks: suiNetworkConfigs,
45
+ tempoNetworks: tempoNetworkConfigs,
44
46
  tonNetworks: tonNetworkConfigs,
45
47
  tronNetworks: tronNetworkConfigs,
46
48
  useMetamaskSdk,