@pioneer-platform/nodes 8.11.10 → 8.11.12
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/.turbo/turbo-build.log +2 -1
- package/CHANGELOG.md +16 -0
- package/lib/index.d.ts +2 -0
- package/lib/seeds.js +2 -1
- package/lib/web3.d.ts +1 -0
- package/lib/web3.js +1192 -553
- package/package.json +2 -2
- package/scripts/add-tiers.js +134 -0
- package/scripts/add-tiers.ts +135 -0
package/.turbo/turbo-build.log
CHANGED
|
@@ -1 +1,2 @@
|
|
|
1
|
-
|
|
1
|
+
|
|
2
|
+
[0m[2m[35m$[0m [2m[1mtsc -p .[0m
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @pioneer-platform/nodes
|
|
2
2
|
|
|
3
|
+
## 8.11.12
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- chore: chore: fix: 📦 Add tsoa.json to Docker build
|
|
8
|
+
- Updated dependencies
|
|
9
|
+
- @pioneer-platform/pioneer-caip@9.10.2
|
|
10
|
+
|
|
11
|
+
## 8.11.11
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- chore: fix: 📦 Add tsoa.json to Docker build
|
|
16
|
+
- Updated dependencies
|
|
17
|
+
- @pioneer-platform/pioneer-caip@9.10.1
|
|
18
|
+
|
|
3
19
|
## 8.11.10
|
|
4
20
|
|
|
5
21
|
### Patch Changes
|
package/lib/index.d.ts
CHANGED
|
@@ -2,10 +2,12 @@ export declare const init: (type: string, config: any, isTestnet: boolean) => Pr
|
|
|
2
2
|
export declare const getWeb3Nodes: () => {
|
|
3
3
|
networkId: string;
|
|
4
4
|
service: string;
|
|
5
|
+
tier: string;
|
|
5
6
|
}[];
|
|
6
7
|
export declare const getNodes: () => {
|
|
7
8
|
networkId: string;
|
|
8
9
|
service: string;
|
|
10
|
+
tier: string;
|
|
9
11
|
}[];
|
|
10
12
|
export declare const getNode: (network: string, serviceId: string) => any;
|
|
11
13
|
export declare const getBlockbooks: () => ({
|
package/lib/seeds.js
CHANGED
|
@@ -109,8 +109,9 @@ exports.blockbooks = [
|
|
|
109
109
|
},
|
|
110
110
|
{
|
|
111
111
|
symbol: "DGB",
|
|
112
|
-
blockchain: "
|
|
112
|
+
blockchain: "digibyte",
|
|
113
113
|
caip: "bip122:4da631f2ac1bed857bd968c67c913978/slip44:20",
|
|
114
|
+
networkId: "bip122:4da631f2ac1bed857bd968c67c913978",
|
|
114
115
|
type: "blockbook",
|
|
115
116
|
service: "https://dgbbook.nownodes.io/cf522543-87e2-4dd6-b645-2fbfd0bc61f6",
|
|
116
117
|
websocket: "wss://dgb.nownodes.io/wss"
|