-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathindex.js
444 lines (399 loc) · 13.2 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
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
require("dotenv").config();
const { SolanaTracker } = require("solana-swap");
const { Keypair, PublicKey, Connection } = require("@solana/web3.js");
const bs58 = require("bs58");
const winston = require("winston");
const chalk = require("chalk");
const axios = require("axios");
const fs = require("fs").promises;
const session = axios.create({
baseURL: "https://data.solanatracker.io/",
timeout: 10000,
headers: { "x-api-key": process.env.API_KEY },
});
const sleep = (ms) => {
return new Promise((resolve) => setTimeout(resolve, ms));
};
const logger = winston.createLogger({
level: "info",
format: winston.format.combine(
winston.format.timestamp({
format: "YYYY-MM-DD HH:mm:ss",
}),
winston.format.printf(
(info) => `${info.timestamp} ${info.level}: ${info.message}`
)
),
transports: [
new winston.transports.Console(),
new winston.transports.File({ filename: "trading-bot.log" }),
],
});
class TradingBot {
constructor() {
this.config = {
amount: parseFloat(process.env.AMOUNT),
delay: parseInt(process.env.DELAY),
monitorInterval: parseInt(process.env.MONITOR_INTERVAL),
slippage: parseInt(process.env.SLIPPAGE),
priorityFee: parseFloat(process.env.PRIORITY_FEE),
useJito: process.env.JITO === "true",
rpcUrl: process.env.RPC_URL,
minLiquidity: parseFloat(process.env.MIN_LIQUIDITY) || 0,
maxLiquidity: parseFloat(process.env.MAX_LIQUIDITY) || Infinity,
minMarketCap: parseFloat(process.env.MIN_MARKET_CAP) || 0,
maxMarketCap: parseFloat(process.env.MAX_MARKET_CAP) || Infinity,
minRiskScore: parseInt(process.env.MIN_RISK_SCORE) || 0,
maxRiskScore: parseInt(process.env.MAX_RISK_SCORE) || 10,
requireSocialData: process.env.REQUIRE_SOCIAL_DATA === "true",
maxNegativePnL: parseFloat(process.env.MAX_NEGATIVE_PNL) || -Infinity,
maxPositivePnL: parseFloat(process.env.MAX_POSITIVE_PNL) || Infinity,
markets: process.env.MARKETS?.split(",").map((m) => m.trim()) || ['raydium', 'orca', 'pumpfun', 'moonshot', 'raydium-cpmm'],
};
this.privateKey = process.env.PRIVATE_KEY;
this.SOL_ADDRESS = "So11111111111111111111111111111111111111112";
this.positions = new Map();
this.positionsFile = "positions.json";
this.soldPositionsFile = "sold_positions.json";
this.soldPositions = [];
this.seenTokens = new Set();
this.buyingTokens = new Set();
this.sellingPositions = new Set();
this.connection = new Connection(this.config.rpcUrl);
}
async initialize() {
this.keypair = Keypair.fromSecretKey(bs58.decode ? bs58.decode (this.privateKey): bs58.default.decode(this.privateKey));
this.solanaTracker = new SolanaTracker(this.keypair, this.config.rpcUrl);
await this.loadPositions();
await this.loadSoldPositions();
}
async fetchTokens() {
try {
const response = await session.get("/tokens/latest");
return response.data;
} catch (error) {
logger.error(`Error fetching token data [${error?.response?.data || error}]`);
return [];
}
}
async fetchTokenData(tokenId) {
try {
const response = await session.get(`/tokens/${tokenId}`);
return response.data;
} catch (error) {
logger.error(`Error fetching token data [${error?.response?.data || error}]`);
return null
}
}
filterTokens(tokens) {
return tokens.filter((token) => {
const pool = token.pools[0];
const liquidity = pool.liquidity.usd;
const marketCap = pool.marketCap.usd;
const riskScore = token.risk.score;
const hasSocialData = !!(
token.token.twitter ||
token.token.telegram ||
token.token.website
);
const isInAllowedMarket = this.config.markets.includes(pool.market);
return (
liquidity >= this.config.minLiquidity &&
liquidity <= this.config.maxLiquidity &&
marketCap >= this.config.minMarketCap &&
marketCap <= this.config.maxMarketCap &&
riskScore >= this.config.minRiskScore &&
riskScore <= this.config.maxRiskScore &&
(!this.config.requireSocialData || hasSocialData) &&
isInAllowedMarket &&
!this.seenTokens.has(token.token.mint) &&
!this.buyingTokens.has(token.token.mint)
);
});
}
async getWalletAmount(wallet, mint, retries = 3) {
await sleep(5000);
for (let attempt = 0; attempt <= retries; attempt++) {
try {
const tokenAccountInfo =
await this.connection.getParsedTokenAccountsByOwner(
new PublicKey(wallet),
{
mint: new PublicKey(mint),
}
);
if (tokenAccountInfo.value) {
const balance =
tokenAccountInfo.value[0].account.data.parsed.info.tokenAmount
.uiAmount;
if (balance > 0) {
return balance;
}
}
if (attempt < retries) {
await sleep(10000);
}
} catch (error) {
if (attempt < retries) {
await sleep(10000);
} else {
logger.error(
`All attempts failed. Error getting wallet amount for token ${mint}:`,
error
);
}
}
}
logger.warn(
`Failed to get wallet amount for token ${mint} after ${retries} retries.`
);
return null;
}
async performSwap(token, isBuy) {
logger.info(
`${
isBuy ? chalk.white("[BUYING]") : chalk.white("[SELLING]")
} [${this.keypair.publicKey.toBase58()}] [${token.token.symbol}] [${
token.token.mint
}]`
);
const { amount, slippage, priorityFee } = this.config;
const [fromToken, toToken] = isBuy
? [this.SOL_ADDRESS, token.token.mint]
: [token.token.mint, this.SOL_ADDRESS];
try {
let swapAmount;
if (isBuy) {
swapAmount = amount;
} else {
const position = this.positions.get(token.token.mint);
if (!position) {
logger.error(
`No position found for ${token.token.symbol} when trying to sell`
);
return false;
}
swapAmount = position.amount;
}
const swapResponse = await this.solanaTracker.getSwapInstructions(
fromToken,
toToken,
swapAmount,
slippage,
this.keypair.publicKey.toBase58(),
priorityFee
);
const swapOptions = this.buildSwapOptions();
const txid = await this.solanaTracker.performSwap(
swapResponse,
swapOptions
);
this.logTransaction(txid, isBuy, token);
if (isBuy) {
const tokenAmount = await this.getWalletAmount(
this.keypair.publicKey.toBase58(),
token.token.mint
);
if (!tokenAmount) {
logger.error(
`Swap failed ${token.token.mint}`
);
return false;
}
this.positions.set(token.token.mint, {
txid,
symbol: token.token.symbol,
entryPrice: token.pools[0].price.quote,
amount: tokenAmount,
openTime: Date.now(),
});
this.seenTokens.add(token.token.mint);
this.buyingTokens.delete(token.token.mint);
} else {
const position = this.positions.get(token.token.mint);
if (position) {
const exitPrice = token.pools[0].price.quote;
const pnl = (exitPrice - position.entryPrice) * position.amount;
const pnlPercentage =
(pnl / (position.entryPrice * position.amount)) * 100;
const soldPosition = {
...position,
exitPrice,
pnl,
pnlPercentage,
closeTime: Date.now(),
closeTxid: txid,
};
this.soldPositions.push(soldPosition);
logger.info(
`Closed position for ${token.token.symbol}. PnL: (${pnlPercentage.toFixed(2)}%)`
);
this.positions.delete(token.token.mint);
this.sellingPositions.delete(token.token.mint);
await this.saveSoldPositions();
}
}
await this.savePositions();
return txid;
} catch (error) {
logger.error(
`Error performing ${isBuy ? "buy" : "sell"}: ${error.message}`,
{ error }
);
if (isBuy) {
this.buyingTokens.delete(token.token.mint);
} else {
this.sellingPositions.delete(token.token.mint);
}
return false;
}
}
async checkAndSellPosition(tokenMint) {
if (this.sellingPositions.has(tokenMint)) {
// logger.info(`Already selling position for ${tokenMint}, skipping`);
return;
}
const position = this.positions.get(tokenMint);
if (!position) return;
const tokenData = await this.fetchTokenData(tokenMint);
if (!tokenData) {
logger.error(`Failed to fetch data for token ${tokenMint}`);
return;
}
const currentPrice = tokenData.pools[0].price.quote;
const pnlPercentage =
((currentPrice - position.entryPrice) / position.entryPrice) * 100;
logger.info(
`PnL for position [${position.symbol}] [${chalk[
pnlPercentage > 0 ? "green" : "red"
](pnlPercentage.toFixed(2))}%]`
);
if (
pnlPercentage <= this.config.maxNegativePnL ||
pnlPercentage >= this.config.maxPositivePnL
) {
const currentAmount = await this.getWalletAmount(
this.keypair.publicKey.toBase58(),
tokenMint
);
if (currentAmount !== null && currentAmount > 0) {
this.sellingPositions.add(tokenMint);
this.performSwap(tokenData, false).catch((error) => {
logger.error(`Error selling position: ${error.message}`, { error });
this.sellingPositions.delete(tokenMint);
});
} else {
logger.warn(
`No balance found for ${position.symbol}, removing from positions`
);
this.positions.delete(tokenMint);
await this.savePositions();
}
}
}
async buyMonitor() {
while (true) {
const tokens = await this.fetchTokens();
const filteredTokens = this.filterTokens(tokens);
for (const token of filteredTokens) {
if (!this.positions.has(token.token.mint) && !this.buyingTokens.has(token.token.mint)) {
this.buyingTokens.add(token.token.mint);
this.performSwap(token, true).catch((error) => {
logger.error(`Error buying token: ${error.message}`, { error });
this.buyingTokens.delete(token.token.mint);
});
}
}
await sleep(this.config.delay);
}
}
async positionMonitor() {
while (true) {
const positionPromises = Array.from(this.positions.keys()).map(
(tokenMint) => this.checkAndSellPosition(tokenMint)
);
await Promise.allSettled(positionPromises);
await sleep(this.config.monitorInterval);
}
}
buildSwapOptions() {
return {
sendOptions: { skipPreflight: true },
confirmationRetries: 30,
confirmationRetryTimeout: 1000,
lastValidBlockHeightBuffer: 150,
resendInterval: 1000,
confirmationCheckInterval: 1000,
commitment: "processed",
jito: this.config.useJito ? { enabled: true, tip: 0.0001 } : undefined,
};
}
logTransaction(txid, isBuy, token) {
logger.info(
`${isBuy ? chalk.green("[BOUGHT]") : chalk.red("[SOLD]")} ${
token.token.symbol
} [${txid}]`
);
}
async loadSoldPositions() {
try {
const data = await fs.readFile(this.soldPositionsFile, "utf8");
this.soldPositions = JSON.parse(data);
logger.info(
`Loaded ${this.soldPositions.length} sold positions from file`
);
} catch (error) {
if (error.code !== "ENOENT") {
logger.error("Error loading sold positions", { error });
}
}
}
async saveSoldPositions() {
try {
await fs.writeFile(
this.soldPositionsFile,
JSON.stringify(this.soldPositions, null, 2)
);
logger.info(`Saved ${this.soldPositions.length} sold positions to file`);
} catch (error) {
logger.error("Error saving sold positions", { error });
}
}
async loadPositions() {
try {
const data = await fs.readFile(this.positionsFile, "utf8");
const loadedPositions = JSON.parse(data);
this.positions = new Map(Object.entries(loadedPositions));
this.seenTokens = new Set(this.positions.keys());
logger.info(`Loaded ${this.positions.size} positions from file`);
} catch (error) {
if (error.code !== "ENOENT") {
logger.error("Error loading positions", { error });
}
}
}
async savePositions() {
try {
const positionsObject = Object.fromEntries(this.positions);
await fs.writeFile(
this.positionsFile,
JSON.stringify(positionsObject, null, 2)
);
logger.info(`Saved ${this.positions.size} positions to file`);
} catch (error) {
logger.error("Error saving positions", { error });
}
}
async start() {
try {
logger.info("Starting Trading Bot");
await this.initialize();
// Run buying and selling loops concurrently
await Promise.allSettled([this.buyMonitor(), this.positionMonitor()]);
} catch (error) {
console.log("Error starting bot", error);
}
}
}
const bot = new TradingBot();
bot.start().catch((error) => console.error("Error in bot execution", error));