@dynamic-labs/ethereum-core 4.19.4 → 4.19.6

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.19.6](https://github.com/dynamic-labs/dynamic-auth/compare/v4.19.5...v4.19.6) (2025-06-04)
3
+
4
+
5
+ ### Features
6
+
7
+ * backup unsuccessful popup when create wallet fails ([#8872](https://github.com/dynamic-labs/dynamic-auth/issues/8872)) ([c8f88f2](https://github.com/dynamic-labs/dynamic-auth/commit/c8f88f2cafdb7856764305764a230e159f09dadf))
8
+ * **global-wallet:** new native api method to return the eoa wallet for a connected smart wallet ([#8864](https://github.com/dynamic-labs/dynamic-auth/issues/8864)) ([5d0e200](https://github.com/dynamic-labs/dynamic-auth/commit/5d0e2002caefb658f6120b102abe145d6caafaf4))
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * dont call select endpoint when signing in with 7702 wallet ([#8854](https://github.com/dynamic-labs/dynamic-auth/issues/8854)) ([9828a8f](https://github.com/dynamic-labs/dynamic-auth/commit/9828a8fb758b07dd4dc51cb9eadee483b884defe))
14
+
15
+ ### [4.19.5](https://github.com/dynamic-labs/dynamic-auth/compare/v4.19.4...v4.19.5) (2025-06-02)
16
+
17
+
18
+ ### Features
19
+
20
+ * add cleanup for waas connectors ([#8849](https://github.com/dynamic-labs/dynamic-auth/issues/8849)) ([5899169](https://github.com/dynamic-labs/dynamic-auth/commit/5899169abaf7ce86add2b1393cfd9b967da5e388))
21
+
2
22
  ### [4.19.4](https://github.com/dynamic-labs/dynamic-auth/compare/v4.19.3...v4.19.4) (2025-05-31)
3
23
 
4
24
  ### [4.19.3](https://github.com/dynamic-labs/dynamic-auth/compare/v4.19.2...v4.19.3) (2025-05-28)
package/package.cjs CHANGED
@@ -3,6 +3,6 @@
3
3
 
4
4
  Object.defineProperty(exports, '__esModule', { value: true });
5
5
 
6
- var version = "4.19.4";
6
+ var version = "4.19.6";
7
7
 
8
8
  exports.version = version;
package/package.js CHANGED
@@ -1,4 +1,4 @@
1
1
  'use client'
2
- var version = "4.19.4";
2
+ var version = "4.19.6";
3
3
 
4
4
  export { version };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dynamic-labs/ethereum-core",
3
- "version": "4.19.4",
3
+ "version": "4.19.6",
4
4
  "description": "Core package for utilities and types for viem",
5
5
  "author": "Dynamic Labs, Inc.",
6
6
  "license": "MIT",
@@ -18,16 +18,16 @@
18
18
  },
19
19
  "homepage": "https://www.dynamic.xyz/",
20
20
  "dependencies": {
21
- "@dynamic-labs/sdk-api-core": "0.0.672",
22
- "@dynamic-labs/assert-package-version": "4.19.4",
23
- "@dynamic-labs/logger": "4.19.4",
24
- "@dynamic-labs/rpc-providers": "4.19.4",
25
- "@dynamic-labs/types": "4.19.4",
26
- "@dynamic-labs/utils": "4.19.4",
27
- "@dynamic-labs/wallet-book": "4.19.4",
28
- "@dynamic-labs/wallet-connector-core": "4.19.4"
21
+ "@dynamic-labs/sdk-api-core": "0.0.681",
22
+ "@dynamic-labs/assert-package-version": "4.19.6",
23
+ "@dynamic-labs/logger": "4.19.6",
24
+ "@dynamic-labs/rpc-providers": "4.19.6",
25
+ "@dynamic-labs/types": "4.19.6",
26
+ "@dynamic-labs/utils": "4.19.6",
27
+ "@dynamic-labs/wallet-book": "4.19.6",
28
+ "@dynamic-labs/wallet-connector-core": "4.19.6"
29
29
  },
30
30
  "peerDependencies": {
31
- "viem": "^2.21.60"
31
+ "viem": "^2.28.4"
32
32
  }
33
33
  }
@@ -89,8 +89,20 @@ class EthereumWalletConnector extends walletConnectorCore.WalletConnectorBase {
89
89
  }
90
90
  isTestnet() {
91
91
  return _tslib.__awaiter(this, void 0, void 0, function* () {
92
- var _a, _b, _c;
93
- return (_c = (_b = (_a = (yield this.getPublicClient())) === null || _a === void 0 ? void 0 : _a.chain) === null || _b === void 0 ? void 0 : _b.testnet) !== null && _c !== void 0 ? _c : false;
92
+ var _a, _b;
93
+ const chain = (_a = (yield this.getPublicClient())) === null || _a === void 0 ? void 0 : _a.chain;
94
+ const evmNetwork = this.evmNetworks.find((n) => n.chainId === (chain === null || chain === void 0 ? void 0 : chain.id));
95
+ walletConnectorCore.logger.logVerboseTroubleshootingMessage('[EthereumWalletConnector] isTestnet', {
96
+ evmNetwork,
97
+ viemChain: chain,
98
+ });
99
+ // this is a workaround to an issue with Hyperliquid Mainnet, where its chainId
100
+ // conflicts with another chain in viem, so viem thinks it's a testnet, but it's not
101
+ // we should use the value coming from our api and only fallback to viem if it's not set
102
+ if ((evmNetwork === null || evmNetwork === void 0 ? void 0 : evmNetwork.isTestnet) !== undefined) {
103
+ return evmNetwork.isTestnet;
104
+ }
105
+ return (_b = chain === null || chain === void 0 ? void 0 : chain.testnet) !== null && _b !== void 0 ? _b : false;
94
106
  });
95
107
  }
96
108
  parseAddress(address) {
@@ -85,8 +85,20 @@ class EthereumWalletConnector extends WalletConnectorBase {
85
85
  }
86
86
  isTestnet() {
87
87
  return __awaiter(this, void 0, void 0, function* () {
88
- var _a, _b, _c;
89
- return (_c = (_b = (_a = (yield this.getPublicClient())) === null || _a === void 0 ? void 0 : _a.chain) === null || _b === void 0 ? void 0 : _b.testnet) !== null && _c !== void 0 ? _c : false;
88
+ var _a, _b;
89
+ const chain = (_a = (yield this.getPublicClient())) === null || _a === void 0 ? void 0 : _a.chain;
90
+ const evmNetwork = this.evmNetworks.find((n) => n.chainId === (chain === null || chain === void 0 ? void 0 : chain.id));
91
+ logger.logVerboseTroubleshootingMessage('[EthereumWalletConnector] isTestnet', {
92
+ evmNetwork,
93
+ viemChain: chain,
94
+ });
95
+ // this is a workaround to an issue with Hyperliquid Mainnet, where its chainId
96
+ // conflicts with another chain in viem, so viem thinks it's a testnet, but it's not
97
+ // we should use the value coming from our api and only fallback to viem if it's not set
98
+ if ((evmNetwork === null || evmNetwork === void 0 ? void 0 : evmNetwork.isTestnet) !== undefined) {
99
+ return evmNetwork.isTestnet;
100
+ }
101
+ return (_b = chain === null || chain === void 0 ? void 0 : chain.testnet) !== null && _b !== void 0 ? _b : false;
90
102
  });
91
103
  }
92
104
  parseAddress(address) {