@pioneer-platform/eth-network 8.33.4 → 8.37.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.
@@ -1,5 +1,5 @@
1
1
 
2
2
  
3
- > @pioneer-platform/eth-network@8.33.4 build /Users/highlander/WebstormProjects/keepkey-stack/projects/pioneer/modules/coins/eth/eth-network
4
- > tsc -p . --skipLibCheck
3
+ > @pioneer-platform/eth-network@8.37.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,57 @@
1
1
  # @pioneer-platform/eth-network
2
2
 
3
+ ## 8.37.0
4
+
5
+ ### Minor Changes
6
+
7
+ - chore: feat(e2e): add --blue and --production flags to pioneer-sdk test
8
+
9
+ ### Patch Changes
10
+
11
+ - Updated dependencies
12
+ - @pioneer-platform/blockbook@8.34.0
13
+ - @pioneer-platform/pioneer-caip@9.23.0
14
+ - @pioneer-platform/pioneer-nodes@8.33.0
15
+
16
+ ## 8.36.0
17
+
18
+ ### Minor Changes
19
+
20
+ - feat(e2e): add --blue and --production flags to pioneer-sdk test
21
+
22
+ ### Patch Changes
23
+
24
+ - Updated dependencies
25
+ - @pioneer-platform/pioneer-caip@9.22.0
26
+ - @pioneer-platform/pioneer-nodes@8.32.0
27
+ - @pioneer-platform/blockbook@8.33.1
28
+
29
+ ## 8.35.0
30
+
31
+ ### Minor Changes
32
+
33
+ - feat(monorepo): production release preparation with strict TypeScript and enhanced swap functionality
34
+
35
+ ### Patch Changes
36
+
37
+ - Updated dependencies
38
+ - @pioneer-platform/blockbook@8.33.0
39
+ - @pioneer-platform/pioneer-caip@9.21.0
40
+ - @pioneer-platform/pioneer-nodes@8.31.0
41
+
42
+ ## 8.34.0
43
+
44
+ ### Minor Changes
45
+
46
+ - feat(pioneer-client): add client-side host override for staging/blue testing
47
+
48
+ ### Patch Changes
49
+
50
+ - Updated dependencies
51
+ - @pioneer-platform/pioneer-caip@9.20.0
52
+ - @pioneer-platform/blockbook@8.32.6
53
+ - @pioneer-platform/pioneer-nodes@8.30.4
54
+
3
55
  ## 8.33.4
4
56
 
5
57
  ### 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 nodes_1 = require("@pioneer-platform/nodes");
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, nodes_1.getWeb3Nodes)();
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.33.4",
3
+ "version": "8.37.0",
4
4
  "main": "./lib/index.js",
5
5
  "types": "./lib/index.d.ts",
6
6
  "dependencies": {
@@ -18,9 +18,9 @@
18
18
  "request-promise": "^4.2.6",
19
19
  "wait-promise": "^0.4.1",
20
20
  "@pioneer-platform/loggerdog": "8.11.0",
21
- "@pioneer-platform/nodes": "8.30.3",
22
- "@pioneer-platform/pioneer-caip": "9.19.3",
23
- "@pioneer-platform/blockbook": "8.32.5"
21
+ "@pioneer-platform/pioneer-nodes": "8.33.0",
22
+ "@pioneer-platform/pioneer-caip": "9.23.0",
23
+ "@pioneer-platform/blockbook": "8.34.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 . --skipLibCheck",
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,11 @@
2
2
  "compilerOptions": {
3
3
  "target": "es2020",
4
4
  "module": "commonjs",
5
- "lib": ["es2020", "dom"],
5
+ "lib": [
6
+ "es2020",
7
+ "dom",
8
+ "DOM"
9
+ ],
6
10
  "declaration": true,
7
11
  "outDir": "./lib",
8
12
  "rootDir": "./src",
@@ -16,10 +20,17 @@
16
20
  "alwaysStrict": false,
17
21
  "esModuleInterop": true,
18
22
  "resolveJsonModule": true,
19
- "skipLibCheck": true,
20
23
  "forceConsistentCasingInFileNames": true,
21
- "types": ["node"]
24
+ "types": [
25
+ "node"
26
+ ],
27
+ "skipLibCheck": true
22
28
  },
23
- "include": ["src"],
24
- "exclude": ["node_modules", "**/__tests__/*"]
29
+ "include": [
30
+ "src"
31
+ ],
32
+ "exclude": [
33
+ "node_modules",
34
+ "**/__tests__/*"
35
+ ]
25
36
  }