-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdashsight.js
409 lines (353 loc) · 12 KB
/
dashsight.js
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
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
(function (exports) {
"use strict";
let Dashsight = {};
//@ts-ignore
exports.DashSight = Dashsight;
/**
* @type {RequestInit} defaultOpts
*/
let defaultOpts = {
headers: {
Accept: "application/json",
"Content-Type": "application/json",
},
};
const DUFFS = 100000000;
/** @typedef {import('./').CoreUtxo} CoreUtxo */
/** @typedef {import('./').InsightBalance} InsightBalance */
/** @typedef {import('./').InsightTx} InsightTx */
/** @typedef {import('./').InsightTxResponse} InsightTxResponse */
/** @typedef {import('./').InsightTxVin} InsightTxVin */
/** @typedef {import('./').InsightTxVout} InsightTxVout */
/** @typedef {import('./').InsightUtxo} InsightUtxo */
/** @typedef {import('./').InstantSend} InstantSend */
/** @typedef {import('./').DashSightInstance} DashSightInstance */
/** @typedef {import('./').GetBalance} GetBalance */
/** @typedef {import('./').GetCoreUtxos} GetCoreUtxos */
/** @typedef {import('./').GetMultiCoreUtxos} GetMultiCoreUtxos */
/** @typedef {import('./').InstantBalance} InstantBalance */
/** @typedef {import('./').GetInstantBalance} GetInstantBalance */
/** @typedef {import('./').GetInstantBalances} GetInstantBalances */
/** @typedef {import('./').GetTx} GetTx */
/** @typedef {import('./').GetTxs} GetTxs */
/** @typedef {import('./').GetUtxos} GetUtxos */
/** @typedef {import('./').GetAllUtxos} GetAllUtxos */
/** @typedef {import('./').ToCoreUtxo} ToCoreUtxo */
/** @typedef {import('./').ToCoreUtxos} ToCoreUtxos */
/**
* @param {Object} opts
* @param {String} [opts.baseUrl] - for the Insight API
* @param {String} opts.insightBaseUrl - for regular Insight features, includes prefix
* @param {String} opts.dashsightBaseUrl - for Dash-specific features, such as instant send
* @param {String} opts.dashsocketBaseUrl - for WebSocket notifications
* @returns {DashSightInstance}
*/
Dashsight.create = function ({
baseUrl,
dashsightBaseUrl,
insightBaseUrl,
dashsocketBaseUrl,
}) {
let insight = {};
if (!dashsightBaseUrl) {
dashsightBaseUrl = insightBaseUrl || `${baseUrl}/insight-api`;
}
if (dashsightBaseUrl.endsWith("/")) {
dashsightBaseUrl = dashsightBaseUrl.slice(0, dashsightBaseUrl.length - 1);
}
if (!insightBaseUrl) {
insightBaseUrl = dashsightBaseUrl;
}
if (insightBaseUrl.endsWith("/")) {
insightBaseUrl = insightBaseUrl.slice(0, insightBaseUrl.length - 1);
}
if (!dashsocketBaseUrl) {
dashsocketBaseUrl = `${baseUrl}/socket.io`;
}
if (dashsocketBaseUrl.endsWith("/")) {
dashsocketBaseUrl = dashsocketBaseUrl.slice(
0,
dashsocketBaseUrl.length - 1,
);
}
/** @type {GetBalance} */
insight.getBalance = async function (address) {
console.warn(`warn: getBalance(pubkey) doesn't account for instantSend,`);
console.warn(` consider (await getUtxos()).reduce(countSatoshis)`);
let txUrl = `${insightBaseUrl}/addr/${address}/?noTxList=1`;
let txResp = await Dashsight.fetch(txUrl);
/** @type {InsightBalance} */
let data = txResp.body;
return data;
};
/** @type {GetInstantBalance} */
insight.getInstantBalance = async function (address) {
let utxos = await insight.getUtxos(address);
let balanceDuffs = utxos?.reduce(function (total, utxo) {
return total + utxo.satoshis;
}, 0);
// because 0.1 + 0.2 = 0.30000000000000004,
// but we would only want 0.30000000
let balanceDash = (balanceDuffs / DUFFS).toFixed(8);
return {
addrStr: address,
balance: parseFloat(balanceDash),
balanceSat: balanceDuffs,
_utxoCount: utxos.length,
_utxoAmounts: utxos.map(function (utxo) {
return utxo.satoshis;
}),
};
};
/** @type {GetInstantBalances} */
insight.getInstantBalances = async function (addresses) {
let utxos = await insight.getAllUtxos(addresses);
/** @type {Record<String, InstantBalance>} */
let balanceOfAddrs = {}
utxos?.forEach(function (utxo) {
let balanceDuffs = utxo.satoshis || 0
let balanceDash = (balanceDuffs / DUFFS).toFixed(8);
/** @type {InstantBalance | any} */
let utxoAddrSum = balanceOfAddrs[utxo.address] || {}
let balance = utxoAddrSum.balance || 0
let balanceSat = utxoAddrSum.balanceSat || 0
let _utxoCount = utxoAddrSum._utxoCount || 0
let _utxoAmounts = utxoAddrSum._utxoAmounts || []
_utxoAmounts.push(utxo.satoshis)
utxoAddrSum = {
addrStr: utxo.address,
balance: balance + parseFloat(balanceDash),
balanceSat: balanceSat + balanceDuffs,
_utxoCount: _utxoCount + 1,
_utxoAmounts: _utxoAmounts,
}
balanceOfAddrs[utxo.address] = utxoAddrSum
});
return Object.values(balanceOfAddrs);
};
/** @type {GetUtxos} */
insight.getUtxos = async function (address) {
let utxoUrl = `${insightBaseUrl}/addr/${address}/utxo`;
let utxoResp = await Dashsight.fetch(utxoUrl);
/** @type Array<InsightUtxo> */
let utxos = await utxoResp.json();
return utxos;
};
/** @type {(addresses: string | string[]) => String} */
insight._joinAddrs = function (addresses) {
let addrs = addresses
if (Array.isArray(addrs)) {
addrs = addrs.join(",")
}
return addrs
};
/** @type {GetAllUtxos} */
insight.getAllUtxos = async function (addresses) {
let addrs = insight._joinAddrs(addresses)
// GET `${insightBaseUrl}/addrs/${addrs}/utxo`
// also works unless you have too many addrs
// then you get a `414 URI Too Long` error
let utxoUrl = `${insightBaseUrl}/addrs/utxo`;
// thus POST is used
let utxoResp = await Dashsight.fetch(utxoUrl, {
method: 'POST',
body: {
// @ts-ignore
addrs,
},
});
/** @type Array<InsightUtxo> */
let utxos = await utxoResp.json();
return utxos;
};
/** @type {GetCoreUtxos} */
insight.getCoreUtxos = async function (address) {
let result = await insight.getTxs(address, 1);
if (result.pagesTotal > 1) {
let utxos = await insight.getUtxos(address);
return insight.toCoreUtxos(utxos);
}
let coreUtxos = await getTxUtxos(address, result.txs);
return coreUtxos;
};
/** @type {GetMultiCoreUtxos} */
insight.getMultiCoreUtxos = async function (addresses) {
let utxos = await insight.getAllUtxos(addresses);
return insight.toCoreUtxos(utxos);
};
/** @type {GetTx} */
insight.getTx = async function (txid) {
let txUrl = `${insightBaseUrl}/tx/${txid}`;
let txResp = await Dashsight.fetch(txUrl);
/** @type InsightTx */
let data = await txResp.json();
return data;
};
/** @type {GetTxs} */
insight.getTxs = async function (addr, maxPages) {
let txUrl = `${insightBaseUrl}/txs?address=${addr}&pageNum=0`;
let txResp = await Dashsight.fetch(txUrl);
/** @type {InsightTxResponse} */
let body = await txResp.json();
let data = await getAllPages(body, addr, maxPages);
return data;
};
/**
* @param {InsightTxResponse} body
* @param {String} addr
* @param {Number} maxPages
*/
async function getAllPages(body, addr, maxPages) {
let pagesTotal = Math.min(body.pagesTotal, maxPages);
for (let cursor = 1; cursor < pagesTotal; cursor += 1) {
let nextResp = await Dashsight.fetch(
`${insightBaseUrl}/txs?address=${addr}&pageNum=${cursor}`,
);
nextResp = await nextResp.json();
// Note: this could still be wrong, but I don't think we have
// a better way to page so... whatever
// @ts-ignore
body.txs = body.txs.concat(nextResp?.txs);
}
return body;
}
/** @type {InstantSend} */
insight.instantSend = async function (hexTx) {
// Ex:
// - https://insight.dash.org/insight-api-dash/tx/sendix
// - https://dashsight.dashincubator.dev/insight-api/tx/sendix
let instUrl = `${dashsightBaseUrl}/tx/sendix`;
let txResp = await Dashsight.fetch(instUrl, {
method: "POST",
body: {
// @ts-ignore
rawtx: hexTx,
},
});
if (!txResp.ok) {
// TODO better error check
throw new Error(JSON.stringify(txResp.body, null, 2));
}
return txResp.json();
};
/** @type {ToCoreUtxo} */
insight.toCoreUtxo = function (utxo) {
return {
txId: utxo.txid,
outputIndex: utxo.vout,
address: utxo.address,
script: utxo.scriptPubKey,
satoshis: utxo.satoshis,
};
};
/** @type {ToCoreUtxo} */
insight.toCoreUtxo = Dashsight.toCoreUtxo;
/** @type {ToCoreUtxos} */
insight.toCoreUtxos = Dashsight.toCoreUtxos;
/**
* Handles UTXOs that have NO MORE THAN ONE page of transactions
* @param {String} address
* @param {Array<InsightTx>} txs - soonest-first-sorted transactions
*/
async function getTxUtxos(address, txs) {
/** @type { Array<CoreUtxo> } */
let coreUtxos = [];
txs.forEach(function (tx, i) {
//let fee = tx.valueIn - tx.valueOut;
// consumed as an input
tx.vout.forEach(addUnspentOutputs);
tx.vin.forEach(removeSpentOutputs);
/**
* @param {InsightTxVin} vin
*/
function removeSpentOutputs(vin) {
if (address !== vin.addr) {
return;
}
let spentIndex = -1;
coreUtxos.some(function (coreUtxo, i) {
if (coreUtxo.txId !== vin.txid) {
return false;
}
if (coreUtxo.outputIndex !== vin.vout) {
return false;
}
if (coreUtxo.satoshis !== vin.valueSat) {
return false;
}
spentIndex = i;
});
if (spentIndex >= 0) {
// remove this output as unspent
coreUtxos.splice(spentIndex, 1);
}
}
/**
* @param {InsightTxVout} vout
* @param {Number} i
*/
function addUnspentOutputs(vout, i) {
// in theory this makes all of the vin checking above redundant
if (vout.spentTxId) {
return;
}
if (!vout.scriptPubKey.addresses.includes(address)) {
return;
}
let value = Math.round(parseFloat(vout.value) * DUFFS);
coreUtxos.push({
address: address,
outputIndex: i,
satoshis: value,
script: vout.scriptPubKey.hex,
txId: tx.txid,
});
}
});
return coreUtxos;
}
return insight;
};
/**
* @param {String | URL | Request} url
* @param {RequestInit} [opts]
*/
Dashsight.fetch = async function dashfetch(url, opts) {
opts = Object.assign({}, defaultOpts, opts);
if (opts.body) {
opts.body = JSON.stringify(opts.body);
}
let resp = await fetch(url, opts);
if (resp.ok) {
return resp;
}
let err = new Error(
`http request was ${resp.status}, not ok. See err.response for details.`,
);
// @ts-ignore
err.response = resp.json();
throw err;
};
/** @type {ToCoreUtxo} */
Dashsight.toCoreUtxo = function (utxo) {
return {
txId: utxo.txid,
outputIndex: utxo.vout,
address: utxo.address,
script: utxo.scriptPubKey,
satoshis: utxo.satoshis,
};
};
/** @type {ToCoreUtxos} */
Dashsight.toCoreUtxos = function (insightUtxos) {
let coreUtxos = insightUtxos.map(Dashsight.toCoreUtxo);
return coreUtxos;
};
if ("undefined" !== typeof module) {
module.exports.Dashsight = Dashsight;
module.exports.create = Dashsight.create;
module.exports.Dashfetch = Dashsight.fetch;
module.exports.toCoreUtxo = Dashsight.toCoreUtxo;
module.exports.toCoreUtxos = Dashsight.toCoreUtxos;
}
})(("undefined" !== typeof module && module.exports) || window);