@dynamic-labs/multi-wallet 4.55.0 → 4.57.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,24 @@
1
1
 
2
+ ## [4.57.0](https://github.com/dynamic-labs/dynamic-auth/compare/v4.56.0...v4.57.0) (2026-01-20)
3
+
4
+
5
+ ### Features
6
+
7
+ * auto redirect back from wallet connect ([#10257](https://github.com/dynamic-labs/dynamic-auth/issues/10257)) ([92994da](https://github.com/dynamic-labs/dynamic-auth/commit/92994dadaae851e309b5f889c0e415241cb2d00f))
8
+
9
+
10
+ ### Bug Fixes
11
+
12
+ * metamask console noise when signing in with wallet connect ([#10263](https://github.com/dynamic-labs/dynamic-auth/issues/10263)) ([1861e4a](https://github.com/dynamic-labs/dynamic-auth/commit/1861e4a3e78dd7d7a5a250da32f722a7bf972083))
13
+ * only throw webview did not load error after retries ([#10255](https://github.com/dynamic-labs/dynamic-auth/issues/10255)) ([7c11824](https://github.com/dynamic-labs/dynamic-auth/commit/7c11824c32c9058c12aa5d6998b8cc3fe7e75938))
14
+
15
+ ## [4.56.0](https://github.com/dynamic-labs/dynamic-auth/compare/v4.55.0...v4.56.0) (2026-01-19)
16
+
17
+
18
+ ### Features
19
+
20
+ * add iCloud backup support alongside Google Drive ([#10222](https://github.com/dynamic-labs/dynamic-auth/issues/10222)) ([62b3fe6](https://github.com/dynamic-labs/dynamic-auth/commit/62b3fe60756b7f48abb48f9fac82225c514660aa))
21
+
2
22
  ## [4.55.0](https://github.com/dynamic-labs/dynamic-auth/compare/v4.54.0...v4.55.0) (2026-01-17)
3
23
 
4
24
 
package/package.cjs CHANGED
@@ -3,6 +3,6 @@
3
3
 
4
4
  Object.defineProperty(exports, '__esModule', { value: true });
5
5
 
6
- var version = "4.55.0";
6
+ var version = "4.57.0";
7
7
 
8
8
  exports.version = version;
package/package.js CHANGED
@@ -1,4 +1,4 @@
1
1
  'use client'
2
- var version = "4.55.0";
2
+ var version = "4.57.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.55.0",
3
+ "version": "4.57.0",
4
4
  "dependencies": {
5
- "@dynamic-labs/sdk-api-core": "0.0.855",
5
+ "@dynamic-labs/sdk-api-core": "0.0.860",
6
6
  "tslib": "2.4.1",
7
- "@dynamic-labs/assert-package-version": "4.55.0",
8
- "@dynamic-labs/rpc-providers": "4.55.0",
9
- "@dynamic-labs/types": "4.55.0",
10
- "@dynamic-labs/utils": "4.55.0",
11
- "@dynamic-labs/wallet-book": "4.55.0",
12
- "@dynamic-labs/wallet-connector-core": "4.55.0"
7
+ "@dynamic-labs/assert-package-version": "4.57.0",
8
+ "@dynamic-labs/rpc-providers": "4.57.0",
9
+ "@dynamic-labs/types": "4.57.0",
10
+ "@dynamic-labs/utils": "4.57.0",
11
+ "@dynamic-labs/wallet-book": "4.57.0",
12
+ "@dynamic-labs/wallet-connector-core": "4.57.0"
13
13
  },
14
14
  "devDependencies": {
15
15
  "@walletconnect/types": "2.21.5"
package/src/types.d.ts CHANGED
@@ -13,6 +13,7 @@ export type GetSupportedWalletsOpts = {
13
13
  flowNetwork?: 'mainnet' | 'testnet';
14
14
  mobileExperience?: MobileExperience;
15
15
  networkConfigurations?: NetworkConfigurationMap;
16
+ redirectUrl?: string;
16
17
  settings: ProjectSettings;
17
18
  skipMemo?: boolean;
18
19
  walletBook: WalletBookSchema;
@@ -8,7 +8,7 @@ var getEnabledProviders = require('../getEnabledProviders/getEnabledProviders.cj
8
8
  var getApiProviders = require('../getApiProviders/getApiProviders.cjs');
9
9
  var _const = require('../../const.cjs');
10
10
 
11
- const getWalletConnectorConstructorOptions = ({ appLogoUrl, appName, authMode, coinbaseWalletPreference, chainRpcProviders, deepLinkPreference, flowNetwork, mobileExperience, networkConfigurations, settings, walletConnectProjectId, walletUiUtils, walletBook, walletConnectPreferredChains, useMetamaskSdk = true, }) => {
11
+ const getWalletConnectorConstructorOptions = ({ appLogoUrl, appName, authMode, coinbaseWalletPreference, chainRpcProviders, deepLinkPreference, flowNetwork, mobileExperience, networkConfigurations, redirectUrl, settings, walletConnectProjectId, walletUiUtils, walletBook, walletConnectPreferredChains, useMetamaskSdk = true, }) => {
12
12
  const eclipseNetworkConfigs = (networkConfigurations === null || networkConfigurations === void 0 ? void 0 : networkConfigurations.eclipse) || [];
13
13
  const evmNetworkConfigs = (networkConfigurations === null || networkConfigurations === void 0 ? void 0 : networkConfigurations.evm) || [];
14
14
  const solanaNetworkConfigs = (networkConfigurations === null || networkConfigurations === void 0 ? void 0 : networkConfigurations.solana) || [];
@@ -19,6 +19,7 @@ const getWalletConnectorConstructorOptions = ({ appLogoUrl, appName, authMode, c
19
19
  const tronNetworkConfigs = (networkConfigurations === null || networkConfigurations === void 0 ? void 0 : networkConfigurations.tron) || [];
20
20
  const aptosNetworkConfigs = (networkConfigurations === null || networkConfigurations === void 0 ? void 0 : networkConfigurations.aptos) || [];
21
21
  const tonNetworkConfigs = (networkConfigurations === null || networkConfigurations === void 0 ? void 0 : networkConfigurations.ton) || [];
22
+ const bitcoinNetworkConfigs = (networkConfigurations === null || networkConfigurations === void 0 ? void 0 : networkConfigurations.bitcoin) || [];
22
23
  const apiProviders = getApiProviders.getApiProviders(getEnabledProviders.getEnabledProviders(settings.providers));
23
24
  const opts = {
24
25
  apiProviders,
@@ -26,6 +27,7 @@ const getWalletConnectorConstructorOptions = ({ appLogoUrl, appName, authMode, c
26
27
  appName,
27
28
  aptosNetworks: aptosNetworkConfigs,
28
29
  authMode,
30
+ bitcoinNetworks: bitcoinNetworkConfigs,
29
31
  chainRpcProviders,
30
32
  coinbaseWalletPreference,
31
33
  cosmosNetworks: cosmosNetworkConfigs,
@@ -35,6 +37,7 @@ const getWalletConnectorConstructorOptions = ({ appLogoUrl, appName, authMode, c
35
37
  flowNetwork,
36
38
  mobileExperience,
37
39
  projectId: walletConnectProjectId,
40
+ redirectUrl,
38
41
  settings,
39
42
  solNetworks: solanaNetworkConfigs,
40
43
  starknetNetworks: starknetNetworkConfigs,
@@ -13,6 +13,7 @@ type WalletConnectorConstructorOptionsParams = {
13
13
  flowNetwork?: 'mainnet' | 'testnet';
14
14
  mobileExperience?: MobileExperience;
15
15
  networkConfigurations?: NetworkConfigurationMap;
16
+ redirectUrl?: string;
16
17
  settings: ProjectSettings;
17
18
  useMetamaskSdk?: boolean;
18
19
  walletBook: WalletBookSchema;
@@ -20,7 +21,7 @@ type WalletConnectorConstructorOptionsParams = {
20
21
  walletUiUtils?: WalletUiUtils<InternalWalletConnector>;
21
22
  walletConnectPreferredChains?: `eip155:${number}`[];
22
23
  };
23
- export declare const getWalletConnectorConstructorOptions: ({ appLogoUrl, appName, authMode, coinbaseWalletPreference, chainRpcProviders, deepLinkPreference, flowNetwork, mobileExperience, networkConfigurations, settings, walletConnectProjectId, walletUiUtils, walletBook, walletConnectPreferredChains, useMetamaskSdk, }: WalletConnectorConstructorOptionsParams) => {
24
+ export declare const getWalletConnectorConstructorOptions: ({ appLogoUrl, appName, authMode, coinbaseWalletPreference, chainRpcProviders, deepLinkPreference, flowNetwork, mobileExperience, networkConfigurations, redirectUrl, settings, walletConnectProjectId, walletUiUtils, walletBook, walletConnectPreferredChains, useMetamaskSdk, }: WalletConnectorConstructorOptionsParams) => {
24
25
  apiProviders: {
25
26
  emailOnly?: import("@dynamic-labs/sdk-api-core").Provider | undefined;
26
27
  magicLink?: import("@dynamic-labs/sdk-api-core").Provider | undefined;
@@ -67,6 +68,7 @@ export declare const getWalletConnectorConstructorOptions: ({ appLogoUrl, appNam
67
68
  appName: string | undefined;
68
69
  aptosNetworks: import("@dynamic-labs/types").GenericNetwork[];
69
70
  authMode: AuthMode | undefined;
71
+ bitcoinNetworks: import("@dynamic-labs/types").GenericNetwork[];
70
72
  chainRpcProviders: IChainRpcProviders;
71
73
  coinbaseWalletPreference: CoinbaseWalletPreference | undefined;
72
74
  cosmosNetworks: import("@dynamic-labs/types").GenericNetwork[];
@@ -76,6 +78,7 @@ export declare const getWalletConnectorConstructorOptions: ({ appLogoUrl, appNam
76
78
  flowNetwork: "mainnet" | "testnet" | undefined;
77
79
  mobileExperience: MobileExperience | undefined;
78
80
  projectId: string | undefined;
81
+ redirectUrl: string | undefined;
79
82
  settings: ProjectSettings;
80
83
  solNetworks: import("@dynamic-labs/types").GenericNetwork[];
81
84
  starknetNetworks: import("@dynamic-labs/types").GenericNetwork[];
@@ -4,7 +4,7 @@ import { getEnabledProviders } from '../getEnabledProviders/getEnabledProviders.
4
4
  import { getApiProviders } from '../getApiProviders/getApiProviders.js';
5
5
  import { defaultWalletUiUtils } from '../../const.js';
6
6
 
7
- const getWalletConnectorConstructorOptions = ({ appLogoUrl, appName, authMode, coinbaseWalletPreference, chainRpcProviders, deepLinkPreference, flowNetwork, mobileExperience, networkConfigurations, settings, walletConnectProjectId, walletUiUtils, walletBook, walletConnectPreferredChains, useMetamaskSdk = true, }) => {
7
+ const getWalletConnectorConstructorOptions = ({ appLogoUrl, appName, authMode, coinbaseWalletPreference, chainRpcProviders, deepLinkPreference, flowNetwork, mobileExperience, networkConfigurations, redirectUrl, settings, walletConnectProjectId, walletUiUtils, walletBook, walletConnectPreferredChains, useMetamaskSdk = true, }) => {
8
8
  const eclipseNetworkConfigs = (networkConfigurations === null || networkConfigurations === void 0 ? void 0 : networkConfigurations.eclipse) || [];
9
9
  const evmNetworkConfigs = (networkConfigurations === null || networkConfigurations === void 0 ? void 0 : networkConfigurations.evm) || [];
10
10
  const solanaNetworkConfigs = (networkConfigurations === null || networkConfigurations === void 0 ? void 0 : networkConfigurations.solana) || [];
@@ -15,6 +15,7 @@ const getWalletConnectorConstructorOptions = ({ appLogoUrl, appName, authMode, c
15
15
  const tronNetworkConfigs = (networkConfigurations === null || networkConfigurations === void 0 ? void 0 : networkConfigurations.tron) || [];
16
16
  const aptosNetworkConfigs = (networkConfigurations === null || networkConfigurations === void 0 ? void 0 : networkConfigurations.aptos) || [];
17
17
  const tonNetworkConfigs = (networkConfigurations === null || networkConfigurations === void 0 ? void 0 : networkConfigurations.ton) || [];
18
+ const bitcoinNetworkConfigs = (networkConfigurations === null || networkConfigurations === void 0 ? void 0 : networkConfigurations.bitcoin) || [];
18
19
  const apiProviders = getApiProviders(getEnabledProviders(settings.providers));
19
20
  const opts = {
20
21
  apiProviders,
@@ -22,6 +23,7 @@ const getWalletConnectorConstructorOptions = ({ appLogoUrl, appName, authMode, c
22
23
  appName,
23
24
  aptosNetworks: aptosNetworkConfigs,
24
25
  authMode,
26
+ bitcoinNetworks: bitcoinNetworkConfigs,
25
27
  chainRpcProviders,
26
28
  coinbaseWalletPreference,
27
29
  cosmosNetworks: cosmosNetworkConfigs,
@@ -31,6 +33,7 @@ const getWalletConnectorConstructorOptions = ({ appLogoUrl, appName, authMode, c
31
33
  flowNetwork,
32
34
  mobileExperience,
33
35
  projectId: walletConnectProjectId,
36
+ redirectUrl,
34
37
  settings,
35
38
  solNetworks: solanaNetworkConfigs,
36
39
  starknetNetworks: starknetNetworkConfigs,