-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
62 lines (40 loc) · 1.4 KB
/
index.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
const bootdiscord = require('./functions/discord/discord.js').boot;
const bootswitches = require('./config.js').bootswitches
const blockscanner = require('./functions/hive/blockscanner.js').startscanner
const adduser = require('./functions/hive/votetrail.js').adduser
const blurt = require('./functions/blurt/blurtmain.js').startvoter
const testscans = require('./functions/misc/scannertester.js').startintervalfunc
const steemscanner = require('./functions/steem/steemblocks.js').start
const reneworders = require('./functions/hive/reneworders').renewtimer
function bootscript(){
if(bootswitches.startblockscanner){
blockscanner();
blurt();
steemscanner();
}
if(bootswitches.bootinftrailaccs.length > 0){
for(var i=0;i<bootswitches.bootinftrailaccs.length;i++){
adduser([bootswitches.bootinftrailaccs[i], 'inf'])
}
}
setTimeout(testscans, 10000)
setTimeout(reneworders, 100000)
}
module.exports = {
bootscript
}
/*
launch parameters
dec view balance
revised error handling
rebuild steem voting to work with comments base product built up
trading bot
engine curation rebuild{revise vote top authors, only vote on first posts}
engine voter powerdown
autovotehighvp rewrite+
kentz testscanner
fix renew
web front end -- control linux terminals trough webpage idea
trading bot detect way too high top order
renew orders see if can retrieve multiple coins with single call
*/