@exodus/ethereum-api 8.71.1 → 8.71.3

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
@@ -3,6 +3,26 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [8.71.3](https://github.com/ExodusMovement/assets/compare/@exodus/ethereum-api@8.71.2...@exodus/ethereum-api@8.71.3) (2026-04-24)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+
12
+ * fix(ethereum-api): fix infinite recursion in getNetVersion() (#7751)
13
+
14
+
15
+
16
+ ## [8.71.2](https://github.com/ExodusMovement/assets/compare/@exodus/ethereum-api@8.71.1...@exodus/ethereum-api@8.71.2) (2026-04-20)
17
+
18
+
19
+ ### Bug Fixes
20
+
21
+
22
+ * fix: update ethereumjs in ethereum-api (#7835)
23
+
24
+
25
+
6
26
  ## [8.71.1](https://github.com/ExodusMovement/assets/compare/@exodus/ethereum-api@8.71.0...@exodus/ethereum-api@8.71.1) (2026-04-17)
7
27
 
8
28
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@exodus/ethereum-api",
3
- "version": "8.71.1",
3
+ "version": "8.71.3",
4
4
  "description": "Transaction monitors, fee monitors, RPC with the blockchain node, and other networking code for Ethereum and EVM-based blockchains",
5
5
  "type": "module",
6
6
  "main": "src/index.js",
@@ -32,7 +32,7 @@
32
32
  "@exodus/ethereum-lib": "^5.22.0",
33
33
  "@exodus/ethereum-meta": "^2.9.1",
34
34
  "@exodus/ethereumholesky-meta": "^2.0.5",
35
- "@exodus/ethereumjs": "^1.8.0",
35
+ "@exodus/ethereumjs": "^1.11.0",
36
36
  "@exodus/fetch": "^1.3.0",
37
37
  "@exodus/models": "^13.0.0",
38
38
  "@exodus/safe-string": "^1.4.0",
@@ -68,5 +68,5 @@
68
68
  "type": "git",
69
69
  "url": "git+https://github.com/ExodusMovement/assets.git"
70
70
  },
71
- "gitHead": "75f578840c7f548c1ddcb21e074c0e080cf3e2b2"
71
+ "gitHead": "9f37c342087c5e2971af624b4067fd36b0d81ed5"
72
72
  }
@@ -128,11 +128,6 @@ export async function getTokenBalanceFromNode({ asset, address }) {
128
128
  return balances?.confirmed?.[contractAddress] || '0'
129
129
  }
130
130
 
131
- // Returns function for supplied asset
132
- export function sendRawTransaction(asset) {
133
- return getServer(asset).sendRawTransaction
134
- }
135
-
136
131
  export async function transactionExists({ asset, txId }) {
137
132
  const server = getServer(asset)
138
133
  txId = normalizeTxId(txId)
@@ -502,7 +502,7 @@ export default class ClarityServer extends EventEmitter {
502
502
 
503
503
  // Transport: Via sendRequest → WS first → HTTP fallback in ClarityServerV2
504
504
  async getNetVersion() {
505
- const request = this.getNetVersion()
505
+ const request = this.getNetVersionRequest()
506
506
  return this.sendRequest(request)
507
507
  }
508
508
 
package/src/index.js CHANGED
@@ -13,7 +13,6 @@ export {
13
13
  getBalanceProxied,
14
14
  getTokenBalance,
15
15
  getTokenBalanceFromNode,
16
- sendRawTransaction,
17
16
  transactionExists,
18
17
  getTransaction,
19
18
  getIsForwarderContract,