@pioneer-platform/binance-network 8.27.3 → 8.29.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/binance-network@8.27.3 build /Users/highlander/WebstormProjects/keepkey-stack/projects/pioneer/modules/coins/bnb/bnb-network
3
+ > @pioneer-platform/binance-network@8.29.0 build /Users/highlander/WebstormProjects/keepkey-stack/projects/pioneer/modules/coins/bnb/bnb-network
4
4
  > tsc -p .
5
5
 
package/CHANGELOG.md CHANGED
@@ -1,5 +1,40 @@
1
1
  # @pioneer-platform/binance-network
2
2
 
3
+ ## 8.29.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/pioneer-nodes@8.33.0
13
+
14
+ ## 8.28.1
15
+
16
+ ### Patch Changes
17
+
18
+ - Updated dependencies
19
+ - @pioneer-platform/pioneer-nodes@8.32.0
20
+
21
+ ## 8.28.0
22
+
23
+ ### Minor Changes
24
+
25
+ - feat(monorepo): production release preparation with strict TypeScript and enhanced swap functionality
26
+
27
+ ### Patch Changes
28
+
29
+ - Updated dependencies
30
+ - @pioneer-platform/pioneer-nodes@8.31.0
31
+
32
+ ## 8.27.4
33
+
34
+ ### Patch Changes
35
+
36
+ - @pioneer-platform/pioneer-nodes@8.30.4
37
+
3
38
  ## 8.27.3
4
39
 
5
40
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pioneer-platform/binance-network",
3
- "version": "8.27.3",
3
+ "version": "8.29.0",
4
4
  "dependencies": {
5
5
  "@crypto-hex-decoder/bnb": "^2.1.0",
6
6
  "axios": "^1.6.0",
@@ -9,8 +9,8 @@
9
9
  "moment": "^2.29.1",
10
10
  "typescript": "^5.0.4",
11
11
  "wait-promise": "^0.4.1",
12
- "@pioneer-platform/nodes": "8.30.3",
13
- "@pioneer-platform/loggerdog": "8.11.0"
12
+ "@pioneer-platform/loggerdog": "8.11.0",
13
+ "@pioneer-platform/pioneer-nodes": "8.33.0"
14
14
  },
15
15
  "description": "Cosmos events to redis pub/sub",
16
16
  "main": "./lib/index.js",
@@ -21,6 +21,10 @@
21
21
  "author": "Bithighlander <pioneer@gmail.com>",
22
22
  "license": "ISC",
23
23
  "gitHead": "aeae28273014ab69b42f22abec159c6693a56c40",
24
+ "devDependencies": {
25
+ "@types/node": "^18.16.0",
26
+ "typescript": "^5.0.4"
27
+ },
24
28
  "scripts": {
25
29
  "create": "pnpm run build && pnpm run test",
26
30
  "build": "tsc -p .",
package/tsconfig.json CHANGED
@@ -2,12 +2,19 @@
2
2
  "compilerOptions": {
3
3
  "target": "es5",
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
  }