-
Notifications
You must be signed in to change notification settings - Fork 79
/
Copy pathindex.ts
272 lines (254 loc) · 9.19 KB
/
index.ts
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
import readline from "readline"
import chalk from "chalk";
import fs from "fs";
import {
title_display,
screen_clear,
main_menu_display,
settings_title_display,
settings_menu_display,
sniper_title_display,
sniper_menu_display,
sniper_help_display,
automatic_sniper_title_display,
constants_setting_display,
manual_sniper_title_display,
constants_setting_title_display,
} from "./menus/menus";
import { sleep } from "./utility";
import { runListener } from "./bot";
const fileName = "./config.json"
const fileName2 = "./config_sniper.json"
// let choice = 1;
export const rl = readline.createInterface({
input: process.stdin,
output: process.stdout
})
export const start = () => {
init();
}
export const init = () => {
let num;
screen_clear();
title_display();
main_menu_display();
rl.question("\t[Main] - Choice: ", (answer: string) => {
let choice = parseInt(answer);
if (choice == 1) {
snipe_menu();
}
else if (choice == 2) {
settings_menu();
}
else if (choice == 3) {
process.exit(1);
}
else {
console.log("\tInvalid choice!");
sleep(1500);
init();
}
})
}
export const snipe_menu = () => {
screen_clear();
sniper_title_display();
sniper_menu_display();
rl.question("[SniperMode]-Choice: ", (answer) => {
let choice = parseInt(answer)
if (choice == 1) {
runSniper();
}
else if (choice == 2) {
constantsSetting();
}
else if (choice == 3) {
sniper_help_display();
rl.question("Press Enter to go back: ", () => {
snipe_menu()
})
}
else if (choice == 4) {
init();
}
else {
console.log("\tInvalid choice!");
sleep(1500);
snipe_menu();
}
})
}
export const runSniper = async () => {
screen_clear();
sniper_title_display();
// await sleep(3000)
runListener();
}
export const constantsSetting = () => {
screen_clear();
constants_setting_title_display();
constants_setting_display();
rl.question("[Sniper Setting]-Choice: ", (answer) => {
let choice = parseInt(answer);
if(choice == 1) {
rl.question('\t[Settings] - Sol Amount to Buy Token: ', async (answer) => {
let file_content = fs.readFileSync(fileName2, 'utf-8');
let content = JSON.parse(file_content);
content.solIn = Math.floor(parseFloat(answer) * 10 ** 9);
fs.writeFileSync(fileName2, JSON.stringify(content, null, 2))
console.log("Sol Amount is updated.");
await sleep(2000);
constantsSetting();
});
}
else if(choice == 2) {
rl.question('\t[Settings] - New Transaction Number: ', async (answer) => {
let file_content = fs.readFileSync(fileName2, 'utf-8');
let content = JSON.parse(file_content);
content.txNum = parseInt(answer);
fs.writeFileSync(fileName2, JSON.stringify(content, null, 2))
console.log("Transaction Number is updated.");
await sleep(2000);
constantsSetting();
});
}
else if(choice == 3) {
rl.question('\t[Settings] - Profit % to sell: ', async (answer) => {
let file_content = fs.readFileSync(fileName2, 'utf-8');
let content = JSON.parse(file_content);
content.takeProfit = parseInt(answer);
fs.writeFileSync(fileName2, JSON.stringify(content, null, 2))
console.log("Profit % is updated.");
await sleep(2000);
constantsSetting();
});
}
else if(choice == 4) {
rl.question('\t[Settings] - StopLoss % to sell: ', async (answer) => {
let file_content = fs.readFileSync(fileName2, 'utf-8');
let content = JSON.parse(file_content);
content.stopLoss = parseInt(answer);
fs.writeFileSync(fileName2, JSON.stringify(content, null, 2))
console.log("StopLoss % is updated.");
await sleep(2000);
constantsSetting();
});
}
else if(choice == 5) {
rl.question('\t[Settings] - Transaction Delay Time: ', async (answer) => {
let file_content = fs.readFileSync(fileName2, 'utf-8');
let content = JSON.parse(file_content);
content.txDelay = parseInt(answer);
fs.writeFileSync(fileName2, JSON.stringify(content, null, 2))
console.log("Transaction Delay Time is updated.");
await sleep(2000);
constantsSetting();
});
}
else if(choice == 6) {
rl.question('\t[Settings] - Transaction Fee: ', async (answer) => {
let file_content = fs.readFileSync(fileName2, 'utf-8');
let content = JSON.parse(file_content);
content.txFee = parseFloat(answer);
fs.writeFileSync(fileName2, JSON.stringify(content, null, 2))
console.log("Transaction Fee is updated.");
await sleep(2000);
constantsSetting();
});
}
else if(choice == 7) {
rl.question('\t[Settings] - Compute Unit: ', async (answer) => {
let file_content = fs.readFileSync(fileName2, 'utf-8');
let content = JSON.parse(file_content);
content.computeUnit = parseInt(answer);
fs.writeFileSync(fileName2, JSON.stringify(content, null, 2))
console.log("Compute Unit is updated.");
await sleep(2000);
constantsSetting();
});
}
else if(choice == 8) {
let file_content = fs.readFileSync(fileName2, 'utf-8');
let content = JSON.parse(file_content);
console.log(content);
rl.question("Press Enter to go back: ", () => {
constantsSetting();
})
}
else if(choice == 9) {
snipe_menu();
}
else {
console.log("\tInvalid choice!");
sleep(1500);
constantsSetting();
}
})
}
export const settings_menu = () => {
screen_clear();
settings_title_display();
settings_menu_display();
rl.question("[Settings]-Choice: ", (answer: string) => {
let choice = parseInt(answer);
if (choice == 1) {
rl.question('\t[Settings] - New RPC Endpoint: ', async (answer) => {
// Need to validate RPC
let file_content = fs.readFileSync(fileName, 'utf-8');
let content = JSON.parse(file_content);
content.RPC_ENDPOINT = answer;
fs.writeFileSync(fileName, JSON.stringify(content, null, 2))
console.log("RPC_ENDPOINT is updated.");
await sleep(2000);
settings_menu();
});
}
else if (choice == 2) {
rl.question('\t[Settings] - New RPC_WEBSOCKET_Endpoint: ', async (answer) => {
// Need to validate WEBSOCKET
let file_content = fs.readFileSync(fileName, 'utf-8');
let content = JSON.parse(file_content);
content.RPC_WEBSOCKET_ENDPOINT = answer;
fs.writeFileSync(fileName, JSON.stringify(content, null, 2))
console.log("RPC_WEBSOCKET_ENDPOINT is updated.");
await sleep(2000);
settings_menu();
});
}
else if (choice == 3) {
rl.question('\t[Settings] - New Slippage: ', async (answer) => {
let file_content = fs.readFileSync(fileName, 'utf-8');
let content = JSON.parse(file_content);
content.Slippage = parseInt(answer);
fs.writeFileSync(fileName, JSON.stringify(content, null, 2))
console.log("Slippage is updated.");
await sleep(2000);
settings_menu();
});
}
else if (choice == 4) {
rl.question('\t[Settings] - Your Wallet: ', async (answer) => {
let file_content = fs.readFileSync(fileName, 'utf-8');
let content = JSON.parse(file_content);
content.PAYERPRIVATEKEY = answer;
fs.writeFileSync(fileName, JSON.stringify(content, null, 2))
console.log("Wallet is updated.");
await sleep(2000);
settings_menu();
});
}
else if (choice == 5) {
let file_content = fs.readFileSync(fileName, 'utf-8');
let content = JSON.parse(file_content);
console.log("Settings:");
console.log(content);
rl.question('\n\tpress enter to return..', () => {
settings_menu();
});
}
else if (choice == 6) {
init();
}
})
}
init();