@dynamic-labs/multi-wallet 4.79.1 → 4.79.2
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 +7 -0
- package/package.cjs +1 -1
- package/package.js +1 -1
- package/package.json +8 -8
- package/src/utils/getWalletConnectorConstructorOptions/getWalletConnectorConstructorOptions.cjs +2 -0
- package/src/utils/getWalletConnectorConstructorOptions/getWalletConnectorConstructorOptions.d.ts +1 -0
- package/src/utils/getWalletConnectorConstructorOptions/getWalletConnectorConstructorOptions.js +2 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,4 +1,11 @@
|
|
|
1
1
|
|
|
2
|
+
### [4.79.2](https://github.com/dynamic-labs/dynamic-auth/compare/v4.79.1...v4.79.2) (2026-05-04)
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
### Bug Fixes
|
|
6
|
+
|
|
7
|
+
* **react-native:** remove extra react-native turbo modules instructions ([#11126](https://github.com/dynamic-labs/dynamic-auth/issues/11126))
|
|
8
|
+
|
|
2
9
|
### [4.79.1](https://github.com/dynamic-labs/dynamic-auth/compare/v4.79.0...v4.79.1) (2026-05-01)
|
|
3
10
|
|
|
4
11
|
|
package/package.cjs
CHANGED
package/package.js
CHANGED
package/package.json
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dynamic-labs/multi-wallet",
|
|
3
|
-
"version": "4.79.
|
|
3
|
+
"version": "4.79.2",
|
|
4
4
|
"dependencies": {
|
|
5
|
-
"@dynamic-labs/sdk-api-core": "0.0.
|
|
5
|
+
"@dynamic-labs/sdk-api-core": "0.0.958",
|
|
6
6
|
"tslib": "2.4.1",
|
|
7
|
-
"@dynamic-labs/assert-package-version": "4.79.
|
|
8
|
-
"@dynamic-labs/rpc-providers": "4.79.
|
|
9
|
-
"@dynamic-labs/types": "4.79.
|
|
10
|
-
"@dynamic-labs/utils": "4.79.
|
|
11
|
-
"@dynamic-labs/wallet-book": "4.79.
|
|
12
|
-
"@dynamic-labs/wallet-connector-core": "4.79.
|
|
7
|
+
"@dynamic-labs/assert-package-version": "4.79.2",
|
|
8
|
+
"@dynamic-labs/rpc-providers": "4.79.2",
|
|
9
|
+
"@dynamic-labs/types": "4.79.2",
|
|
10
|
+
"@dynamic-labs/utils": "4.79.2",
|
|
11
|
+
"@dynamic-labs/wallet-book": "4.79.2",
|
|
12
|
+
"@dynamic-labs/wallet-connector-core": "4.79.2"
|
|
13
13
|
},
|
|
14
14
|
"devDependencies": {
|
|
15
15
|
"@walletconnect/types": "2.21.5"
|
package/src/utils/getWalletConnectorConstructorOptions/getWalletConnectorConstructorOptions.cjs
CHANGED
|
@@ -14,6 +14,7 @@ const getWalletConnectorConstructorOptions = ({ appLogoUrl, appName, authMode, c
|
|
|
14
14
|
const evmNetworkConfigs = (networkConfigurations === null || networkConfigurations === void 0 ? void 0 : networkConfigurations.evm) || [];
|
|
15
15
|
const solanaNetworkConfigs = (networkConfigurations === null || networkConfigurations === void 0 ? void 0 : networkConfigurations.solana) || [];
|
|
16
16
|
const cosmosNetworkConfigs = (networkConfigurations === null || networkConfigurations === void 0 ? void 0 : networkConfigurations.cosmos) || [];
|
|
17
|
+
const midnightNetworkConfigs = (networkConfigurations === null || networkConfigurations === void 0 ? void 0 : networkConfigurations.midnight) || [];
|
|
17
18
|
const starknetNetworkConfigs = (networkConfigurations === null || networkConfigurations === void 0 ? void 0 : networkConfigurations.starknet) || [];
|
|
18
19
|
const stellarNetworkConfigs = (networkConfigurations === null || networkConfigurations === void 0 ? void 0 : networkConfigurations.stellar) || [];
|
|
19
20
|
const suiNetworkConfigs = (networkConfigurations === null || networkConfigurations === void 0 ? void 0 : networkConfigurations.sui) || [];
|
|
@@ -38,6 +39,7 @@ const getWalletConnectorConstructorOptions = ({ appLogoUrl, appName, authMode, c
|
|
|
38
39
|
eclipseNetworks: eclipseNetworkConfigs,
|
|
39
40
|
evmNetworks: evmNetworkConfigs,
|
|
40
41
|
flowNetwork,
|
|
42
|
+
midnightNetworks: midnightNetworkConfigs,
|
|
41
43
|
mobileExperience,
|
|
42
44
|
projectId: walletConnectProjectId,
|
|
43
45
|
redirectUrl,
|
package/src/utils/getWalletConnectorConstructorOptions/getWalletConnectorConstructorOptions.d.ts
CHANGED
|
@@ -78,6 +78,7 @@ export declare const getWalletConnectorConstructorOptions: ({ appLogoUrl, appNam
|
|
|
78
78
|
eclipseNetworks: import("@dynamic-labs/types").GenericNetwork[];
|
|
79
79
|
evmNetworks: import("@dynamic-labs/types").GenericNetwork[];
|
|
80
80
|
flowNetwork: "mainnet" | "testnet" | undefined;
|
|
81
|
+
midnightNetworks: import("@dynamic-labs/types").GenericNetwork[];
|
|
81
82
|
mobileExperience: MobileExperience | undefined;
|
|
82
83
|
projectId: string | undefined;
|
|
83
84
|
redirectUrl: string | undefined;
|
package/src/utils/getWalletConnectorConstructorOptions/getWalletConnectorConstructorOptions.js
CHANGED
|
@@ -10,6 +10,7 @@ const getWalletConnectorConstructorOptions = ({ appLogoUrl, appName, authMode, c
|
|
|
10
10
|
const evmNetworkConfigs = (networkConfigurations === null || networkConfigurations === void 0 ? void 0 : networkConfigurations.evm) || [];
|
|
11
11
|
const solanaNetworkConfigs = (networkConfigurations === null || networkConfigurations === void 0 ? void 0 : networkConfigurations.solana) || [];
|
|
12
12
|
const cosmosNetworkConfigs = (networkConfigurations === null || networkConfigurations === void 0 ? void 0 : networkConfigurations.cosmos) || [];
|
|
13
|
+
const midnightNetworkConfigs = (networkConfigurations === null || networkConfigurations === void 0 ? void 0 : networkConfigurations.midnight) || [];
|
|
13
14
|
const starknetNetworkConfigs = (networkConfigurations === null || networkConfigurations === void 0 ? void 0 : networkConfigurations.starknet) || [];
|
|
14
15
|
const stellarNetworkConfigs = (networkConfigurations === null || networkConfigurations === void 0 ? void 0 : networkConfigurations.stellar) || [];
|
|
15
16
|
const suiNetworkConfigs = (networkConfigurations === null || networkConfigurations === void 0 ? void 0 : networkConfigurations.sui) || [];
|
|
@@ -34,6 +35,7 @@ const getWalletConnectorConstructorOptions = ({ appLogoUrl, appName, authMode, c
|
|
|
34
35
|
eclipseNetworks: eclipseNetworkConfigs,
|
|
35
36
|
evmNetworks: evmNetworkConfigs,
|
|
36
37
|
flowNetwork,
|
|
38
|
+
midnightNetworks: midnightNetworkConfigs,
|
|
37
39
|
mobileExperience,
|
|
38
40
|
projectId: walletConnectProjectId,
|
|
39
41
|
redirectUrl,
|