@pioneer-platform/nodes 8.19.0 → 8.25.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 +36 -0
- package/lib/seeds.d.ts +3 -4
- package/lib/seeds.js +45 -32
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,41 @@
|
|
|
1
1
|
# @pioneer-platform/nodes
|
|
2
2
|
|
|
3
|
+
## 8.25.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- chore: chore: feat(pioneer-server): Migrate from Bun to Node.js for Blockbook WebSocket compatibility
|
|
8
|
+
|
|
9
|
+
## 8.24.0
|
|
10
|
+
|
|
11
|
+
### Minor Changes
|
|
12
|
+
|
|
13
|
+
- chore: feat(pioneer-server): Migrate from Bun to Node.js for Blockbook WebSocket compatibility
|
|
14
|
+
|
|
15
|
+
## 8.23.0
|
|
16
|
+
|
|
17
|
+
### Minor Changes
|
|
18
|
+
|
|
19
|
+
- feat(pioneer-server): Migrate from Bun to Node.js for Blockbook WebSocket compatibility
|
|
20
|
+
|
|
21
|
+
## 8.22.0
|
|
22
|
+
|
|
23
|
+
### Minor Changes
|
|
24
|
+
|
|
25
|
+
- feat(pioneer-server): Migrate from Bun to Node.js for Blockbook WebSocket compatibility
|
|
26
|
+
|
|
27
|
+
## 8.21.0
|
|
28
|
+
|
|
29
|
+
### Minor Changes
|
|
30
|
+
|
|
31
|
+
- feat(pioneer-server): Migrate from Bun to Node.js for Blockbook WebSocket compatibility
|
|
32
|
+
|
|
33
|
+
## 8.20.0
|
|
34
|
+
|
|
35
|
+
### Minor Changes
|
|
36
|
+
|
|
37
|
+
- feat(pioneer-server): Migrate from Bun to Node.js for Blockbook WebSocket compatibility
|
|
38
|
+
|
|
3
39
|
## 8.19.0
|
|
4
40
|
|
|
5
41
|
### Minor Changes
|
package/lib/seeds.d.ts
CHANGED
|
@@ -18,21 +18,20 @@ export declare let CURRENT_CONTEXT_NODE_MAP: {
|
|
|
18
18
|
* ✅ BCH: NowNodes only
|
|
19
19
|
* ✅ DASH: NowNodes only
|
|
20
20
|
* ✅ ZEC: NowNodes only
|
|
21
|
-
* ✅ DGB: NowNodes only
|
|
22
21
|
* ✅ GRS: NowNodes only
|
|
23
22
|
* ✅ DCR: NowNodes only
|
|
24
23
|
* ✅ BTG: NowNodes only
|
|
25
24
|
* ✅ KMD: NowNodes only
|
|
26
|
-
* ✅ ETH: ShapeShift blockbook (EVM only)
|
|
27
|
-
* ✅ xDAI: ShapeShift blockbook (EVM only)
|
|
28
25
|
*
|
|
29
26
|
* DISABLED PROVIDERS:
|
|
30
27
|
* 💀 Zelcore - All nodes return HTTP 403 Forbidden (removed 2025-10-12)
|
|
31
28
|
* 💀 ShapeShift UTXO chains (BTC, LTC, DOGE, BCH) - All return HTTP 530
|
|
29
|
+
* 💀 ShapeShift EVM chains (ETH, xDAI) - WebSocket handshake fails (Expected 101)
|
|
30
|
+
* 💀 DGB: NowNodes WebSocket handshake fails (Expected 101)
|
|
32
31
|
* 💀 BSV: NowNodes (HTTP 400 - not working)
|
|
33
32
|
* 💀 ARB: NowNodes (Invalid URL)
|
|
34
33
|
*
|
|
35
|
-
* Last updated: 2025-
|
|
34
|
+
* Last updated: 2025-12-29
|
|
36
35
|
*/
|
|
37
36
|
export declare const blockbooks: ({
|
|
38
37
|
symbol: string;
|
package/lib/seeds.js
CHANGED
|
@@ -69,21 +69,20 @@ exports.CURRENT_CONTEXT_NODE_MAP = exports.TIER_ONE_SEED;
|
|
|
69
69
|
* ✅ BCH: NowNodes only
|
|
70
70
|
* ✅ DASH: NowNodes only
|
|
71
71
|
* ✅ ZEC: NowNodes only
|
|
72
|
-
* ✅ DGB: NowNodes only
|
|
73
72
|
* ✅ GRS: NowNodes only
|
|
74
73
|
* ✅ DCR: NowNodes only
|
|
75
74
|
* ✅ BTG: NowNodes only
|
|
76
75
|
* ✅ KMD: NowNodes only
|
|
77
|
-
* ✅ ETH: ShapeShift blockbook (EVM only)
|
|
78
|
-
* ✅ xDAI: ShapeShift blockbook (EVM only)
|
|
79
76
|
*
|
|
80
77
|
* DISABLED PROVIDERS:
|
|
81
78
|
* 💀 Zelcore - All nodes return HTTP 403 Forbidden (removed 2025-10-12)
|
|
82
79
|
* 💀 ShapeShift UTXO chains (BTC, LTC, DOGE, BCH) - All return HTTP 530
|
|
80
|
+
* 💀 ShapeShift EVM chains (ETH, xDAI) - WebSocket handshake fails (Expected 101)
|
|
81
|
+
* 💀 DGB: NowNodes WebSocket handshake fails (Expected 101)
|
|
83
82
|
* 💀 BSV: NowNodes (HTTP 400 - not working)
|
|
84
83
|
* 💀 ARB: NowNodes (Invalid URL)
|
|
85
84
|
*
|
|
86
|
-
* Last updated: 2025-
|
|
85
|
+
* Last updated: 2025-12-29
|
|
87
86
|
*/
|
|
88
87
|
exports.blockbooks = [
|
|
89
88
|
// ============================================================================
|
|
@@ -107,15 +106,16 @@ exports.blockbooks = [
|
|
|
107
106
|
service: "https://dashbook.nownodes.io/cf522543-87e2-4dd6-b645-2fbfd0bc61f6",
|
|
108
107
|
websocket: "wss://dash.nownodes.io/wss"
|
|
109
108
|
},
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
109
|
+
// DISABLED - WebSocket connection fails with "Expected 101 status code"
|
|
110
|
+
// {
|
|
111
|
+
// symbol:"DGB",
|
|
112
|
+
// blockchain:"digibyte",
|
|
113
|
+
// caip:"bip122:4da631f2ac1bed857bd968c67c913978/slip44:20",
|
|
114
|
+
// networkId:"bip122:4da631f2ac1bed857bd968c67c913978",
|
|
115
|
+
// type:"blockbook",
|
|
116
|
+
// service:"https://dgbbook.nownodes.io/cf522543-87e2-4dd6-b645-2fbfd0bc61f6",
|
|
117
|
+
// websocket:"wss://dgb.nownodes.io/wss"
|
|
118
|
+
// },
|
|
119
119
|
{
|
|
120
120
|
symbol: "DOGE",
|
|
121
121
|
blockchain: "dogecoin",
|
|
@@ -185,14 +185,7 @@ exports.blockbooks = [
|
|
|
185
185
|
service: "https://zecbook.nownodes.io/cf522543-87e2-4dd6-b645-2fbfd0bc61f6"
|
|
186
186
|
},
|
|
187
187
|
// ============================================================================
|
|
188
|
-
//
|
|
189
|
-
// ============================================================================
|
|
190
|
-
// Zelcore blockbook nodes were causing failures:
|
|
191
|
-
// - BTC, LTC, DOGE, BCH, DASH, ZEC, RVN all returned 403 Forbidden
|
|
192
|
-
// - Removed 2025-10-12 to fix GetChangeAddress endpoint failures
|
|
193
|
-
// - NowNodes provides sufficient coverage for UTXO chains
|
|
194
|
-
// ============================================================================
|
|
195
|
-
// SHAPESHIFT - EVM chains only (UTXO chains confirmed down with HTTP 530)
|
|
188
|
+
// EVM CHAINS - NowNodes Blockbook
|
|
196
189
|
// ============================================================================
|
|
197
190
|
{
|
|
198
191
|
symbol: "ETH",
|
|
@@ -200,19 +193,39 @@ exports.blockbooks = [
|
|
|
200
193
|
caip: "eip155:1/slip44:60",
|
|
201
194
|
networkId: "eip155:1",
|
|
202
195
|
type: "blockbook",
|
|
203
|
-
service: "https://
|
|
204
|
-
websocket: "wss://
|
|
205
|
-
},
|
|
206
|
-
{
|
|
207
|
-
symbol: "xDAI",
|
|
208
|
-
blockchain: "gnosis",
|
|
209
|
-
caip: "eip155:100/slip44:60",
|
|
210
|
-
networkId: "eip155:100",
|
|
211
|
-
type: "blockbook",
|
|
212
|
-
service: "https://indexer.gnosis.shapeshift.com",
|
|
213
|
-
websocket: "wss://indexer.gnosis.shapeshift.com/websocket"
|
|
196
|
+
service: "https://eth-blockbook.nownodes.io/cf522543-87e2-4dd6-b645-2fbfd0bc61f6",
|
|
197
|
+
websocket: "wss://eth-blockbook.nownodes.io/wss"
|
|
214
198
|
},
|
|
215
199
|
// ============================================================================
|
|
200
|
+
// ZELCORE NODES REMOVED - All returning HTTP 403 Forbidden
|
|
201
|
+
// ============================================================================
|
|
202
|
+
// Zelcore blockbook nodes were causing failures:
|
|
203
|
+
// - BTC, LTC, DOGE, BCH, DASH, ZEC, RVN all returned 403 Forbidden
|
|
204
|
+
// - Removed 2025-10-12 to fix GetChangeAddress endpoint failures
|
|
205
|
+
// - NowNodes provides sufficient coverage for UTXO chains
|
|
206
|
+
// ============================================================================
|
|
207
|
+
// SHAPESHIFT - EVM chains DISABLED (WebSocket connections failing)
|
|
208
|
+
// ============================================================================
|
|
209
|
+
// DISABLED - ShapeShift WebSocket connections fail with "Expected 101 status code"
|
|
210
|
+
// {
|
|
211
|
+
// symbol:"ETH",
|
|
212
|
+
// blockchain:"ethereum",
|
|
213
|
+
// caip:"eip155:1/slip44:60",
|
|
214
|
+
// networkId:"eip155:1",
|
|
215
|
+
// type:"blockbook",
|
|
216
|
+
// service:"https://indexer.ethereum.shapeshift.com",
|
|
217
|
+
// websocket:"wss://indexer.ethereum.shapeshift.com/websocket"
|
|
218
|
+
// },
|
|
219
|
+
// {
|
|
220
|
+
// symbol:"xDAI",
|
|
221
|
+
// blockchain:"gnosis",
|
|
222
|
+
// caip:"eip155:100/slip44:60",
|
|
223
|
+
// networkId:"eip155:100",
|
|
224
|
+
// type:"blockbook",
|
|
225
|
+
// service:"https://indexer.gnosis.shapeshift.com",
|
|
226
|
+
// websocket:"wss://indexer.gnosis.shapeshift.com/websocket"
|
|
227
|
+
// },
|
|
228
|
+
// ============================================================================
|
|
216
229
|
// DEAD/DISABLED NODES - ShapeShift UTXO chains are down (HTTP 530)
|
|
217
230
|
// ============================================================================
|
|
218
231
|
//SHAPESHIFT UTXO CHAINS - ALL DOWN
|