@pioneer-platform/nodes 8.26.0 → 8.28.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/CHANGELOG.md +24 -0
- package/lib/index.d.ts +4 -4
- package/lib/seeds.d.ts +4 -4
- package/lib/seeds.js +23 -12
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,29 @@
|
|
|
1
1
|
# @pioneer-platform/nodes
|
|
2
2
|
|
|
3
|
+
## 8.28.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- chore: feat(pioneer-sdk): Add ERC-20/BEP-20 token table to portfolio dashboard
|
|
8
|
+
|
|
9
|
+
## 8.27.0
|
|
10
|
+
|
|
11
|
+
### Minor Changes
|
|
12
|
+
|
|
13
|
+
- feat(pioneer-sdk): Add ERC-20/BEP-20 token table to portfolio dashboard
|
|
14
|
+
|
|
15
|
+
## 8.26.2
|
|
16
|
+
|
|
17
|
+
### Patch Changes
|
|
18
|
+
|
|
19
|
+
- chore: fix: transaction event channel mismatch + add networkId to event payload
|
|
20
|
+
|
|
21
|
+
## 8.26.1
|
|
22
|
+
|
|
23
|
+
### Patch Changes
|
|
24
|
+
|
|
25
|
+
- fix: transaction event channel mismatch + add networkId to event payload
|
|
26
|
+
|
|
3
27
|
## 8.26.0
|
|
4
28
|
|
|
5
29
|
### 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",
|
|
@@ -140,6 +139,18 @@ exports.blockbooks = [
|
|
|
140
139
|
service: "https://bchbook.nownodes.io/cf522543-87e2-4dd6-b645-2fbfd0bc61f6",
|
|
141
140
|
websocket: "wss://bch.nownodes.io/wss"
|
|
142
141
|
},
|
|
142
|
+
// ============================================================================
|
|
143
|
+
// EVM CHAINS - Transaction history via Blockbook
|
|
144
|
+
// ============================================================================
|
|
145
|
+
{
|
|
146
|
+
symbol: "BASE",
|
|
147
|
+
blockchain: "base",
|
|
148
|
+
caip: "eip155:8453/slip44:60",
|
|
149
|
+
networkId: "eip155:8453",
|
|
150
|
+
type: "blockbook",
|
|
151
|
+
service: "https://base-blockbook.nownodes.io/{API_KEY}",
|
|
152
|
+
websocket: "wss://base-blockbook.nownodes.io/wss"
|
|
153
|
+
},
|
|
143
154
|
// DISABLED - Returns HTTP 400
|
|
144
155
|
// {
|
|
145
156
|
// symbol:"BSV",
|
|
@@ -193,8 +204,8 @@ exports.blockbooks = [
|
|
|
193
204
|
caip: "eip155:1/slip44:60",
|
|
194
205
|
networkId: "eip155:1",
|
|
195
206
|
type: "blockbook",
|
|
196
|
-
service: "https://eth-blockbook.nownodes.io/
|
|
197
|
-
websocket: "wss://eth-blockbook.nownodes.io/wss"
|
|
207
|
+
service: "https://eth-blockbook.nownodes.io/{API_KEY}",
|
|
208
|
+
websocket: "wss://eth-blockbook.nownodes.io/wss/{API_KEY}/websocket"
|
|
198
209
|
},
|
|
199
210
|
// ============================================================================
|
|
200
211
|
// ZELCORE NODES REMOVED - All returning HTTP 403 Forbidden
|