@pioneer-platform/eth-network 8.35.0 → 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.35.0 build /Users/highlander/WebstormProjects/keepkey-stack/projects/pioneer/modules/coins/eth/eth-network
3
+ > @pioneer-platform/eth-network@8.37.0 build /Users/highlander/WebstormProjects/keepkey-stack/projects/pioneer/modules/coins/eth/eth-network
4
4
  > tsc -p .
5
5
 
package/CHANGELOG.md CHANGED
@@ -1,5 +1,31 @@
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
+
3
29
  ## 8.35.0
4
30
 
5
31
  ### Minor Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pioneer-platform/eth-network",
3
- "version": "8.35.0",
3
+ "version": "8.37.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",
21
20
  "@pioneer-platform/loggerdog": "8.11.0",
22
- "@pioneer-platform/pioneer-nodes": "8.31.0",
23
- "@pioneer-platform/pioneer-caip": "9.21.0"
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",
package/tsconfig.json CHANGED
@@ -2,7 +2,11 @@
2
2
  "compilerOptions": {
3
3
  "target": "es2020",
4
4
  "module": "commonjs",
5
- "lib": ["es2020", "dom", "DOM"],
5
+ "lib": [
6
+ "es2020",
7
+ "dom",
8
+ "DOM"
9
+ ],
6
10
  "declaration": true,
7
11
  "outDir": "./lib",
8
12
  "rootDir": "./src",
@@ -17,8 +21,16 @@
17
21
  "esModuleInterop": true,
18
22
  "resolveJsonModule": true,
19
23
  "forceConsistentCasingInFileNames": true,
20
- "types": ["node"]
24
+ "types": [
25
+ "node"
26
+ ],
27
+ "skipLibCheck": true
21
28
  },
22
- "include": ["src"],
23
- "exclude": ["node_modules", "**/__tests__/*"]
29
+ "include": [
30
+ "src"
31
+ ],
32
+ "exclude": [
33
+ "node_modules",
34
+ "**/__tests__/*"
35
+ ]
24
36
  }