@dynamic-labs/ethereum-core 4.25.8 → 4.25.10

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,25 @@
1
1
 
2
+ ### [4.25.10](https://github.com/dynamic-labs/dynamic-auth/compare/v4.25.9...v4.25.10) (2025-08-07)
3
+
4
+
5
+ ### Features
6
+
7
+ * trigger event for social account changes ([#9291](https://github.com/dynamic-labs/dynamic-auth/issues/9291)) ([6766754](https://github.com/dynamic-labs/dynamic-auth/commit/6766754dd6858628003781fab6cca42c1898dd2d))
8
+
9
+
10
+ ### Bug Fixes
11
+
12
+ * allow using the custom transport config in EthereumWallet walletClient creation ([#9310](https://github.com/dynamic-labs/dynamic-auth/issues/9310)) ([e1db68a](https://github.com/dynamic-labs/dynamic-auth/commit/e1db68a16d51d4db3317b707f27ff35b64056829))
13
+ * incorrect modal showing up when linking MetaMask SOL in headless mode ([#9317](https://github.com/dynamic-labs/dynamic-auth/issues/9317)) ([c7f9644](https://github.com/dynamic-labs/dynamic-auth/commit/c7f9644abe51d537100997db47d8a6d1b78cf8e7))
14
+ * prevent logged-in users from trying to signing in again with social ([#9315](https://github.com/dynamic-labs/dynamic-auth/issues/9315)) ([365c65c](https://github.com/dynamic-labs/dynamic-auth/commit/365c65c0c7bb22c47e77ca58727a473b60887e24))
15
+
16
+ ### [4.25.9](https://github.com/dynamic-labs/dynamic-auth/compare/v4.25.8...v4.25.9) (2025-08-01)
17
+
18
+
19
+ ### Bug Fixes
20
+
21
+ * use zerodev rpc for zerodev calls ([#9280](https://github.com/dynamic-labs/dynamic-auth/issues/9280)) ([87d52f3](https://github.com/dynamic-labs/dynamic-auth/commit/87d52f30de968919d675b0fada15a372b1533b76))
22
+
2
23
  ### [4.25.8](https://github.com/dynamic-labs/dynamic-auth/compare/v4.25.7...v4.25.8) (2025-07-31)
3
24
 
4
25
 
package/package.cjs CHANGED
@@ -3,6 +3,6 @@
3
3
 
4
4
  Object.defineProperty(exports, '__esModule', { value: true });
5
5
 
6
- var version = "4.25.8";
6
+ var version = "4.25.10";
7
7
 
8
8
  exports.version = version;
package/package.js CHANGED
@@ -1,4 +1,4 @@
1
1
  'use client'
2
- var version = "4.25.8";
2
+ var version = "4.25.10";
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.25.8",
3
+ "version": "4.25.10",
4
4
  "description": "Core package for utilities and types for viem",
5
5
  "author": "Dynamic Labs, Inc.",
6
6
  "license": "MIT",
@@ -18,14 +18,14 @@
18
18
  },
19
19
  "homepage": "https://www.dynamic.xyz/",
20
20
  "dependencies": {
21
- "@dynamic-labs/sdk-api-core": "0.0.728",
22
- "@dynamic-labs/assert-package-version": "4.25.8",
23
- "@dynamic-labs/logger": "4.25.8",
24
- "@dynamic-labs/rpc-providers": "4.25.8",
25
- "@dynamic-labs/types": "4.25.8",
26
- "@dynamic-labs/utils": "4.25.8",
27
- "@dynamic-labs/wallet-book": "4.25.8",
28
- "@dynamic-labs/wallet-connector-core": "4.25.8"
21
+ "@dynamic-labs/sdk-api-core": "0.0.741",
22
+ "@dynamic-labs/assert-package-version": "4.25.10",
23
+ "@dynamic-labs/logger": "4.25.10",
24
+ "@dynamic-labs/rpc-providers": "4.25.10",
25
+ "@dynamic-labs/types": "4.25.10",
26
+ "@dynamic-labs/utils": "4.25.10",
27
+ "@dynamic-labs/wallet-book": "4.25.10",
28
+ "@dynamic-labs/wallet-connector-core": "4.25.10"
29
29
  },
30
30
  "peerDependencies": {
31
31
  "viem": "^2.28.4"
@@ -102,7 +102,7 @@ class EthereumWallet extends walletConnectorCore.Wallet {
102
102
  yield this.sync();
103
103
  return provider.request(args);
104
104
  }),
105
- transport: viem.custom(walletClient.transport),
105
+ transport: viem.custom(walletClient.transport, this.getTransportConfig()),
106
106
  }),
107
107
  });
108
108
  });
@@ -98,7 +98,7 @@ class EthereumWallet extends Wallet {
98
98
  yield this.sync();
99
99
  return provider.request(args);
100
100
  }),
101
- transport: custom(walletClient.transport),
101
+ transport: custom(walletClient.transport, this.getTransportConfig()),
102
102
  }),
103
103
  });
104
104
  });