-
Notifications
You must be signed in to change notification settings - Fork 105
/
Copy pathindex.js
126 lines (94 loc) · 4.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
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
/*=================================================*/
/* */
/* Written By Zooky. */
/* */
/* Discord: Zooky.#1003 */
/* Telegram: @zookyy */
/* */
/* Website: https://www.eryx.io */
/* */
/* If you wish to purchase the premium version */
/* please visit the github link above. */
/* */
/*=================================================*/
const chalk = require('chalk');
const ethers = require('ethers');
const fs = require('fs').promises;
const args = require('minimist')(process.argv.slice(2));
let ConsoleLog = console.log;
// main classes
const { msg, config, cache, network } = require('./classes/main.js');
console.clear();
msg.primary('Loading..');
// error handler
process.on('uncaughtException', (err, origin) => {
msg.error(`[error] Exception: ${err}`);
process.exit();
});
// main
(async () => {
// load cache
await cache.load('cache.json');
// load config using our loaded cache
await config.load('config.ini');
// initialize our network using a config.
await network.load();
// prepare network for transactions
await network.prepare();
if(!network.isETH(config.cfg.contracts.input)) {
msg.error(`[error] The free version of the bot can only use the BNB pair.`);
process.exit();
}
// print debug info
console.clear();
ConsoleLog(`/*=================================================*/
/* */
/* Written By Zooky. */
/* */
/* Discord: Zooky.#1003 */
/* Telegram: @zookyy */
/* */
/* Website: https://www.eryx.io */
/* */
/* If you wish to purchase the premium version */
/* please visit the github link above. */
/* */
/*=================================================*/\n\n`);
msg.primary('Eryx Lite has been started.');
// balance check
if(network.bnb_balance == 0) {
msg.error(`[error] You don't have any BNB in your account. (used for gas fee)`);
process.exit();
}
// check if has enough input balance
if((network.input_balance < config.cfg.transaction.amount_in_formatted)) {
msg.error(`[error] You don't have enough input balance for this transaction.`);
process.exit();
}
// fetch pair
let pair = await network.getPair(config.cfg.contracts.input, config.cfg.contracts.output);
msg.primary("Pair address: " + JSON.stringify(pair) + ".");
// get liquidity
let liquidity = await network.getLiquidity(pair);
msg.primary(`Liquidity found: ${liquidity} ${cache.data.addresses[config.cfg.contracts.input].symbol}.\n`);
// get starting tick
let startingTick = Math.floor(new Date().getTime() / 1000);
//purchase token [bnb -> token (through bnb)]
let receipt = await network.transactToken(
config.cfg.contracts.input,
config.cfg.contracts.output
);
if(receipt == null) {
msg.error('[error] Could not retrieve receipt from buy tx.');
process.exit();
}
console.log(chalk.hex('#2091F6').inverse('==================== [TX COMPLETED] ===================='));
console.log(chalk.hex('#2091F6')('• ') + chalk.hex('#EBF0FA')(`From ${cache.data.addresses[config.cfg.contracts.input].symbol} (${config.cfg.transaction.amount_in} ${cache.data.addresses[config.cfg.contracts.input].symbol}) -> ${cache.data.addresses[config.cfg.contracts.output].symbol}`));
console.log(chalk.hex('#2091F6')('• ') + chalk.hex('#EBF0FA')(`${network.chains[network.network.chainId].page}/tx/${receipt.logs[1].transactionHash}`));
console.log(chalk.hex('#2091F6').inverse('========================================================\n'));
// save cache just to be sure
await cache.save();
msg.success(`Finished in ${((Math.floor(new Date().getTime() / 1000)) - startingTick)} seconds.`);
process.exit();
})();
setInterval(() => {}, 1 << 30);