This repository has been archived by the owner on Mar 6, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsmartcashapi.js
586 lines (497 loc) · 19.3 KB
/
smartcashapi.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
/* Smart Cash API calls. */
const electron = require('electron')
const request = require('request')
const smartcash = require('smartcashjs-lib')
const rpc = require('./rpc-client')
const http = require('http')
const util = require('util')
const Store = require('electron-store')
const {watch} = require('melanke-watchjs')
const debugUtils = require('./debug-utils')
const delayedCall = require('delayed-call')
const smartcashExplorer = "https://insight.smartcash.cc/api"
let db = new Store({name: "smart-sweeper"})
let reqPerMin
global.smartcashCallbackInfo = new Map() // keeps track of API callback vars per function call
function init() {}
/* Generic API callback function. */
let smartcashCallback = function(resp, functionName, projectInfo, callback = null) {
var referrer = projectInfo.referrer
var apiCallbackInfo = global.smartcashCallbackInfo.get(referrer+projectInfo.projectID)
if (debugUtils.DEBUG) {
console.log('smartcashCallback referrer: ', referrer)
console.log('apiCallbackInfo ID: ', referrer+projectInfo.projectID)
//console.log('apiCallbackInfo: ', apiCallbackInfo)
//console.log('resp: ', resp)
console.log()
}
if (resp.type === "data") {
if (functionName === "sweepFunds") {
if (referrer === "sweepFundsAddrBalance") {
global.sharedObject.blockExplorerError = false
if (resp.msg.body.balance == 0) {
apiCallbackInfo.project.recvAddrs.forEach(function(address, key) {
if (address.publicKey == resp.msg.body.address)
address.claimed = true
})
}
}
}
// once all of a project's promotional wallets have been processed, send data back to the initiator
apiCallbackInfo.apiCallbackCounter++
var apiCallbackCounter = apiCallbackInfo.apiCallbackCounter
if (functionName === "sendFunds") {
if ((referrer === "sendFundsCheck") && (apiCallbackCounter == apiCallbackInfo.totalTxs)) {
global.sharedObject.rpcError = false
doSend(apiCallbackInfo.transactions, projectInfo, callback)
}
}
else if (functionName === "sweepFunds") {
if ((referrer === "sweepFundsAddrBalance") && (apiCallbackCounter == apiCallbackInfo.totalAddrs)) {
global.availableProjects.list[projectInfo.projectIndex] = apiCallbackInfo.project // update project info
db.set('projects', global.availableProjects)
doSweep(projectInfo, callback)
}
}
}
else if (resp.type === "error") {
if (debugUtils.DEBUG) {
console.log('smartcashapi.js error block')
console.log('error msg: ', resp.msg)
}
if (referrer === "sendFundsCheck") {
global.sharedObject.rpcError = true
}
else if (referrer === "sweepFundsAddrBalance") {
global.sharedObject.blockExplorerError = true
}
callback({type: 'error', msg: resp.msg}, functionName, projectInfo)
}
}
/* Check a SmartCash address for validity. */
function checkAddress(address) {
try {
smartcash.address.fromBase58Check(address)
return true
}
catch(err) {
return false
}
}
/* Check the balance for a given address. */
function checkBalance(projectInfo, callback) {
request({
url: smartcashExplorer + '/addr/' + projectInfo.address,
method: 'GET',
json: true
}, function (err, resp, body) {
/*if (debugUtils.DEBUG) {
console.log('checkBalance')
console.log(err)
console.log(body)
}*/
if (resp && (resp.headers['content-type'].indexOf('json') != -1) && (typeof body === "string"))
body = JSON.parse(body)
if (resp && err == null && body.error === undefined) {
var balance
if (body.transactions && body.transactions.length > 0)
balance = body.balance
else if (body.balance !== undefined)
balance = 0
else
balance = null
callback({type: 'data', msg: balance}, 'checkBalance', projectInfo)
}
else {
if (debugUtils.DEBUG) {
console.log('checkBalance')
console.log(err)
}
var error
if (err)
error = err
else if (body.error)
error = body.error
else
error = body
callback({type: 'error', msg: error}, 'checkBalance', projectInfo)
}
})
}
/* Check all project transactions and get the vouts. */
function checkSendInputs(txid, projectInfo, callback) {
var getTxInfoCmd = {
method: 'getrawtransaction',
params: [txid, 1]
}
rpc.sendCmd(getTxInfoCmd, function(err, resp) {
/*if (debugUtils.DEBUG) {
console.log('sendFunds')
console.log(err)
console.log(resp)
}*/
if (err) {
smartcashCallback({type: 'error', msg: resp}, 'sendFunds', projectInfo, callback)
}
else {
var newTx
// add inputs
resp.vout.forEach(function(vout, voutIndex) {
if (vout.scriptPubKey.addresses.includes(projectInfo.fromAddr)) {
newTx = {
'txid': txid,
'vout': vout.n
}
global.smartcashCallbackInfo.get(projectInfo.referrer+projectInfo.projectID).transactions.push(newTx)
}
})
smartcashCallback({type: 'data', msg: ''}, 'sendFunds', projectInfo, callback)
}
})
}
/* Check the balance of each promo wallet to sweep to make sure it's not zero. */
function checkSweepInputs(address, projectInfo, callback) {
request({
url: smartcashExplorer + '/addr/' + address.publicKey,
method: 'GET',
json: true
}, function (err, resp, body) {
if (resp && (resp.headers['content-type'].indexOf('json') != -1) && (typeof body === "string"))
body = JSON.parse(body)
if (resp && err == null && resp.body.error === undefined) {
smartcashCallback({type: 'data', msg: resp}, 'sweepFunds', projectInfo, callback)
}
else {
var error
if (err)
error = err
else if (body.error)
error = body.error
else
error = body
callback({type: 'error', msg: error}, 'sweepFunds', projectInfo)
}
})
}
/* Check the status of a transaction. */
function checkTransaction(projectInfo, callback) {
/*if (debugUtils.DEBUG) {
console.log('checkTransaction')
console.log('PROJECT INFO: ', projectInfo)
}*/
var txArray = []
if (typeof projectInfo.txid === "string") {
var obj = {}
obj[projectInfo.txid] = false
txArray.push(obj)
}
else {
txArray = projectInfo.txid
}
var txid
var cmd
if (global.smartcashCallbackInfo.get(projectInfo.referrer) === undefined) {
if (projectInfo.referrer !== "checkFundingTxids")
global.smartcashCallbackInfo.delete(projectInfo.referrer)
global.smartcashCallbackInfo.set(projectInfo.referrer, {
apiCallbackCounter: 0,
txCounter: 0,
confirmedTxFlag: 0
})
}
txArray.forEach(function(tx, key) {
confirmedTxFlag = 0
txid = Object.keys(tx)[0]
cmd = {
method: 'getrawtransaction',
params: [txid, 1]
}
//console.log('cmd: ', cmd)
rpc.sendCmd(cmd, function(err, resp) {
/*if (debugUtils.DEBUG) {
console.log(err)
console.log(resp)
console.log('txid: ', cmd.params[0])
console.log('resp.confirmations: ', resp.confirmations)
}*/
global.smartcashCallbackInfo.get(projectInfo.referrer).txCounter++
if (!err) {
if (resp.confirmations !== undefined)
callback({type: 'data', msg: resp}, 'checkTransaction', projectInfo)
/*else
callback({type: 'error', msg: 'Invalid transaction id.' + util.format(' (%s)', txid)}, 'checkTransaction', projectInfo)*/
}
else {
callback({type: 'error', msg: resp}, 'checkTransaction', projectInfo)
}
})
})
}
/* Actually fund the promo wallets. */
function doSend(transactions, projectInfo, callback) {
projectInfo.referrer = "sendPromotionalFunds"
var receivers = projectInfo.toAddr
var outputs = {}
// add outputs
receivers.forEach(function(address, key) {
outputs[address] = projectInfo.amtPerWallet
})
var createTxCmd = {
method: 'createrawtransaction',
params: [transactions, outputs]
}
rpc.sendCmd(createTxCmd, function(err, resp) {
if (err) {
callback({type: 'error', msg: resp}, 'sendFunds', projectInfo)
}
else {
/*if (debugUtils.DEBUG) {
var decodeTxCmd = {
method: 'decoderawtransaction',
params: [resp]
}
rpc.sendCmd(decodeTxCmd, function(err, resp) {
console.log("decoderawtransaction resp: ", resp)
console.log("decoderawtransaction resp vin: ", resp.vin)
})
}*/
var signTxCmd = {
method: 'signrawtransaction',
params: [resp, null, [projectInfo.fromPK]]
}
rpc.sendCmd(signTxCmd, function(err, resp) {
if (err) {
callback({type: 'error', msg: resp}, 'sendFunds', projectInfo)
}
else if (resp.complete) {
var sendTxCmd = {
method: 'sendrawtransaction',
params: [resp.hex]
}
rpc.sendCmd(sendTxCmd, function(err, resp) {
if (debugUtils.DEBUG) {
console.log(err)
console.log(resp)
}
if (err) {
callback({type: 'error', msg: resp}, 'sendFunds', projectInfo)
}
else {
callback({type: 'data', msg: resp}, 'sendFunds', projectInfo)
}
})
}
})
}
global.smartcashCallbackInfo.delete(referrer+projectInfo.projectID)
})
}
/* Actually sweep the funds. */
function doSweep(projectInfo, callback) {
var referrer = "sweepFundsAddrBalance"
var project = projectInfo.project
projectInfo.referrer = "sweepFunds"
var unclaimedWallets = []
var unclaimedWalletsPKs = []
var txArray = []
var newTx
var transactions = []
var outputs = {}
// put all unclaimed wallets in a separate array
project.recvAddrs.forEach(function(address, addressKey) {
if (!address.claimed) {
unclaimedWallets.push(address.publicKey)
unclaimedWalletsPKs.push(address.privateKey)
}
})
var getTxInfoCmd = {
method: 'getrawtransaction',
params: [project.recvAddrs[0].sentTxid, 1]
}
rpc.sendCmd(getTxInfoCmd, function(err, resp) {
if (err) {
callback({type: 'error', msg: resp}, 'sweepFunds', projectInfo)
}
else {
resp.vout.forEach(function(vout, voutIndex) {
unclaimedWallets.forEach(function(address, addrIndex) {
if (vout.scriptPubKey.addresses.includes(address)) {
transactions.push({
'txid': resp.txid,
'vout': vout.n
})
}
})
})
outputs[project.sweepAddr] = (project.addrAmt * transactions.length) - projectInfo.txFee
var createTxCmd = {
method: 'createrawtransaction',
params: [transactions, outputs]
}
rpc.sendCmd(createTxCmd, function(err, resp) {
if (err) {
callback({type: 'error', msg: resp}, 'sweepFunds', projectInfo)
}
else {
/*if (debugUtils.DEBUG) {
var decodeTxCmd = {
method: 'decoderawtransaction',
params: [resp]
}
rpc.sendCmd(decodeTxCmd, function(err, resp) {
console.log("decoderawtransaction resp: ", resp)
})
}*/
signTxCmd = {
method: 'signrawtransaction',
params: [resp, null, unclaimedWalletsPKs]
}
rpc.sendCmd(signTxCmd, function(err, resp) {
if (err) {
callback({type: 'error', msg: resp}, 'sweepFunds', projectInfo)
}
else if (resp.complete) {
var sendTxCmd = {
method: 'sendrawtransaction',
params: [resp.hex]
}
rpc.sendCmd(sendTxCmd, function(err, resp) {
if (debugUtils.DEBUG) {
console.log(err)
console.log(resp)
}
if (err) {
callback({type: 'error', msg: resp}, 'sweepFunds', projectInfo)
}
else {
callback({type: 'data', msg: resp}, 'sweepFunds', projectInfo)
}
})
}
})
}
})
}
global.smartcashCallbackInfo.delete(referrer+projectInfo.projectID)
})
}
/* Generate a random public/private key pair. */
function generateAddress() {
var ecPair = smartcash.ECPair.makeRandom()
var privateKey = ecPair.toWIF()
var publicKey = ecPair.getAddress()
return {privateKey: privateKey, publicKey: publicKey}
}
/* Get information for a given address. */
function getAddressInfo(projectInfo, callback) {
request({
url: smartcashExplorer + '/addr/' + projectInfo.address,
method: 'GET',
json: true
}, function (err, resp, body) {
/*if (debugUtils.DEBUG) {
console.log('getAddressInfo')
console.log(err)
console.log(body)
}*/
if (resp && (resp.headers['content-type'].indexOf('json') != -1) && (typeof body === "string"))
body = JSON.parse(body)
if (resp && err == null && body.error === undefined) {
callback({type: 'data', msg: body}, 'getAddressInfo', projectInfo)
}
else {
/*if (debugUtils.DEBUG) {
console.log('getAddressInfo')
console.log(err)
}*/
var error
if (err)
error = err
else if (body.error)
error = body.error
else
error = body
callback({type: 'error', msg: error}, 'getAddressInfo', projectInfo)
}
})
}
/* Send funds from one address to another. */
function sendFunds(projectInfo, callback) {
// get all transactions associated with the project address
request({
url: smartcashExplorer + '/addr/' + projectInfo.fromAddr,
method: 'GET',
json: true
}, function (err, resp, body) {
/*if (debugUtils.DEBUG) {
console.log('sendFunds')
console.log(body)
}*/
if (resp && (resp.headers['content-type'].indexOf('json') != -1) && (typeof body === "string"))
body = JSON.parse(body)
if (resp && err == null && body.error === undefined) {
// check to see if there is enough in the balance to cover the amount to send
if (body.balance >= projectInfo.amtToSend) {
var txArray = []
resp.body.transactions.forEach(function(tx, n) {
txArray.push(tx)
})
global.smartcashCallbackInfo.set('sendFundsCheck'+projectInfo.projectID, {
apiCallbackCounter: 0,
totalTxs: txArray.length,
transactions: []
})
projectInfo.referrer = "sendFundsCheck"
txArray.forEach(function(txid, txIndex) {
delayedCall.create(global.rpcFunctionDelay, checkSendInputs, txid, projectInfo, callback)
})
}
else {
callback({type: 'error', msg: "Insufficient funds."}, 'sendFunds', projectInfo)
}
}
else {
if (debugUtils.DEBUG) {
console.log('sendFunds error: ')
console.log(err)
}
var error
if (err)
error = err
else if (body.error)
error = body.error
else
error = body
callback({type: 'error', msg: error}, 'sendFunds', projectInfo)
}
})
}
/* Sweep (send) funds back from the promotional wallet addresses. */
function sweepFunds(projectInfo, callback) {
var project = projectInfo.project
projectInfo.projectName = project.name
var receiver = project.sweepAddr
if (global.smartcashCallbackInfo.get('sweepFundsAddrBalance'+project.id) === undefined) {
global.smartcashCallbackInfo.set('sweepFundsAddrBalance'+project.id, {
apiCallbackCounter: 0,
totalAddrs: project.recvAddrs.length,
project: project
})
}
//console.log(global.smartcashCallbackInfo)
// check the balance of each "unclaimed" promotional wallet to make sure they're still unclaimed
projectInfo.referrer = "sweepFundsAddrBalance"
project.recvAddrs.forEach(function(address, key) {
delayedCall.create(global.explorerFunctionDelay, checkSweepInputs, address, projectInfo, callback)
})
}
module.exports = {
init: init,
checkAddress: checkAddress,
checkBalance: checkBalance,
checkTransaction: checkTransaction,
generateAddress: generateAddress,
getAddressInfo: getAddressInfo,
sendFunds: sendFunds,
sweepFunds: sweepFunds
};