forked from Widiskel/evm-tx-deployer-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
199 lines (185 loc) · 5.9 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
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
import { privateKey } from "./accounts/accounts.js";
import { Config } from "./config/config.js";
import Core from "./src/core/core.js";
import sqlite from "./src/core/db/sqlite.js";
import { RPC } from "./src/core/network/rpc.js";
import { Helper } from "./src/utils/helper.js";
import logger from "./src/utils/logger.js";
import twist from "./src/utils/twist.js";
async function operation(acc) {
await sqlite.connectToDatabase();
await sqlite.createTable();
const core = new Core(acc);
try {
await core.connectWallet();
await core.getBalance();
if (core.balance.ETH < 0.0015) {
await Helper.delay(
100000,
acc,
`Minimum ${RPC.SYMBOL} Balance Is 0.0015 ${RPC.SYMBOL}`,
core
);
await operation(acc);
}
if (Config.USEWRAPUNWRAP ?? true) {
if (Config.WRAPPEDTOKENCONTRACTADDRESS == undefined)
throw Error("Please Configure WRAPPEDTOKENCONTRACTADDRESS first");
const currentCount =
Number(Config.WRAPUNWRAPCOUNT) -
Number((await sqlite.getTodayTxLog(core.address, "tx")).length);
const txCount = currentCount > 0 ? currentCount : 0;
for (const count of Array(txCount)) {
if (core.balance.ETH < 0.0015)
throw Error(
"Balance is less than 0.0015 ETH, please fill up your balance"
);
try {
await core.deposit();
await core.withdraw();
await sqlite.insertData(core.address, new Date().toISOString(), "tx");
} catch (error) {
await Helper.delay(
3000,
acc,
`Error during deposit/withdraw operation: ${error.message}`,
core
);
}
const delay = Helper.random(10000, 60000 * 2);
await Helper.delay(
delay,
acc,
`Delaying for ${Helper.msToTime(delay)} Before Executing Next TX`,
core
);
}
}
if (Config.USETRANSFER ?? false) {
const selfTransferCount =
Number(Config.SELFTRANSFERCOUNT) -
Number((await sqlite.getTodayTxLog(core.address, "self")).length);
const txCount = selfTransferCount > 0 ? selfTransferCount : 0;
const otherTransferCount =
Number(Config.OTHERUSERTRANSFERCOUNT) -
Number((await sqlite.getTodayTxLog(core.address, "other")).length);
const otherTxCount = otherTransferCount > 0 ? otherTransferCount : 0;
for (const tx of Array(txCount)) {
await core.transfer();
await sqlite.insertData(core.address, new Date().toISOString(), "self");
}
for (const tx of Array(otherTxCount)) {
await core.transfer(false);
await sqlite.insertData(
core.address,
new Date().toISOString(),
"other"
);
}
}
if (Config.DEPLOYCONTRACTINTERACTION ?? false) {
if (
(Config.DEPLOYCONTRACTADDRESS == undefined) &
(Config.DEPLOYCONTRACTADDRESS == "")
)
throw Error(
"Please set DEPLOYCONTRACTADDRESS with your deployed contract address first "
);
const deployedContractInteractCount =
Number(Config.DEPLOYCONTRACTINTERACTIONCOUNT) -
Number((await sqlite.getTodayTxLog(core.address, "deployed")).length);
const txCount =
deployedContractInteractCount > 0 ? deployedContractInteractCount : 0;
for (const tx of Array(txCount)) {
await core.deployedContractTx();
await sqlite.insertData(
core.address,
new Date().toISOString(),
"deployed"
);
}
}
if (Config.USERAWTXDATA ?? false) {
if (Config.RAWTX == undefined || Config.RAWTX == [])
throw Error("Please Configure RAWTX first");
if (Config.RAWTXCONTRACTADDRESS == undefined)
throw Error("Please Configure RAWTXCONTRACTADDRESS first");
const currentCount =
Number(Config.RAWTXCOUNT) -
Number((await sqlite.getTodayTxLog(core.address, "raw")).length);
const txCount = currentCount > 0 ? currentCount : 0;
for (const tx of Array(txCount)) {
await core.rawTx();
await sqlite.insertData(core.address, new Date().toISOString(), "raw");
}
}
const delay = 60000 * 60 * 24;
await Helper.delay(
delay,
acc,
`Account ${
privateKey.indexOf(acc) + 1
} Processing Done, Delaying for ${Helper.msToTime(delay)}`,
core
);
await operation(acc);
} catch (error) {
if (error.message) {
await Helper.delay(
10000,
acc,
`Error : ${error.message}, Retry again after 10 Second`,
core
);
} else {
await Helper.delay(
10000,
acc,
`Error :${JSON.stringify(error)}, Retry again after 10 Second`,
core
);
}
await operation(acc);
}
}
async function startBot() {
return new Promise(async (resolve, reject) => {
try {
logger.info(`BOT STARTED`);
if (privateKey.length == 0)
throw Error("Please input your account first on accounts.js file");
const promiseList = [];
for (const acc of privateKey) {
promiseList.push(operation(acc));
}
await Promise.all(promiseList);
resolve();
} catch (error) {
logger.info(`BOT STOPPED`);
logger.error(JSON.stringify(error));
reject(error);
}
});
}
(async () => {
try {
logger.clear();
logger.info("");
logger.info("Application Started");
console.log("EVM TX DEPLOYER BOT");
console.log();
console.log("By : Widiskel");
console.log("Follow On : https://github.com/Widiskel");
console.log("Join Channel : https://t.me/skeldrophunt");
console.log("Dont forget to run git pull to keep up to date");
console.log();
console.log();
Helper.showSkelLogo();
await startBot();
} catch (error) {
twist.clear();
twist.clearInfo();
console.log("Error During executing bot", error);
await startBot();
}
})();