@pioneer-platform/evm-network 0.24.4 → 0.27.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/evm-network@0.24.4 build /Users/highlander/WebstormProjects/keepkey-stack/projects/pioneer/modules/coins/evm/evm-network
3
+ > @pioneer-platform/evm-network@0.27.0 build /Users/highlander/WebstormProjects/keepkey-stack/projects/pioneer/modules/coins/evm/evm-network
4
4
  > tsc -p .
5
5
 
package/CHANGELOG.md CHANGED
@@ -1,5 +1,43 @@
1
1
  # @pioneer-platform/evm-network
2
2
 
3
+ ## 0.27.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
+
14
+ ## 0.26.0
15
+
16
+ ### Minor Changes
17
+
18
+ - feat(e2e): add --blue and --production flags to pioneer-sdk test
19
+
20
+ ### Patch Changes
21
+
22
+ - @pioneer-platform/blockbook@8.33.1
23
+
24
+ ## 0.25.0
25
+
26
+ ### Minor Changes
27
+
28
+ - feat(monorepo): production release preparation with strict TypeScript and enhanced swap functionality
29
+
30
+ ### Patch Changes
31
+
32
+ - Updated dependencies
33
+ - @pioneer-platform/blockbook@8.33.0
34
+
35
+ ## 0.24.5
36
+
37
+ ### Patch Changes
38
+
39
+ - @pioneer-platform/blockbook@8.32.6
40
+
3
41
  ## 0.24.4
4
42
 
5
43
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pioneer-platform/evm-network",
3
- "version": "0.24.4",
3
+ "version": "0.27.0",
4
4
  "main": "./lib/index.js",
5
5
  "types": "./lib/index.d.ts",
6
6
  "dependencies": {
@@ -12,7 +12,7 @@
12
12
  "request-promise": "^4.2.6",
13
13
  "ts-node": "^10.9.2",
14
14
  "typescript": "^5.0.4",
15
- "@pioneer-platform/blockbook": "8.32.5",
15
+ "@pioneer-platform/blockbook": "8.34.0",
16
16
  "@pioneer-platform/loggerdog": "8.11.0"
17
17
  },
18
18
  "description": "",
package/tsconfig.json CHANGED
@@ -2,12 +2,19 @@
2
2
  "compilerOptions": {
3
3
  "target": "ES2015",
4
4
  "module": "commonjs",
5
- "lib": ["es6", "es2015", "dom"],
5
+ "lib": [
6
+ "es6",
7
+ "es2015",
8
+ "dom"
9
+ ],
6
10
  "declaration": true,
7
11
  "outDir": "lib",
8
12
  "rootDir": "src",
9
13
  "strict": true,
10
- "types": ["node"],
11
- "esModuleInterop": true
14
+ "types": [
15
+ "node"
16
+ ],
17
+ "esModuleInterop": true,
18
+ "skipLibCheck": true
12
19
  }
13
20
  }