File tree Expand file tree Collapse file tree 1 file changed +51
-12
lines changed Expand file tree Collapse file tree 1 file changed +51
-12
lines changed Original file line number Diff line number Diff line change 1
- const ELECTRUMX_HOST = 'electrumx-server.test.tbtc.network'
1
+ const TBTC_ELECTRUMX_HOST = 'electrumx-server.test.tbtc.network'
2
+ const BLOCKSTREAM_ELECTRS_HOST = 'electrum.blockstream.info'
2
3
3
4
const servers = [
5
+ // TODO: Enable all protocols test for test.tbtc.network servers once they are
6
+ // publicly exposed.
7
+ // {
8
+ // protocol: 'tcp',
9
+ // port: '80',
10
+ // host: TBTC_ELECTRUMX_HOST,
11
+ // },
12
+ // {
13
+ // protocol: 'ssl',
14
+ // port: '443',
15
+ // host: TBTC_ELECTRUMX_HOST,
16
+ // },
17
+ // {
18
+ // protocol: 'ws',
19
+ // port: '8080',
20
+ // host: TBTC_ELECTRUMX_HOST,
21
+ // },
22
+
23
+ {
24
+ protocol : 'wss' ,
25
+ port : '8443' ,
26
+ host : TBTC_ELECTRUMX_HOST ,
27
+ } ,
28
+ // electrumx tcp
4
29
{
30
+ host : 'electrum1.cipig.net' ,
31
+ port : '10068' ,
5
32
protocol : 'tcp' ,
6
- port : '80' ,
7
- host : ELECTRUMX_HOST ,
8
33
} ,
34
+ // electrumx ssl
9
35
{
10
- protocol : 'ws ' ,
11
- port : '8080 ' ,
12
- host : ELECTRUMX_HOST ,
36
+ host : 'testnet.qtornado.com ' ,
37
+ port : '51002 ' ,
38
+ protocol : 'ssl' ,
13
39
} ,
40
+ // electrs-esplora tcp
14
41
{
42
+ protocol : 'tcp' ,
43
+ port : '60001' ,
44
+ host : BLOCKSTREAM_ELECTRS_HOST ,
45
+ } ,
46
+ // electrs-esplora ssl
47
+ {
48
+ host : 'electrum.blockstream.info' ,
49
+ port : '60002' ,
15
50
protocol : 'ssl' ,
16
- port : '443' ,
17
- host : ELECTRUMX_HOST ,
18
51
} ,
19
- // FIXME: The client doesn't work with WSS connection.
52
+ // fulcrum tcp
20
53
{
21
- protocol : 'wss' ,
22
- port : '8443' ,
23
- host : ELECTRUMX_HOST ,
54
+ host : 'testnet.aranguren.org' ,
55
+ port : 51001 ,
56
+ protocol : 'tcp' ,
57
+ } ,
58
+ // fulcrum ssl
59
+ {
60
+ host : 'testnet.aranguren.org' ,
61
+ port : 51002 ,
62
+ protocol : 'ssl' ,
24
63
} ,
25
64
]
26
65
You can’t perform that action at this time.
0 commit comments