-
Notifications
You must be signed in to change notification settings - Fork 10
/
obyte.js
626 lines (558 loc) · 23.3 KB
/
obyte.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
"use strict";
const eventBus = require('ocore/event_bus.js');
const conf = require('ocore/conf.js');
const aa_composer = require('ocore/aa_composer.js');
const network = require('ocore/network.js');
const walletGeneral = require("ocore/wallet_general.js");
const mutex = require('ocore/mutex.js');
const string_utils = require("ocore/string_utils.js");
const db = require('ocore/db.js');
const balances = require('ocore/balances.js');
const validationUtils = require('ocore/validation_utils.js');
const constants = require('ocore/constants.js');
const headlessWallet = require('headless-obyte');
const dag = require('aabot/dag.js');
const operator = require('aabot/operator.js');
const notifications = require('./notifications.js');
const transfers = require('./transfers.js');
const { watchForDeadlock, getVersion } = require('./utils.js');
let bCreated = false;
class Obyte {
network = "Obyte";
async getMyBalance(asset) {
const my_balances = await operator.readBalances();
return my_balances[asset] ? my_balances[asset].total : 0;
}
async getBalance(address, asset, bExternalAddress) {
if (bExternalAddress) {
const balances = await dag.readBalance(address);
return balances[asset] ? balances[asset].total : 0;
}
return new Promise(resolve => balances.readOutputsBalance(address, assocBalances => resolve(assocBalances[asset] ? assocBalances[asset].total : 0)));
}
async getTransaction(txid) {
return await dag.readJoint(txid);
}
async getLastStableTimestamp() {
const { timestamp } = await dag.getLastStableUnitProps();
return timestamp;
}
getMinTransferAge() {
return conf.obyte_min_transfer_age; // after MCI timestamp, which is backdated when the AA trigger is processed
}
async getMinReward(type, claimed_asset, src_network, src_asset, bWithAssistant, bCached) {
return 0;
}
getMyAddress() {
return operator.getAddress();
}
isMyAddress(address) {
return address === operator.getAddress();
}
isValidAddress(address) {
return validationUtils.isValidAddress(address);
}
isValidTxid(txid) {
return validationUtils.isValidBase64(txid, constants.HASH_LENGTH);
}
isValidNonnativeAsset(asset) {
return this.isValidTxid(asset);
}
isValidAsset(asset) {
return asset === 'base' || this.isValidNonnativeAsset(asset);
}
isValidData(data) {
if (!data)
return true;
try {
JSON.parse(data);
return true;
}
catch (e) {
console.log(`invalid data`, data, e);
return false;
}
}
// both are strings
dataMatches(sent_data, claimed_data) {
if (sent_data === claimed_data)
return true;
try {
// it's ok if the object was json-stringified without sorting when sending.
// there is a degree of freedom when sending but not when claiming as the data is part of the hash
const obj_sent_data = JSON.parse(sent_data);
const sorted_sent_data = string_utils.getJsonSourceString(obj_sent_data, false);
console.log('sorted sent data', sorted_sent_data);
return sorted_sent_data === claimed_data;
}
catch (e) {
console.log(`error in dataMatches`, e);
return false;
}
}
async getClaim(bridge_aa, claim_num, bFinished, bThrowIfNotFound) {
const prefix = bFinished ? 'f_' : 'o_';
const claim = await dag.readAAStateVar(bridge_aa, prefix + claim_num);
if (!claim) {
if (bThrowIfNotFound)
throw Error(`${prefix} claim ${claim_num} not found in DAG`);
return null;
}
return claim;
}
async getMyStake(bridge_aa, claim_num, outcome, assistant_aa) {
const my_stake = await dag.readAAStateVar(bridge_aa, claim_num + '_' + outcome + '_by_' + (assistant_aa || operator.getAddress()));
return my_stake || 0;
}
async getRequiredStake(bridge_aa, amount) {
return await dag.executeGetter(bridge_aa, 'get_required_stake', [amount.toNumber()]);
}
async getMinTxAge(bridge_aa) {
return await dag.executeGetter(bridge_aa, 'get_min_tx_age');
}
async sendClaim({ bridge_aa, amount, reward, claimed_asset, stake, staked_asset, sender_address, dest_address, data, txid, txts }) {
amount = amount.toNumber();
reward = reward.toNumber();
stake = stake.toNumber();
const trigger_data = {
sender_address,
amount,
reward,
txid,
txts,
};
if (data)
trigger_data.data = JSON.parse(data);
if (dest_address)
trigger_data.address = dest_address;
const bThirdPartyClaiming = (dest_address && dest_address !== operator.getAddress());
const paid_amount = bThirdPartyClaiming ? (amount - reward) : 0;
let amountsByAsset = {};
if (claimed_asset === staked_asset)
amountsByAsset[staked_asset] = paid_amount + stake;
else {
amountsByAsset[staked_asset] = stake;
if (bThirdPartyClaiming)
amountsByAsset[claimed_asset] = paid_amount;
}
if (staked_asset === 'base')
amountsByAsset[staked_asset] += 2000;
const claim_txid = await dag.sendPayment({
to_address: bridge_aa,
amountsByAsset,
data: trigger_data,
is_aa: true,
});
console.log(`sent claim for ${amount} with reward ${reward} sent in tx ${txid} from ${sender_address}: ${claim_txid}`);
return claim_txid;
}
async sendClaimFromPooledAssistant({ assistant_aa, amount, reward, sender_address, dest_address, data, txid, txts }) {
if (!dest_address)
throw Error(`no dest address in assistant claim`);
// if (dest_address === operator.getAddress())
// throw Error(`assistant claim for oneself`);
amount = amount.toNumber();
reward = reward.toNumber();
let trigger_data = {
address: dest_address,
sender_address,
amount,
reward,
txid,
txts,
};
if (data)
trigger_data.data = JSON.parse(data);
const claim_txid = await dag.sendAARequest(assistant_aa, trigger_data);
console.log(`sent assistant claim for ${amount} with reward ${reward} sent in tx ${txid} from ${sender_address}: ${claim_txid}`);
return claim_txid;
}
async sendChallenge(bridge_aa, claim_num, stake_on, asset, counterstake) {
const txid = await dag.sendPayment({
to_address: bridge_aa,
asset: asset,
amount: counterstake.toNumber() + (asset === 'base' ? 2000 : 0), // ethers.BigNumber
data: { stake_on, claim_num },
is_aa: true,
});
console.log(`sent counterstake ${counterstake} for "${stake_on}" to challenge claim ${claim_num}: ${txid}`);
return txid;
}
async sendChallengeFromPooledAssistant(assistant_aa, claim_num, stake_on, counterstake) {
const txid = await dag.sendAARequest(assistant_aa, { stake_on, claim_num, stake: counterstake.toNumber() });
console.log(`sent assistant counterstake ${counterstake} for "${stake_on}" to challenge claim ${claim_num}: ${txid}`);
return txid;
}
async sendWithdrawalRequest(bridge_aa, claim_num, to_address) {
let data = { withdraw: 1, claim_num };
if (to_address)
data.address = to_address;
const txid = await dag.sendAARequest(bridge_aa, data);
console.log(`sent withdrawal request on claim ${claim_num} to ${to_address || 'self'}: ${txid}`);
return txid;
}
async sendPayment(asset, address, amount, recipient_device_address) {
if (amount === 'all') {
if (asset !== 'base')
throw Error(`sendPayment all for asset ${asset}`);
const { unit } = await headlessWallet.sendAllBytes(address, recipient_device_address);
console.log(`sent all bytes to ${address}: ${unit}`);
return unit;
}
if (typeof amount !== 'number')
amount = amount.toNumber();
let opts = {
to_address: address,
amount,
paying_addresses: [operator.getAddress()],
change_address: operator.getAddress(),
spend_unconfirmed: 'all',
recipient_device_address,
};
if (asset && asset !== 'base')
opts.asset = asset;
const { unit } = await headlessWallet.sendMultiPayment(opts);
console.log(`sent payment ${amount} ${asset} to ${address}: ${unit}`);
return unit;
}
startWatchingExportAA(export_aa) {
startWatchingAA(export_aa);
}
startWatchingImportAA(import_aa) {
startWatchingAA(import_aa);
}
startWatchingExportAssistantAA(export_aa) {
startWatchingAA(export_aa);
}
startWatchingImportAssistantAA(import_aa) {
startWatchingAA(import_aa);
}
async onAAResponse(objAAResponse) {
const unlock = await mutex.lock('onAAResponse');
console.log(`AA response:`, JSON.stringify(objAAResponse, null, 2));
const { aa_address, trigger_address, trigger_unit, response_unit, response, timestamp, bounced } = objAAResponse;
if (!timestamp)
throw Error(`no timestamp in AA response`);
if (bounced && trigger_address === operator.getAddress()) {
transfers.forgetUnconfirmedClaim(trigger_unit);
return unlock(`=== our request ${trigger_unit} bounced with error ` + response.error);
}
if (bounced)
return unlock(`skipping bounced request ${trigger_unit} ` + response.error);
// if (objAAResponse.trigger_address === operator.getAddress())
// return console.log(`skipping our request ${objAAResponse.trigger_unit}`);
const { responseVars } = response;
const objJoint = await dag.readJoint(trigger_unit);
const objUnit = objJoint.unit;
const trigger = aa_composer.getTrigger(objUnit, aa_address);
if (!trigger.data)
return unlock(`no data message in trigger ${trigger_unit}`);
// updated symbol
if (aa_address === conf.token_registry_aa) {
if (!response_unit)
return unlock(`no response unit from token registry, trigger ${trigger_unit}`);
const objResponseJoint = await dag.readJoint(response_unit);
const objResponseUnit = objResponseJoint.unit;
const dataMessage = objResponseUnit.messages.find(m => m.app === 'data');
if (!dataMessage)
return unlock(`no data message in response from token registry, trigger ${trigger_unit}`);
const { asset, name } = dataMessage.payload;
if (!asset || !name)
return unlock(`no asset or name in response from token registry, trigger ${trigger_unit}`);
const rows = await db.query("SELECT bridge_id, home_asset=? AS is_home FROM bridges WHERE home_asset=? OR foreign_asset=?", [asset, asset, asset]);
if (rows.length > 0) { // the asset can be exported through several bridges
for (let { bridge_id, is_home } of rows) {
const field = is_home ? 'home_symbol' : 'foreign_symbol';
console.log(`new ${field} in bridge ${bridge_id}: ${name}`);
await db.query(`UPDATE bridges SET ${field}=? WHERE bridge_id=?`, [name, bridge_id]);
}
}
else { // maybe pooled assistant AA?
const [row] = await db.query("SELECT assistant_aa FROM pooled_assistants WHERE shares_asset=?", [asset]);
if (row)
await db.query(`UPDATE pooled_assistants SET shares_symbol=? WHERE assistant_aa=?`, [name, row.assistant_aa]);
else
console.log(`new name ${name} of unrelated asset ${asset}, trigger ${trigger_unit}`);
}
return unlock();
}
// new export AA
if (getVersion(conf.export_factory_aas, aa_address)) {
const version = getVersion(conf.export_factory_aas, aa_address);
if (!responseVars)
throw Error(`no responseVars in response from export factory`);
const export_aa = responseVars.address;
if (!export_aa)
throw Error(`no address in response from export factory`);
console.log(`new export AA ${export_aa}`);
// const params = await dag.readAAStateVar(aa_address, 'export_' + export_aa);
const bAdded = await transfers.handleNewExportAA(export_aa, this.network, trigger.data.asset || 'base', trigger.data.asset_decimals, trigger.data.foreign_network, trigger.data.foreign_asset, version);
if (bAdded)
startWatchingAA(export_aa);
return unlock();
}
// new import AA
if (getVersion(conf.import_factory_aas, aa_address)) {
const version = getVersion(conf.import_factory_aas, aa_address);
if (!responseVars)
return unlock(`no responseVars in response from import factory`);
const import_aa = responseVars.address;
if (!import_aa)
throw Error(`no address in response from import factory`);
console.log(`new import AA ${import_aa}`);
const params = await dag.readAAStateVar(aa_address, 'import_' + import_aa);
const bAdded = await transfers.handleNewImportAA(import_aa, trigger.data.home_network, trigger.data.home_asset, this.network, params.asset, trigger.data.asset_decimals, trigger.data.stake_asset || 'base', version);
if (bAdded)
startWatchingAA(import_aa);
return unlock();
}
// new assistant AA
if (getVersion(conf.export_assistant_factory_aas, aa_address) || getVersion(conf.import_assistant_factory_aas, aa_address)) {
const side = getVersion(conf.export_assistant_factory_aas, aa_address) ? 'export' : 'import';
const version = getVersion(side === 'export' ? conf.export_assistant_factory_aas : conf.import_assistant_factory_aas, aa_address);
if (!responseVars)
return unlock(`no responseVars in response from ${side} assistant factory`);
const assistant_aa = responseVars.address;
if (!assistant_aa)
throw Error(`no address in response from ${side} assistant factory`);
console.log(`new ${side} assistant AA ${assistant_aa}`);
const params = await dag.readAAStateVar(aa_address, 'assistant_' + assistant_aa);
// if (params.manager !== operator.getAddress())
// return unlock(`new assistant ${assistant_aa} with another manager, will skip`);
const bAdded = await transfers.handleNewAssistantAA(side, assistant_aa, params.bridge_aa, this.network, params.manager, params.shares_asset, null, version);
if (bAdded)
startWatchingAA(assistant_aa);
return unlock();
}
/*
if (responseVars.asset) { // asset defined on an import AA by circumventing the factory
const definition = await dag.loadAA(aa_address);
const base_aa = definition[1].base_aa;
const params = definition[1].params;
if (!base_aa)
return console.log(`not a parameterized AA: ${aa_address}`);
if (!conf.import_base_aas.includes(base_aa))
return console.log(`not an import AA: ${aa_address}`);
const asset = responseVars.asset;
await transfers.handleNewImportAA(aa_address, params.home_network, params.home_asset, 'Obyte', asset, params.asset_decimals, params.stake_asset || 'base');
return console.log(`asset defined by import AA ${aa_address}: ${asset}`);
}*/
const bridge = await transfers.getBridgeByAddress(aa_address);
if (!bridge)
return unlock(`response from AA ${aa_address} that doesn't belong to any bridge`);
const { bridge_id, export_aa, import_aa, home_asset, foreign_asset, stake_asset } = bridge;
const message = responseVars && responseVars.message || '';
let new_claim_num = responseVars && responseVars.new_claim_num;
// if (!new_claim_num && message.startsWith('challenging period expires in')) { // temp hack
// console.log(`retrieving claim num from trigger ${trigger_unit}`);
// new_claim_num = await dag.readAAStateVar(aa_address, 'claim_num');
// if (!new_claim_num)
// throw Error(`no claim num after claim in trigger ${trigger_unit}`);
// }
// new expatriation or repatriation
if (message === 'started expatriation' && aa_address === export_aa || message === 'started repatriation' && aa_address === import_aa) {
const type = (message === 'started expatriation' && aa_address === export_aa) ? 'expatriation' : 'repatriation';
const amount = trigger.outputs[type === 'expatriation' ? home_asset : foreign_asset];
if (!amount)
throw Error(`started ${type} without payment in source asset? ${trigger_unit}`);
const reward = trigger.data.reward || 0;
const dest_address = trigger.data[type === 'expatriation' ? 'foreign_address' : 'home_address'];
if (!dest_address)
throw Error(`no dest address in transfer ${trigger_unit}`);
const data = responseVars.data || ''; // json-stringified in the correct order
await transfers.addTransfer({ bridge_id, type, amount, reward, sender_address: trigger_address, dest_address, data, txid: trigger_unit, txts: timestamp });
}
// new claim
else if (new_claim_num) {
if (!trigger.data.txid || !trigger.data.amount)
throw Error(`no trigger data in claim ${trigger_unit}`);
const type = (aa_address === export_aa) ? 'repatriation' : 'expatriation';
const dest_address = trigger.data.address || trigger_address;
const claimant_address = trigger_address;
const amount = parseFloat(trigger.data.amount); // it might be a string
const reward = parseFloat(trigger.data.reward || 0); // it might be a string
const asset = type === 'expatriation' ? stake_asset : home_asset;
let stake = trigger.outputs[asset];
if (!stake)
throw Error(`no stake in claim ${trigger_unit} of tx ${trigger.data.txid}`);
if (asset === 'base')
stake -= 2000;
if (type === 'repatriation') {
const paid_amount = (dest_address !== trigger_address) ? amount - reward : 0;
stake -= paid_amount;
}
const data = trigger.data.data ? string_utils.getJsonSourceString(trigger.data.data) : '';
await transfers.handleNewClaim(bridge, type, new_claim_num, trigger.data.sender_address, dest_address, claimant_address, data, amount, reward, stake, trigger.data.txid, trigger.data.txts, trigger_unit);
}
// challenge
else if (message.startsWith('current outcome')) {
if (message.startsWith('current outcome stays'))
console.log(`got challenge ${trigger_unit} for "${trigger.data.stake_on}" that didn't change the outcome`);
else if (message.startsWith('current outcome became'))
console.log(`got challenge ${trigger_unit} for "${trigger.data.stake_on}" that changed the outcome`);
const claim_num = trigger.data.claim_num;
if (!trigger.data.stake_on || !claim_num)
throw Error(`no trigger data in challenge ${trigger_unit}`);
const type = (aa_address === export_aa) ? 'repatriation' : 'expatriation';
const asset = type === 'expatriation' ? stake_asset : home_asset;
let stake = trigger.outputs[asset];
if (!stake)
throw Error(`no stake in challenge ${trigger_unit} on claim ${claim_num}`);
if (asset === 'base')
stake -= 2000;
await transfers.handleChallenge(bridge, type, claim_num, trigger_address, trigger.data.stake_on, stake, trigger_unit);
}
// first withdrawal
else if (message.startsWith('finished claim ')) {
const claim_num = trigger.data.claim_num;
if (!trigger.data.withdraw || !claim_num)
throw Error(`no trigger data in withdrawal ${trigger_unit}`);
const type = (aa_address === export_aa) ? 'repatriation' : 'expatriation';
await transfers.handleWithdrawal(bridge, type, claim_num, trigger_unit);
}
// other withdrawals
else {
console.log(`ignored trigger ${trigger_unit} with message ${responseVars && responseVars.message}`);
}
unlock();
}
async getSymbol(asset) {
if (asset === 'base')
return 'GBYTE';
return await dag.readAAStateVar(conf.token_registry_aa, 'a2s_' + asset);
}
async waitForTransaction(txid) {
return 1;
}
async waitUntilSynced() {
console.log(`waiting for ${this.network} to sync`);
if (conf.bLight) {
const light_wallet = require("ocore/light_wallet.js");
await light_wallet.waitUntilFirstHistoryReceived();
await network.waitTillSyncIdle();
}
else
await network.waitUntilCatchedUp();
console.log(`${this.network} is synced`);
}
async refresh(txid) {
if (!this.isValidTxid(txid)) {
console.log(`invalid tx format ${txid} in ${this.network}`);
return false;
}
if (conf.bLight) {
const light_wallet = require("ocore/light_wallet.js");
light_wallet.refreshLightClientHistory();
await light_wallet.waitUntilHistoryRefreshDone();
await network.waitTillSyncIdle();
return true;
}
return false;
}
async startWatchingSymbolUpdates() {
walletGeneral.addWatchedAddress(conf.token_registry_aa);
}
async startWatchingFactories() {
for (let v in conf.export_factory_aas)
walletGeneral.addWatchedAddress(conf.export_factory_aas[v]);
for (let v in conf.import_factory_aas)
walletGeneral.addWatchedAddress(conf.import_factory_aas[v]);
}
async startWatchingAssistantFactories() {
for (let v in conf.export_assistant_factory_aas)
walletGeneral.addWatchedAddress(conf.export_assistant_factory_aas[v]);
for (let v in conf.import_assistant_factory_aas)
walletGeneral.addWatchedAddress(conf.import_assistant_factory_aas[v]);
}
async scanForMissedResponses() {
const rows = await db.query(
`SELECT aa_responses.*, units.timestamp
FROM aa_responses
CROSS JOIN my_watched_addresses ON aa_address=my_watched_addresses.address
CROSS JOIN units ON trigger_unit=unit
LEFT JOIN transfers ON trigger_unit=txid
WHERE bounced=0 AND transfers.txid IS NULL AND (response LIKE '%started expatriation%' OR response LIKE '%started repatriation%')
UNION
SELECT aa_responses.*, units.timestamp
FROM aa_responses
CROSS JOIN my_watched_addresses ON aa_address=my_watched_addresses.address
CROSS JOIN units ON trigger_unit=unit
LEFT JOIN claims ON trigger_unit=claim_txid
WHERE bounced=0 AND claims.claim_txid IS NULL AND response LIKE '%challenging period%'
UNION
SELECT aa_responses.*, units.timestamp
FROM aa_responses
CROSS JOIN my_watched_addresses ON aa_address=my_watched_addresses.address
CROSS JOIN units ON trigger_unit=unit
LEFT JOIN challenges ON trigger_unit=challenge_txid
WHERE bounced=0 AND challenges.challenge_txid IS NULL AND response LIKE '%current outcome%'`
);
console.log(rows.length, 'lost AAResponses', rows);
for (let row of rows) {
let objAAResponse = row;
if (objAAResponse.response)
objAAResponse.response = JSON.parse(objAAResponse.response);
console.log(`will handle lost AAResponse`, objAAResponse);
await this.onAAResponse(objAAResponse);
}
}
async waitForQueuedResponses() {
const unlock = await mutex.lock('onAAResponse'); // take the last place in the queue after all real AA responses
unlock();
}
// called on start-up to handle missed transfers
async catchup() {
await this.waitUntilSynced();
await this.waitForQueuedResponses();
await this.scanForMissedResponses();
await this.waitForQueuedResponses();
console.log(`catching up ${this.network} done`);
}
constructor() {
if (bCreated)
throw Error("Obyte class already created, must be a singleton");
bCreated = true;
// make sure 'this' points to the class when calling the event handler
eventBus.on("aa_response", this.onAAResponse.bind(this));
eventBus.on("message_for_light", (ws, subject, body) => {
switch (subject) {
case 'light/aa_response':
// we don't have the trigger unit in our db yet, trigger a refresh to get it
console.log(`will refresh`);
const light_wallet = require("ocore/light_wallet.js");
light_wallet.refreshLightClientHistory();
// this.onAAResponse.call(this, body);
break;
}
});
// console.error('--- network', this.network)
watchForDeadlock('onAAResponse');
watchForDeadlock(this.network);
consolidate();
setInterval(consolidate, 4 * 3600 * 1000);
}
}
function startWatchingAA(aa) {
network.addLightWatchedAa(aa);
walletGeneral.addWatchedAddress(aa);
}
async function consolidateAsset(asset) {
console.log(`consolidating ${asset}`);
const rows = await db.query("SELECT amount FROM outputs WHERE is_spent=0 AND address=? AND asset" + (asset === 'base' ? ' IS NULL' : '=' + db.escape(asset)) + " ORDER BY amount DESC LIMIT 100", [operator.getAddress()]);
if (rows.length < 10)
return console.log(`${rows.length} outputs in ${asset}, no need to consolidate`);
console.log(`${rows.length} outputs in ${asset}`);
const total = rows.reduce((acc, row) => acc + row.amount, 0);
const unit = await dag.sendPayment({ to_address: operator.getAddress(), amount: total, asset });
if (!unit)
throw Error(`consolidation of ${asset} failed`);
console.log(`consolidated ${asset} in ${unit}`);
await consolidateAsset(asset);
}
async function consolidate() {
const operator_balances = await operator.readBalances();
for (let asset in operator_balances)
if (asset !== 'base')
await consolidateAsset(asset);
}
module.exports = Obyte;