@pioneer-platform/eth-network 8.33.2 → 8.35.0
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/.turbo/turbo-build.log +2 -2
- package/CHANGELOG.md +46 -0
- package/lib/index.js +3 -3
- package/package.json +5 -5
- package/tsconfig.json +1 -2
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
2
|
|
|
3
|
-
> @pioneer-platform/eth-network@8.
|
|
4
|
-
> tsc -p .
|
|
3
|
+
> @pioneer-platform/eth-network@8.35.0 build /Users/highlander/WebstormProjects/keepkey-stack/projects/pioneer/modules/coins/eth/eth-network
|
|
4
|
+
> tsc -p .
|
|
5
5
|
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,51 @@
|
|
|
1
1
|
# @pioneer-platform/eth-network
|
|
2
2
|
|
|
3
|
+
## 8.35.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- feat(monorepo): production release preparation with strict TypeScript and enhanced swap functionality
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies
|
|
12
|
+
- @pioneer-platform/blockbook@8.33.0
|
|
13
|
+
- @pioneer-platform/pioneer-caip@9.21.0
|
|
14
|
+
- @pioneer-platform/pioneer-nodes@8.31.0
|
|
15
|
+
|
|
16
|
+
## 8.34.0
|
|
17
|
+
|
|
18
|
+
### Minor Changes
|
|
19
|
+
|
|
20
|
+
- feat(pioneer-client): add client-side host override for staging/blue testing
|
|
21
|
+
|
|
22
|
+
### Patch Changes
|
|
23
|
+
|
|
24
|
+
- Updated dependencies
|
|
25
|
+
- @pioneer-platform/pioneer-caip@9.20.0
|
|
26
|
+
- @pioneer-platform/blockbook@8.32.6
|
|
27
|
+
- @pioneer-platform/pioneer-nodes@8.30.4
|
|
28
|
+
|
|
29
|
+
## 8.33.4
|
|
30
|
+
|
|
31
|
+
### Patch Changes
|
|
32
|
+
|
|
33
|
+
- chore: chore: - Services (discovery-service, watchtower)
|
|
34
|
+
- Updated dependencies
|
|
35
|
+
- @pioneer-platform/blockbook@8.32.5
|
|
36
|
+
- @pioneer-platform/pioneer-caip@9.19.3
|
|
37
|
+
- @pioneer-platform/nodes@8.30.3
|
|
38
|
+
|
|
39
|
+
## 8.33.3
|
|
40
|
+
|
|
41
|
+
### Patch Changes
|
|
42
|
+
|
|
43
|
+
- fa09397: chore: - Services (discovery-service, watchtower)
|
|
44
|
+
- Updated dependencies [fa09397]
|
|
45
|
+
- @pioneer-platform/blockbook@8.32.4
|
|
46
|
+
- @pioneer-platform/pioneer-caip@9.19.2
|
|
47
|
+
- @pioneer-platform/nodes@8.30.2
|
|
48
|
+
|
|
3
49
|
## 8.33.2
|
|
4
50
|
|
|
5
51
|
### Patch Changes
|
package/lib/index.js
CHANGED
|
@@ -59,7 +59,7 @@ let blockbook = require("@pioneer-platform/blockbook");
|
|
|
59
59
|
const providers_1 = require("@ethersproject/providers");
|
|
60
60
|
const utils_1 = require("./utils");
|
|
61
61
|
const xchain_util_1 = require("@xchainjs/xchain-util");
|
|
62
|
-
const
|
|
62
|
+
const pioneer_nodes_1 = require("@pioneer-platform/pioneer-nodes");
|
|
63
63
|
const NodeHealth = __importStar(require("./node-health"));
|
|
64
64
|
const log = require('@pioneer-platform/loggerdog')();
|
|
65
65
|
let wait = require('wait-promise');
|
|
@@ -328,8 +328,8 @@ const init = async function (settings, redis) {
|
|
|
328
328
|
}
|
|
329
329
|
// Initialize node health tracking (with optional Redis)
|
|
330
330
|
await NodeHealth.initNodeHealth(redis);
|
|
331
|
-
// Load web3 nodes from @pioneer-platform/nodes
|
|
332
|
-
let web3nodes = (0,
|
|
331
|
+
// Load web3 nodes from @pioneer-platform/pioneer-nodes
|
|
332
|
+
let web3nodes = (0, pioneer_nodes_1.getWeb3Nodes)();
|
|
333
333
|
for (let i = 0; i < web3nodes.length; i++) {
|
|
334
334
|
let node = web3nodes[i];
|
|
335
335
|
if (!node.networkId)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pioneer-platform/eth-network",
|
|
3
|
-
"version": "8.
|
|
3
|
+
"version": "8.35.0",
|
|
4
4
|
"main": "./lib/index.js",
|
|
5
5
|
"types": "./lib/index.d.ts",
|
|
6
6
|
"dependencies": {
|
|
@@ -17,10 +17,10 @@
|
|
|
17
17
|
"ethers": "5.7.2",
|
|
18
18
|
"request-promise": "^4.2.6",
|
|
19
19
|
"wait-promise": "^0.4.1",
|
|
20
|
+
"@pioneer-platform/blockbook": "8.33.0",
|
|
20
21
|
"@pioneer-platform/loggerdog": "8.11.0",
|
|
21
|
-
"@pioneer-platform/pioneer-
|
|
22
|
-
"@pioneer-platform/
|
|
23
|
-
"@pioneer-platform/blockbook": "8.32.3"
|
|
22
|
+
"@pioneer-platform/pioneer-nodes": "8.31.0",
|
|
23
|
+
"@pioneer-platform/pioneer-caip": "9.21.0"
|
|
24
24
|
},
|
|
25
25
|
"devDependencies": {
|
|
26
26
|
"@types/node": "^18.16.0",
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
"test": "pnpm run build && node __tests__/test-module.js",
|
|
41
41
|
"test-dev": "pnpm run build && node lib/index.js",
|
|
42
42
|
"start": "pnpm run build:live",
|
|
43
|
-
"build": "tsc -p .
|
|
43
|
+
"build": "tsc -p .",
|
|
44
44
|
"prepublish": "pnpm run build",
|
|
45
45
|
"build:watch": "pnpm run build && onchange 'src/**/*.ts' -- pnpm run build"
|
|
46
46
|
}
|
package/tsconfig.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"compilerOptions": {
|
|
3
3
|
"target": "es2020",
|
|
4
4
|
"module": "commonjs",
|
|
5
|
-
"lib": ["es2020", "dom"],
|
|
5
|
+
"lib": ["es2020", "dom", "DOM"],
|
|
6
6
|
"declaration": true,
|
|
7
7
|
"outDir": "./lib",
|
|
8
8
|
"rootDir": "./src",
|
|
@@ -16,7 +16,6 @@
|
|
|
16
16
|
"alwaysStrict": false,
|
|
17
17
|
"esModuleInterop": true,
|
|
18
18
|
"resolveJsonModule": true,
|
|
19
|
-
"skipLibCheck": true,
|
|
20
19
|
"forceConsistentCasingInFileNames": true,
|
|
21
20
|
"types": ["node"]
|
|
22
21
|
},
|