forked from BlueWallet/BlueWallet
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathBlueElectrum.js
751 lines (664 loc) · 23.5 KB
/
BlueElectrum.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
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
import AsyncStorage from '@react-native-community/async-storage';
import { Platform } from 'react-native';
import { AppStorage, LegacyWallet, SegwitBech32Wallet, SegwitP2SHWallet } from './class';
import Toast from 'react-native-root-toast';
const bitcoin = require('bitcoinjs-lib');
const ElectrumClient = require('./electrum-client');
let reverse = require('buffer-reverse');
let BigNumber = require('bignumber.js');
let loc = require('./loc');
import { showStatus, hideStatus } from './util';
let BlueApp = require('./BlueApp');
const storageKey = 'ELECTRUM_PEERS';
const defaultPeer = { host: 'ec.kevacoin.org', ssl: '50002' };
const hardcodedPeers = [
{ host: 'ec.kevacoin.org', ssl: '50002' },
];
let mainClient: ElectrumClient = false;
let mainConnected = false;
let wasConnectedAtLeastOnce = false;
let serverName = false;
let disableBatching = false;
let currentPeer = null;
function getCurrentPeer() {
return currentPeer;
}
let txhashHeightCache = {};
async function connectMain() {
let usingPeer = await getRandomHardcodedPeer();
let savedPeer = await getSavedPeer();
if (savedPeer && savedPeer.host && (savedPeer.tcp || savedPeer.ssl)) {
usingPeer = savedPeer;
}
currentPeer = usingPeer;
try {
console.log('begin connection:', JSON.stringify(usingPeer));
mainClient = new ElectrumClient(usingPeer.ssl || usingPeer.tcp, usingPeer.host, usingPeer.ssl ? 'tls' : 'tcp');
const ver = await mainClient.initElectrum({ client: 'bluewallet', version: '1.4' });
if (ver && ver[0]) {
console.log('connected to ', ver);
serverName = ver[0];
mainConnected = true;
wasConnectedAtLeastOnce = true;
if (ver[0].startsWith('ElectrumPersonalServer') || ver[0].startsWith('electrs')) {
// TODO: once they release support for batching - disable batching only for lower versions
disableBatching = true;
}
// AsyncStorage.setItem(storageKey, JSON.stringify(peers)); TODO: refactor
}
} catch (e) {
mainConnected = false;
console.log('bad connection:', JSON.stringify(usingPeer), e);
}
}
connectMain();
/**
* Returns random hardcoded electrum server guaranteed to work
* at the time of writing.
*
* @returns {Promise<{tcp, host}|*>}
*/
async function getRandomHardcodedPeer() {
return hardcodedPeers[(hardcodedPeers.length * Math.random()) | 0];
}
async function getSavedPeer() {
let host = await AsyncStorage.getItem(AppStorage.ELECTRUM_HOST);
let port = await AsyncStorage.getItem(AppStorage.ELECTRUM_TCP_PORT);
let sslPort = await AsyncStorage.getItem(AppStorage.ELECTRUM_SSL_PORT);
return { host, tcp: port, ssl: sslPort };
}
/**
* Returns random electrum server out of list of servers
* previous electrum server told us. Nearly half of them is
* usually offline.
* Not used for now.
*
* @returns {Promise<{tcp: number, host: string}>}
*/
// eslint-disable-next-line
async function getRandomDynamicPeer() {
try {
let peers = JSON.parse(await AsyncStorage.getItem(storageKey));
peers = peers.sort(() => Math.random() - 0.5); // shuffle
for (let peer of peers) {
let ret = {};
ret.host = peer[1];
for (let item of peer[2]) {
if (item.startsWith('t')) {
ret.tcp = item.replace('t', '');
}
}
if (ret.host && ret.tcp) return ret;
}
return defaultPeer; // failed to find random client, using default
} catch (_) {
return defaultPeer; // smth went wrong, using default
}
}
/**
*
* @param address {String}
* @returns {Promise<Object>}
*/
module.exports.getBalanceByAddress = async function(address) {
if (!mainClient) throw new Error('Electrum client is not connected');
let script = bitcoin.address.toOutputScript(address);
let hash = bitcoin.crypto.sha256(script);
let reversedHash = Buffer.from(reverse(hash));
let toast = showStatus("Getting address balance");
let balance = await mainClient.blockchainScripthash_getBalance(reversedHash.toString('hex'));
hideStatus(toast);
balance.addr = address;
return balance;
};
module.exports.getConfig = async function() {
if (!mainClient) throw new Error('Electrum client is not connected');
return {
host: mainClient.host,
port: mainClient.port,
status: mainClient.status ? 1 : 0,
serverName,
};
};
/**
*
* @param address {String}
* @returns {Promise<Array>}
*/
module.exports.getTransactionsByAddress = async function(address) {
if (!mainClient) throw new Error('Electrum client is not connected');
let script = bitcoin.address.toOutputScript(address);
let hash = bitcoin.crypto.sha256(script);
let reversedHash = Buffer.from(reverse(hash));
let toast = showStatus("Getting address txs");
let history = await mainClient.blockchainScripthash_getHistory(reversedHash.toString('hex'));
hideStatus(toast);
if (history.tx_hash) txhashHeightCache[history.tx_hash] = history.height; // cache tx height
return history;
};
const PING_TIMEOUT = 5000;
module.exports.ping = async function() {
let toast;
try {
toast = showStatus("Connecting to server");
let promiseTimeout = new Promise((resolve, reject) => {
setTimeout(() => reject(new Error('Ping timeout')), PING_TIMEOUT);
});
let promisePing = mainClient.server_ping();
await Promise.race([promisePing, promiseTimeout]);
hideStatus(toast);
} catch (err) {
hideStatus(toast);
mainConnected = false;
mainClient.close();
try {
toast = showStatus("Try to connect again");
let promiseConnect = connectMain();
let promiseTimeout = new Promise((resolve, reject) => {
setTimeout(() => reject(new Error('Ping timeout again')), PING_TIMEOUT);
});
await Promise.race([promiseConnect, promiseTimeout]);
if (mainConnected) {
hideStatus(toast);
} else {
throw new Error("Cannot reconnect");
}
} catch (connErr) {
hideStatus(toast);
Toast.show(loc._.bad_network, {
duration: Toast.durations.LONG,
position: Toast.positions.BOTTOM,
shadow: true,
animation: true,
hideOnPress: true,
delay: 0
});
throw new Error(loc._.bad_network);
}
return true;
}
return true;
};
module.exports.getTransactionsFullByAddress = async function(address) {
let txs = await this.getTransactionsByAddress(address);
let ret = [];
for (let tx of txs) {
let full = await mainClient.blockchainTransaction_get(tx.tx_hash, true);
full.address = address;
for (let input of full.vin) {
// now we need to fetch previous TX where this VIN became an output, so we can see its amount
let prevTxForVin = await mainClient.blockchainTransaction_get(input.txid, true);
if (prevTxForVin && prevTxForVin.vout && prevTxForVin.vout[input.vout]) {
input.value = prevTxForVin.vout[input.vout].value;
// also, we extract destination address from prev output:
if (prevTxForVin.vout[input.vout].scriptPubKey && prevTxForVin.vout[input.vout].scriptPubKey.addresses) {
input.addresses = prevTxForVin.vout[input.vout].scriptPubKey.addresses;
}
}
}
for (let output of full.vout) {
if (output.scriptPubKey && output.scriptPubKey.addresses) output.addresses = output.scriptPubKey.addresses;
}
full.inputs = full.vin;
full.outputs = full.vout;
delete full.vin;
delete full.vout;
delete full.hex; // compact
delete full.hash; // compact
ret.push(full);
}
return ret;
};
/**
*
* @param addresses {Array}
* @param batchsize {Number}
* @returns {Promise<{balance: number, unconfirmed_balance: number, addresses: object}>}
*/
module.exports.multiGetBalanceByAddress = async function(addresses, batchsize) {
batchsize = batchsize || 100;
if (!mainClient) throw new Error('Electrum client is not connected');
let ret = { balance: 0, unconfirmed_balance: 0, addresses: {} };
let chunks = splitIntoChunks(addresses, batchsize);
for (let chunk of chunks) {
let scripthashes = [];
let scripthash2addr = {};
for (let addr of chunk) {
let script = bitcoin.address.toOutputScript(addr);
let hash = bitcoin.crypto.sha256(script);
let reversedHash = Buffer.from(reverse(hash));
reversedHash = reversedHash.toString('hex');
scripthashes.push(reversedHash);
scripthash2addr[reversedHash] = addr;
}
let balances = [];
if (disableBatching) {
for (let sh of scripthashes) {
let balance = await mainClient.blockchainScripthash_getBalance(sh);
balances.push({ result: balance, param: sh });
}
} else {
let toast = showStatus("Getting balances of addresses: " + scripthashes.length);
balances = await mainClient.blockchainScripthash_getBalanceBatch(scripthashes);
hideStatus(toast);
}
for (let bal of balances) {
ret.balance += +bal.result.confirmed;
ret.unconfirmed_balance += +bal.result.unconfirmed;
ret.addresses[scripthash2addr[bal.param]] = bal.result;
}
}
return ret;
};
module.exports.multiGetUtxoByAddress = async function(addresses, batchsize) {
batchsize = batchsize || 100;
if (!mainClient) throw new Error('Electrum client is not connected');
let ret = {};
let chunks = splitIntoChunks(addresses, batchsize);
for (let chunk of chunks) {
let scripthashes = [];
let scripthash2addr = {};
for (let addr of chunk) {
let script = bitcoin.address.toOutputScript(addr);
let hash = bitcoin.crypto.sha256(script);
let reversedHash = Buffer.from(reverse(hash));
reversedHash = reversedHash.toString('hex');
scripthashes.push(reversedHash);
scripthash2addr[reversedHash] = addr;
}
let results = [];
if (disableBatching) {
// ElectrumPersonalServer doesnt support `blockchain.scripthash.listunspent`
} else {
let toast = showStatus("Getting UTXO of addresses: " + scripthashes.length);
results = await mainClient.blockchainScripthash_listunspentBatch(scripthashes);
hideStatus(toast);
}
for (let utxos of results) {
ret[scripthash2addr[utxos.param]] = utxos.result;
for (let utxo of ret[scripthash2addr[utxos.param]]) {
utxo.address = scripthash2addr[utxos.param];
utxo.txId = utxo.tx_hash;
utxo.vout = utxo.tx_pos;
delete utxo.tx_pos;
delete utxo.tx_hash;
}
}
}
return ret;
};
module.exports.multiGetHistoryByAddress = async function(addresses, batchsize) {
batchsize = batchsize || 100;
if (!mainClient) throw new Error('Electrum client is not connected');
let ret = {};
let chunks = splitIntoChunks(addresses, batchsize);
for (let chunk of chunks) {
let scripthashes = [];
let scripthash2addr = {};
for (let addr of chunk) {
let script = bitcoin.address.toOutputScript(addr);
let hash = bitcoin.crypto.sha256(script);
let reversedHash = Buffer.from(reverse(hash));
reversedHash = reversedHash.toString('hex');
scripthashes.push(reversedHash);
scripthash2addr[reversedHash] = addr;
}
let results = [];
if (disableBatching) {
for (let sh of scripthashes) {
let history = await mainClient.blockchainScripthash_getHistory(sh);
results.push({ result: history, param: sh });
}
} else {
let toast = showStatus("Getting history of addresses: " + scripthashes.length);
results = await mainClient.blockchainScripthash_getHistoryBatch(scripthashes);
hideStatus(toast);
}
for (let history of results) {
ret[scripthash2addr[history.param]] = history.result;
if (history.result[0]) txhashHeightCache[history.result[0].tx_hash] = history.result[0].height; // cache tx height
for (let hist of ret[scripthash2addr[history.param]]) {
hist.address = scripthash2addr[history.param];
}
}
}
return ret;
};
function txNeedUpdate(tx) {
return (!tx || !tx.confirmations || tx.confirmations < 10)
}
module.exports.multiGetTransactionByTxid = async function(txids, batchsize, verbose, cb) {
batchsize = batchsize || 45;
// this value is fine-tuned so althrough wallets in test suite will occasionally
// throw 'response too large (over 1,000,000 bytes', test suite will pass
verbose = verbose !== false;
if (!mainClient) throw new Error('Electrum client is not connected');
let ret = {};
txids = [...new Set(txids)]; // deduplicate just for any case
// Filter out those already in cache.
let txidsToFetch;
let cachedTxs = await BlueApp.getMultiTxFromDisk(txids);
txidsToFetch = txids.filter(t => txNeedUpdate(cachedTxs[t]));
let totalToFetch = txidsToFetch.length;
let fetched = 0;
let chunks = splitIntoChunks(txidsToFetch, batchsize);
for (let chunk of chunks) {
let results = [];
if (disableBatching) {
for (let txid of chunk) {
try {
// in case of ElectrumPersonalServer it might not track some transactions (like source transactions for our transactions)
// so we wrap it in try-catch
let tx = await mainClient.blockchainTransaction_get(txid, verbose);
if (typeof tx === 'string' && verbose) {
// apparently electrum server (EPS?) didnt recognize VERBOSE parameter, and sent us plain txhex instead of decoded tx.
// lets decode it manually on our end then:
tx = txhexToElectrumTransaction(tx);
if (txhashHeightCache[txid]) {
// got blockheight where this tx was confirmed
tx.confirmations = this.estimateCurrentBlockheight() - txhashHeightCache[txid];
if (tx.confirmations < 0) {
// ugly fix for when estimator lags behind
tx.confirmations = 1;
}
tx.time = this.calculateBlockTime(txhashHeightCache[txid]);
tx.blocktime = this.calculateBlockTime(txhashHeightCache[txid]);
}
}
results.push({ result: tx, param: txid });
} catch (_) {}
}
} else {
let toast = showStatus("Getting txs: " + chunk.length);
results = await mainClient.blockchainTransaction_getBatch(chunk, verbose);
if (cb) {
fetched += chunk.length;
cb(totalToFetch, fetched);
}
hideStatus(toast);
}
let txsToSave = [];
for (let txdata of results) {
if (txdata.error && txdata.error.code === -32600) {
// response too large
// lets do single call, that should go through okay:
let toast = showStatus("Getting txs again");
txdata.result = await mainClient.blockchainTransaction_get(txdata.param, verbose);
hideStatus(toast);
}
ret[txdata.param] = txdata.result;
// Tx to save
txsToSave.push([txdata.param, txdata.result]);
}
// Save the txs to cache.
await BlueApp.saveMultiTxToDisk(txsToSave);
}
// Fill in those in the cache.
for (let t of txids) {
if (!ret[t]) {
ret[t] = cachedTxs[t];
}
}
return ret;
};
// Kevacoin specific API, with input, output addresses and values.
module.exports.multiGetTransactionInfoByTxid = async function(txids, batchsize, namespace_info) {
batchsize = batchsize || 50;
namespace_info = namespace_info !== false;
if (!mainClient) throw new Error('Electrum client is not connected');
let ret = {};
txids = [...new Set(txids)]; // deduplicate just for any case
// Filter out those already in cache.
let txidsToFetch;
let cachedTxs = await BlueApp.getMultiTxFromDisk(txids);
// cachedTxs[t].o is the new format.
txidsToFetch = txids.filter(t => (!cachedTxs[t] || !cachedTxs[t].o || cachedTxs[t].h < 0));
let chunks = splitIntoChunks(txidsToFetch, batchsize);
for (let chunk of chunks) {
let results = [];
results = await mainClient.blockchainKeva_getTransactionsInfo(chunk, namespace_info);
let txsToSave = [];
let index = 0;
for (let txdata of results) {
const tx_hash = chunk[index];
ret[tx_hash] = txdata;
// Tx to save
txsToSave.push([tx_hash, txdata]);
index ++;
}
// Save the txs to cache.
await BlueApp.saveMultiTxToDisk(txsToSave);
}
// Fill in those in the cache.
for (let t of txids) {
if (!ret[t]) {
ret[t] = cachedTxs[t];
}
}
return ret;
};
/**
* Simple waiter till `mainConnected` becomes true (which means
* it Electrum was connected in other function), or timeout 30 sec.
*
*
* @returns {Promise<Promise<*> | Promise<*>>}
*/
module.exports.waitTillConnected = async function() {
let waitTillConnectedInterval = false;
let retriesCounter = 0;
return new Promise(function(resolve, reject) {
waitTillConnectedInterval = setInterval(() => {
if (mainConnected) {
clearInterval(waitTillConnectedInterval);
resolve(true);
}
if (wasConnectedAtLeastOnce && mainClient.status === 1) {
clearInterval(waitTillConnectedInterval);
mainConnected = true;
resolve(true);
}
if (retriesCounter++ >= 30) {
clearInterval(waitTillConnectedInterval);
reject(new Error('Waiting for Electrum connection timeout'));
}
}, 500);
});
};
module.exports.estimateFees = async function() {
const fast = await module.exports.estimateFee(1);
const medium = await module.exports.estimateFee(18);
const slow = await module.exports.estimateFee(144);
return { fast, medium, slow };
};
/**
* Returns the estimated transaction fee to be confirmed within a certain number of blocks
*
* @param numberOfBlocks {number} The number of blocks to target for confirmation
* @returns {Promise<number>} Satoshis per byte
*/
module.exports.estimateFee = async function(numberOfBlocks) {
if (!mainClient) throw new Error('Electrum client is not connected');
numberOfBlocks = numberOfBlocks || 1;
let coinUnitsPerKilobyte = await mainClient.blockchainEstimatefee(numberOfBlocks);
if (coinUnitsPerKilobyte === -1) return 1;
return Math.round(
new BigNumber(coinUnitsPerKilobyte)
.dividedBy(1024)
.multipliedBy(100000000)
.toNumber(),
);
};
module.exports.serverFeatures = async function() {
if (!mainClient) throw new Error('Electrum client is not connected');
return mainClient.server_features();
};
module.exports.broadcast = async function(hex) {
if (!mainClient) throw new Error('Electrum client is not connected');
try {
const broadcast = await mainClient.blockchainTransaction_broadcast(hex);
return broadcast;
} catch (error) {
return error;
}
};
module.exports.broadcastV2 = async function(hex) {
if (!mainClient) throw new Error('Electrum client is not connected');
return mainClient.blockchainTransaction_broadcast(hex);
};
module.exports.estimateCurrentBlockheight = function() {
const baseTs = 1587570465609; // uS
const baseHeight = 627179;
return Math.floor(baseHeight + (+new Date() - baseTs) / 1000 / 60 / 9.5);
};
/**
*
* @param height
* @returns {number} Timestamp in seconds
*/
module.exports.calculateBlockTime = function(height) {
const baseTs = 1585837504; // sec
const baseHeight = 624083;
return baseTs + (height - baseHeight) * 10 * 60;
};
/**
*
* @param host
* @param tcpPort
* @param sslPort
* @returns {Promise<boolean>} Whether provided host:port is a valid electrum server
*/
module.exports.testConnection = async function(host, tcpPort, sslPort) {
let client = new ElectrumClient(sslPort || tcpPort, host, sslPort ? 'tls' : 'tcp');
try {
await client.connect();
await client.server_version('2.7.11', '1.4');
await client.server_ping();
client.close();
return true;
} catch (_) {
return false;
}
};
module.exports.forceDisconnect = () => {
mainClient.close();
};
module.exports.hardcodedPeers = hardcodedPeers;
let splitIntoChunks = function(arr, chunkSize) {
let groups = [];
let i;
for (i = 0; i < arr.length; i += chunkSize) {
groups.push(arr.slice(i, i + chunkSize));
}
return groups;
};
function txhexToElectrumTransaction(txhex) {
let tx = bitcoin.Transaction.fromHex(txhex);
let ret = {
txid: tx.getId(),
hash: tx.getId(),
version: tx.version,
size: Math.ceil(txhex.length / 2),
vsize: tx.virtualSize(),
weight: tx.weight(),
locktime: tx.locktime,
vin: [],
vout: [],
hex: txhex,
blockhash: '',
confirmations: 0,
time: 0,
blocktime: 0,
};
for (let inn of tx.ins) {
let txinwitness = [];
if (inn.witness[0]) txinwitness.push(inn.witness[0].toString('hex'));
if (inn.witness[1]) txinwitness.push(inn.witness[1].toString('hex'));
ret.vin.push({
txid: reverse(inn.hash).toString('hex'),
vout: inn.index,
scriptSig: { hex: inn.script.toString('hex'), asm: '' },
txinwitness,
sequence: inn.sequence,
});
}
let n = 0;
for (let out of tx.outs) {
let value = new BigNumber(out.value).dividedBy(100000000).toNumber();
let address = false;
let type = false;
if (SegwitBech32Wallet.scriptPubKeyToAddress(out.script.toString('hex'))) {
address = SegwitBech32Wallet.scriptPubKeyToAddress(out.script.toString('hex'));
type = 'witness_v0_keyhash';
} else if (SegwitP2SHWallet.scriptPubKeyToAddress(out.script.toString('hex'))) {
address = SegwitP2SHWallet.scriptPubKeyToAddress(out.script.toString('hex'));
type = '???'; // TODO
} else if (LegacyWallet.scriptPubKeyToAddress(out.script.toString('hex'))) {
address = LegacyWallet.scriptPubKeyToAddress(out.script.toString('hex'));
type = '???'; // TODO
}
ret.vout.push({
value,
n,
scriptPubKey: {
asm: '',
hex: out.script.toString('hex'),
reqSigs: 1, // todo
type,
addresses: [address],
},
});
n++;
}
return ret;
}
module.exports.blockchainTransaction_get = async function(tx_hash, verbose) {
const cachedTx = await BlueApp.getTxFromDisk(tx_hash);
if (cachedTx) {
return cachedTx;
}
const tx = await mainClient.blockchainTransaction_get(tx_hash, verbose);
if (tx) {
await BlueApp.saveTxToDisk(tx_hash, tx);
}
return tx;
}
module.exports.blockchainTransaction_getBatch = async function(tx_hash, verbose) {
return await mainClient.blockchainTransaction_getBatch(tx_hash, verbose);
}
module.exports.blockchainScripthash_getHistory = async function(scriptHash) {
return await mainClient.blockchainScripthash_getHistory(scriptHash);
}
module.exports.blockchainTransaction_getMerkle = async function(txid, height, merkel) {
return await mainClient.blockchainTransaction_getMerkle(txid, height, merkel);
}
module.exports.blockchainScripthash_getHistoryBatch = async function(scriptHashes) {
return await mainClient.blockchainScripthash_getHistoryBatch(scriptHashes);
}
module.exports.blockchainTransaction_idFromPos = async function(height, pos) {
let txid = await BlueApp.getTxIdFromPos(height, pos);
if (txid) {
return txid;
}
txid = await mainClient.blockchainTransaction_idFromPos(height, pos);
if (txid) {
await BlueApp.savePosTxId(height, pos, txid);
}
return txid;
}
module.exports.blockchainKeva_getHashtag = async function(scripthash, min_tx_num=-1) {
return await mainClient.blockchainKeva_getHashtag(scripthash, min_tx_num);
}
module.exports.blockchainKeva_getKeyValues = async function(scripthash, min_tx_num=-1) {
return await mainClient.blockchainKeva_getKeyValues(scripthash, min_tx_num);
}
module.exports.blockchainKeva_getKeyValueReactions = async function(tx_hash, min_tx_num=-1) {
return await mainClient.blockchainKeva_getKeyValueReactions(tx_hash, min_tx_num);
}
module.exports.blockchainKeva_getTransactionsInfo = async function(tx_hashes, namespace_info=false) {
return await mainClient.blockchainKeva_getTransactionsInfo(tx_hashes, namespace_info);
}
module.exports.blockchainBlock_count = async function() {
return await mainClient.blockchainBlock_count();
}
module.exports.getCurrentPeer = getCurrentPeer;