-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexplorer.json
180 lines (180 loc) · 5.04 KB
/
explorer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
{
"explorers": [
{
"name": "blockchain",
"coin": "btc",
"url": "https://blockchain.info/latestblock",
"heightJsonPattern": "$.height",
"hashJsonPattern": "$.hash",
"enabled": true
},
{
"name": "blockchair",
"coin": "btc",
"url": "https://api.blockchair.com/bitcoin/blocks?limit=1",
"heightJsonPattern": "$.data[0].id",
"hashJsonPattern": "$.data[0].hash",
"enabled": true
},
{
"name": "viabtc",
"coin": "btc",
"url": "https://explorer.viawallet.com/res/btc/blocks?limit=1",
"heightJsonPattern": "$.data.data[0].height",
"hashJsonPattern": "$.data.data[0].hash",
"enabled": true
},
{
"name": "btc.com",
"coin": "btc",
"url": "https://chain.api.btc.com/v3/block/latest",
"heightJsonPattern": "$.data.height",
"hashJsonPattern": "$.data.hash",
"enabled": true
},
{
"name": "blockstream",
"coin": "btc",
"url": "https://blockstream.info/api/blocks/latest",
"heightJsonPattern": "$[0].height",
"hashJsonPattern": "$[0].id",
"enabled": true
},
{
"name": "mempool.space",
"coin": "btc",
"url": "https://mempool.space/api/blocks/latest",
"heightJsonPattern": "$[0].height",
"hashJsonPattern": "$[0].id",
"enabled": true
},
{
"name": "blockcypher",
"coin": "btc",
"url": "https://api.blockcypher.com/v1/btc/main",
"heightJsonPattern": "$.height",
"hashJsonPattern": "$.hash",
"enabled": true
},
{
"name": "blockchair",
"coin": "bch",
"url": "https://api.blockchair.com/bitcoin-cash/blocks?limit=1",
"heightJsonPattern": "$.data[0].id",
"hashJsonPattern": "$.data[0].hash",
"enabled": true
},
{
"name": "viabtc",
"coin": "bch",
"url": "https://explorer.viabtc.com/res/bch/blocks?limit=1",
"heightJsonPattern": "$.data.data[0].height",
"hashJsonPattern": "$.data.data[0].hash",
"enabled": true
},
{
"name": "btc.com",
"coin": "bch",
"url": "https://bch-chain.api.btc.com/v3/block/latest",
"heightJsonPattern": "$.data.height",
"hashJsonPattern": "$.data.hash",
"enabled": true
},
{
"name": "blockchair",
"coin": "bsv",
"url": "https://api.blockchair.com/bitcoin-sv/blocks?limit=1",
"heightJsonPattern": "$.data[0].id",
"hashJsonPattern": "$.data[0].hash",
"enabled": true
},
{
"name": "viabtc",
"coin": "bsv",
"url": "https://explorer.viabtc.com/res/bsv/blocks?limit=1",
"heightJsonPattern": "$.data.data[0].height",
"hashJsonPattern": "$.data.data[0].hash",
"enabled": true
},
{
"name": "btc.com",
"coin": "bsv",
"url": "https://bsv-chain.api.btc.com/v3/block/latest",
"heightJsonPattern": "$.data.height",
"hashJsonPattern": "$.data.hash",
"enabled": true
},
{
"name": "whatsonchain",
"coin": "bsv",
"url": "https://api.whatsonchain.com/v1/bsv/main/block/headers",
"heightJsonPattern": "$[0].height",
"hashJsonPattern": "$[0].hash",
"enabled": true
},
{
"name": "blockchair",
"coin": "ltc",
"url": "https://api.blockchair.com/litecoin/blocks?limit=1",
"heightJsonPattern": "$.data[0].id",
"hashJsonPattern": "$.data[0].hash",
"enabled": true
},
{
"name": "viabtc",
"coin": "ltc",
"url": "https://explorer.viabtc.com/res/ltc/blocks?limit=1",
"heightJsonPattern": "$.data.data[0].height",
"hashJsonPattern": "$.data.data[0].hash",
"enabled": true
},
{
"name": "btc.com",
"coin": "ltc",
"url": "https://ltc-chain.api.btc.com/v3/block/latest",
"heightJsonPattern": "$.data.height",
"hashJsonPattern": "$.data.hash",
"enabled": true
},
{
"name": "blockcypher",
"coin": "ltc",
"url": "https://api.blockcypher.com/v1/ltc/main",
"heightJsonPattern": "$.height",
"hashJsonPattern": "$.hash",
"enabled": true
},
{
"name": "blockchair",
"coin": "eth",
"url": "https://api.blockchair.com/ethereum/blocks?limit=1",
"heightJsonPattern": "$.data[0].id",
"hashJsonPattern": "$.data[0].hash",
"enabled": true
},
{
"name": "blockchain",
"coin": "eth",
"url": "https://api.blockchain.info/v2/eth/data/blocks?size=1",
"heightJsonPattern": "$.blockHeaders[0].number",
"hashJsonPattern": "$.blockHeaders[0].hash",
"enabled": true
},
{
"name": "btc.com",
"coin": "eth",
"url": "https://eth-chain.api.btc.com/v1/blocks?start=0&count=1",
"heightJsonPattern": "$.blocks[0].number",
"hashJsonPattern": "$.blocks[0].hash",
"enabled": true
},
{
"name": "blockcypher",
"coin": "eth",
"url": "https://api.blockcypher.com/v1/eth/main",
"heightJsonPattern": "$.height",
"hashJsonPattern": "$.hash",
"enabled": true
}
]
}