@pioneer-platform/nodes 8.26.0 → 8.26.2
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/CHANGELOG.md +12 -0
- package/lib/index.d.ts +4 -4
- package/lib/seeds.d.ts +4 -4
- package/lib/seeds.js +9 -10
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @pioneer-platform/nodes
|
|
2
2
|
|
|
3
|
+
## 8.26.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- chore: fix: transaction event channel mismatch + add networkId to event payload
|
|
8
|
+
|
|
9
|
+
## 8.26.1
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- fix: transaction event channel mismatch + add networkId to event payload
|
|
14
|
+
|
|
3
15
|
## 8.26.0
|
|
4
16
|
|
|
5
17
|
### Minor Changes
|
package/lib/index.d.ts
CHANGED
|
@@ -22,25 +22,25 @@ export declare const getBlockbooks: () => ({
|
|
|
22
22
|
symbol: string;
|
|
23
23
|
blockchain: string;
|
|
24
24
|
caip: string;
|
|
25
|
+
networkId: string;
|
|
25
26
|
type: string;
|
|
26
27
|
service: string;
|
|
27
|
-
websocket
|
|
28
|
-
networkId?: undefined;
|
|
28
|
+
websocket?: undefined;
|
|
29
29
|
} | {
|
|
30
30
|
symbol: string;
|
|
31
31
|
blockchain: string;
|
|
32
32
|
caip: string;
|
|
33
33
|
type: string;
|
|
34
34
|
service: string;
|
|
35
|
+
websocket: string;
|
|
35
36
|
networkId?: undefined;
|
|
36
|
-
websocket?: undefined;
|
|
37
37
|
} | {
|
|
38
38
|
symbol: string;
|
|
39
39
|
blockchain: string;
|
|
40
40
|
caip: string;
|
|
41
|
-
networkId: string;
|
|
42
41
|
type: string;
|
|
43
42
|
service: string;
|
|
43
|
+
networkId?: undefined;
|
|
44
44
|
websocket?: undefined;
|
|
45
45
|
})[];
|
|
46
46
|
export declare const getUnchaineds: () => {
|
package/lib/seeds.d.ts
CHANGED
|
@@ -45,25 +45,25 @@ export declare const blockbooks: ({
|
|
|
45
45
|
symbol: string;
|
|
46
46
|
blockchain: string;
|
|
47
47
|
caip: string;
|
|
48
|
+
networkId: string;
|
|
48
49
|
type: string;
|
|
49
50
|
service: string;
|
|
50
|
-
websocket
|
|
51
|
-
networkId?: undefined;
|
|
51
|
+
websocket?: undefined;
|
|
52
52
|
} | {
|
|
53
53
|
symbol: string;
|
|
54
54
|
blockchain: string;
|
|
55
55
|
caip: string;
|
|
56
56
|
type: string;
|
|
57
57
|
service: string;
|
|
58
|
+
websocket: string;
|
|
58
59
|
networkId?: undefined;
|
|
59
|
-
websocket?: undefined;
|
|
60
60
|
} | {
|
|
61
61
|
symbol: string;
|
|
62
62
|
blockchain: string;
|
|
63
63
|
caip: string;
|
|
64
|
-
networkId: string;
|
|
65
64
|
type: string;
|
|
66
65
|
service: string;
|
|
66
|
+
networkId?: undefined;
|
|
67
67
|
websocket?: undefined;
|
|
68
68
|
})[];
|
|
69
69
|
interface NodeEntry {
|
package/lib/seeds.js
CHANGED
|
@@ -106,16 +106,15 @@ exports.blockbooks = [
|
|
|
106
106
|
service: "https://dashbook.nownodes.io/cf522543-87e2-4dd6-b645-2fbfd0bc61f6",
|
|
107
107
|
websocket: "wss://dash.nownodes.io/wss"
|
|
108
108
|
},
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
// },
|
|
109
|
+
{
|
|
110
|
+
symbol: "DGB",
|
|
111
|
+
blockchain: "digibyte",
|
|
112
|
+
caip: "bip122:4da631f2ac1bed857bd968c67c913978/slip44:20",
|
|
113
|
+
networkId: "bip122:4da631f2ac1bed857bd968c67c913978",
|
|
114
|
+
type: "blockbook",
|
|
115
|
+
service: "https://dgbbook.nownodes.io/cf522543-87e2-4dd6-b645-2fbfd0bc61f6"
|
|
116
|
+
// No websocket - DGB blockbook doesn't support websockets
|
|
117
|
+
},
|
|
119
118
|
{
|
|
120
119
|
symbol: "DOGE",
|
|
121
120
|
blockchain: "dogecoin",
|