@exodus/ethereum-api 6.0.0 → 6.0.2
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@exodus/ethereum-api",
|
|
3
|
-
"version": "6.0.
|
|
3
|
+
"version": "6.0.2",
|
|
4
4
|
"description": "Ethereum Api",
|
|
5
5
|
"main": "src/index.js",
|
|
6
6
|
"files": [
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
"dependencies": {
|
|
17
17
|
"@exodus/asset-lib": "^3.7.1",
|
|
18
18
|
"@exodus/crypto": "^1.0.0-rc.0",
|
|
19
|
-
"@exodus/ethereum-lib": "^3.0.
|
|
19
|
+
"@exodus/ethereum-lib": "^3.0.1",
|
|
20
20
|
"@exodus/ethereumjs-util": "^7.1.0-exodus.6",
|
|
21
21
|
"@exodus/fetch": "^1.2.1",
|
|
22
22
|
"@exodus/simple-retry": "^0.0.6",
|
|
@@ -36,5 +36,5 @@
|
|
|
36
36
|
"devDependencies": {
|
|
37
37
|
"@exodus/models": "^8.10.4"
|
|
38
38
|
},
|
|
39
|
-
"gitHead": "
|
|
39
|
+
"gitHead": "906980b1006ee7a1282ab78b02c2c9510b0e86f4"
|
|
40
40
|
}
|
|
@@ -107,7 +107,8 @@ export default class ClarityServer extends EventEmitter {
|
|
|
107
107
|
const timeout = setTimeout(() => reject(new Error('Transactions Timeout')), 300000)
|
|
108
108
|
socket.emit('getTransactions', cursor, (nextCursor) => {
|
|
109
109
|
clearTimeout(timeout)
|
|
110
|
-
|
|
110
|
+
const uintArray = new Uint8Array(nextCursor)
|
|
111
|
+
resolve(Buffer.from(uintArray))
|
|
111
112
|
})
|
|
112
113
|
})
|
|
113
114
|
.catch((error) => console.error(error))
|