@exodus/ethereum-api 8.47.0 → 8.47.1
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,16 @@
|
|
|
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.47.1](https://github.com/ExodusMovement/assets/compare/@exodus/ethereum-api@8.47.0...@exodus/ethereum-api@8.47.1) (2025-09-08)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
* fix: enable proper handling of null responses for batch requests (#6414)
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
6
16
|
## [8.47.0](https://github.com/ExodusMovement/assets/compare/@exodus/ethereum-api@8.46.1...@exodus/ethereum-api@8.47.0) (2025-09-08)
|
|
7
17
|
|
|
8
18
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@exodus/ethereum-api",
|
|
3
|
-
"version": "8.47.
|
|
3
|
+
"version": "8.47.1",
|
|
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",
|
|
@@ -64,5 +64,5 @@
|
|
|
64
64
|
"type": "git",
|
|
65
65
|
"url": "git+https://github.com/ExodusMovement/assets.git"
|
|
66
66
|
},
|
|
67
|
-
"gitHead": "
|
|
67
|
+
"gitHead": "fbda86007124112138bfe661e1b25655e6107762"
|
|
68
68
|
}
|
|
@@ -34,7 +34,7 @@ export default class ApiCoinNodesServer extends EventEmitter {
|
|
|
34
34
|
if (isEmpty(batch)) return batch
|
|
35
35
|
const responses = await this.request(batch)
|
|
36
36
|
const isValid = responses.every((response) => {
|
|
37
|
-
return !isNaN(response?.id) && response?.result
|
|
37
|
+
return !isNaN(response?.id) && response?.result !== undefined
|
|
38
38
|
})
|
|
39
39
|
if (responses.length !== batch.length || !isValid) {
|
|
40
40
|
throw new Error('Bad rpc batch response')
|
|
@@ -181,7 +181,7 @@ export default class ClarityServer extends EventEmitter {
|
|
|
181
181
|
const responses = await this.sendRpcRequest(batch)
|
|
182
182
|
// FIXME: this falls apart if responses is not an array
|
|
183
183
|
const isValid = responses.every((response) => {
|
|
184
|
-
return !isNaN(response?.id) && response?.result
|
|
184
|
+
return !isNaN(response?.id) && response?.result !== undefined
|
|
185
185
|
})
|
|
186
186
|
if (responses.length !== batch.length || !isValid) {
|
|
187
187
|
throw new Error('Bad Response')
|