@pioneer-platform/pioneer 8.1.40 → 8.2.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/lib/index.d.ts +42 -1
- package/lib/index.js +1147 -2853
- package/lib/seeds.d.ts +0 -0
- package/lib/seeds.js +1 -0
- package/package.json +13 -36
- package/LICENSE +0 -674
- package/lib/support.d.ts +0 -6
- package/lib/support.js +0 -83
package/lib/seeds.d.ts
ADDED
|
File without changes
|
package/lib/seeds.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";
|
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pioneer-platform/pioneer",
|
|
3
|
-
"version": "8.
|
|
3
|
+
"version": "8.2.0",
|
|
4
4
|
"main": "./lib/index.js",
|
|
5
5
|
"types": "./lib/index.d.ts",
|
|
6
6
|
"scripts": {
|
|
7
7
|
"npm": "npm i",
|
|
8
8
|
"npm-update": "npm update",
|
|
9
9
|
"test": "npm run build && node __tests__/test-module.js",
|
|
10
|
-
"test-
|
|
10
|
+
"test-cli-export": "npm run build && node __tests__/reference-test-cli-export.js",
|
|
11
11
|
"lint": "prettier --write '**/**/*.ts'",
|
|
12
12
|
"start": "nodemon --watch 'src/**/*.ts' --exec ts-node __tests__node",
|
|
13
13
|
"build": "tsc -p .",
|
|
@@ -15,51 +15,28 @@
|
|
|
15
15
|
"refresh": "rm -rf ./node_modules ./package-lock.json && npm install",
|
|
16
16
|
"test-jest": "jest --coverage",
|
|
17
17
|
"test:watch": "jest --coverage --watchAll",
|
|
18
|
-
"build:watch": "
|
|
18
|
+
"build:watch": "onchange 'src/**/*.ts' -- npm run build",
|
|
19
19
|
"view:coverage": "serve coverage/lcov-report",
|
|
20
20
|
"clean": "rm -rf coverage src/**/*.js src/**/*.map lib node_modules"
|
|
21
21
|
},
|
|
22
22
|
"dependencies": {
|
|
23
|
-
"@
|
|
24
|
-
"@
|
|
25
|
-
"@
|
|
26
|
-
"@pioneer-platform/
|
|
27
|
-
"@pioneer-platform/
|
|
28
|
-
"
|
|
29
|
-
"@pioneer-platform/pioneer-client": "^8.1.23",
|
|
30
|
-
"@pioneer-platform/pioneer-coins": "^8.1.38",
|
|
31
|
-
"@pioneer-platform/pioneer-types": "^8.1.47",
|
|
32
|
-
"@types/google-protobuf": "^3.15.1",
|
|
33
|
-
"bchaddrjs": "^0.5.2",
|
|
34
|
-
"bech32": "^1.1.4",
|
|
35
|
-
"bitcoinjs-lib": "^5.2.0",
|
|
36
|
-
"cli-table": "^0.3.6",
|
|
37
|
-
"coinselect": "^3.1.12",
|
|
38
|
-
"crypto-js": "^4.0.0",
|
|
39
|
-
"eosjs": "^21.0.4",
|
|
40
|
-
"ethereumjs-util": "^7.0.10",
|
|
41
|
-
"fiosdk-offline": "^1.2.21",
|
|
42
|
-
"google-protobuf": "^3.15.8",
|
|
43
|
-
"keccak256": "^1.0.2",
|
|
44
|
-
"node-fetch": "^2.6.1",
|
|
45
|
-
"open": "^7.3.1",
|
|
46
|
-
"openapi-client-axios": "^3.7.8",
|
|
47
|
-
"prettyjson": "^1.2.1",
|
|
48
|
-
"secretjs-offline": "^0.11.2",
|
|
49
|
-
"socket.io-client": "^2.4.0",
|
|
50
|
-
"web3-utils": "^1.3.5"
|
|
23
|
+
"@pioneer-platform/blockbook": "^8.1.58",
|
|
24
|
+
"@pioneer-platform/blocknative-client": "^8.1.26",
|
|
25
|
+
"@pioneer-platform/loggerdog": "^8.1.30",
|
|
26
|
+
"@pioneer-platform/redis-queue": "^8.1.23",
|
|
27
|
+
"@pioneer-platform/zapper-client": "^8.1.24",
|
|
28
|
+
"dotenv": "^8.2.0"
|
|
51
29
|
},
|
|
52
30
|
"devDependencies": {
|
|
53
|
-
"@pioneer-platform/pioneer-hardware": "^8.1.37",
|
|
54
31
|
"@types/jest": "^25.2.3",
|
|
55
|
-
"@types/node": "^13.13.
|
|
32
|
+
"@types/node": "^13.13.39",
|
|
56
33
|
"@types/source-map-support": "^0.5.3",
|
|
57
34
|
"jest": "^26.6.3",
|
|
58
35
|
"onchange": "^7.1.0",
|
|
59
36
|
"serve": "^11.3.2",
|
|
60
37
|
"source-map-support": "^0.5.19",
|
|
61
|
-
"ts-jest": "^
|
|
62
|
-
"typescript": "^
|
|
38
|
+
"ts-jest": "^29.0.5",
|
|
39
|
+
"typescript": "^5.0.2"
|
|
63
40
|
},
|
|
64
|
-
"gitHead": "
|
|
41
|
+
"gitHead": "6b6e8cf1e369479b9e7e977d0e4990cefe607a89"
|
|
65
42
|
}
|