@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 +20 -0
- package/package.json +3 -3
- package/src/eth-like-util.js +0 -5
- package/src/exodus-eth-server/clarity.js +1 -1
- package/src/index.js +0 -1
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.
|
|
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.
|
|
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": "
|
|
71
|
+
"gitHead": "9f37c342087c5e2971af624b4067fd36b0d81ed5"
|
|
72
72
|
}
|
package/src/eth-like-util.js
CHANGED
|
@@ -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.
|
|
505
|
+
const request = this.getNetVersionRequest()
|
|
506
506
|
return this.sendRequest(request)
|
|
507
507
|
}
|
|
508
508
|
|