-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbot.ts
496 lines (447 loc) · 16.1 KB
/
bot.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
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
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
import {
ComputeBudgetProgram,
Connection,
Keypair,
PublicKey,
TransactionMessage,
VersionedTransaction,
} from '@solana/web3.js';
import {
createAssociatedTokenAccountIdempotentInstruction,
createCloseAccountInstruction,
getAccount,
getAssociatedTokenAddress,
RawAccount,
TOKEN_PROGRAM_ID,
} from '@solana/spl-token';
import {
CurrencyAmount,
Liquidity,
LiquidityPoolKeysV4,
LiquidityStateV4,
Percent,
Token,
TokenAmount,
} from '@raydium-io/raydium-sdk';
import { MarketCache, PoolCache } from './cache';
import { PoolFilters } from './filters';
import { TransactionExecutor } from './transactions';
import { createPoolKeys, logger, NETWORK, sleep } from './helpers';
import { Mutex } from 'async-mutex';
import BN from 'bn.js';
import { ProfitTransferExecutor } from './transactions/profit-transaction-executor';
import axios from 'axios';
import { RugcheckXyzReport } from './bot.types';
type PriceMatchResponse =
| {
action: 'sell';
reason: 'stopLoss';
amountOut: TokenAmount | CurrencyAmount;
}
| {
action: 'no-sell';
}
| {
action: 'sell';
reason: 'takeProfit';
profit: CurrencyAmount;
amountOut: TokenAmount | CurrencyAmount;
};
export interface BotConfig {
wallet: Keypair;
checkRenounced: boolean;
checkFreezable: boolean;
checkBurned: boolean;
minPoolSize: TokenAmount;
maxPoolSize: TokenAmount;
quoteToken: Token;
quoteAmount: TokenAmount;
quoteAta: PublicKey;
oneTokenAtATime: boolean;
priceCheckDuration: number;
priceCheckInterval: number;
autoSell: boolean;
autoSellDelay: number;
maxBuyRetries: number;
maxSellRetries: number;
setCustomTips: boolean;
unitLimit: number;
unitPrice: number;
takeProfit: boolean;
takeProfit1AfterGain: number;
takeProfit1Percentage: number;
takeProfit2AfterGain: number;
takeProfit2Percentage: number;
takeProfitFeePercentage: number;
stopLoss: number;
buySlippage: number;
sellSlippage: number;
rugcheckXyzCheck: boolean;
rugcheckXyzMaxScore: number;
}
// Set of those mint addresses that have been sold after gain 1 (takeProfit1After gain)
const soldAfterGain1 = new Set<string>();
// Set of those mint addresses that have been sold after gain 2 (takeProfit2After gain)
const soldAfterGain2 = new Set<string>();
export class Bot {
private readonly poolFilters: PoolFilters;
// one token at the time
private readonly mutex: Mutex;
private sellExecutionCount = 0;
public readonly isProfitExecutor: boolean = false;
constructor(
private readonly connection: Connection,
private readonly marketStorage: MarketCache,
private readonly poolStorage: PoolCache,
private readonly txExecutor: TransactionExecutor,
readonly config: BotConfig,
) {
this.isProfitExecutor = txExecutor instanceof ProfitTransferExecutor;
this.mutex = new Mutex();
this.poolFilters = new PoolFilters(connection, {
quoteToken: this.config.quoteToken,
minPoolSize: this.config.minPoolSize,
maxPoolSize: this.config.maxPoolSize,
});
}
async validate() {
try {
await getAccount(this.connection, this.config.quoteAta, this.connection.commitment);
} catch (error) {
logger.error(
`${this.config.quoteToken.symbol} token account not found in wallet: ${this.config.wallet.publicKey.toString()}`,
);
return false;
}
return true;
}
public async buy(accountId: PublicKey, poolState: LiquidityStateV4) {
logger.trace({ mint: poolState.baseMint }, `Processing new pool...`);
if (this.config.oneTokenAtATime) {
if (this.mutex.isLocked() || this.sellExecutionCount > 0) {
logger.debug(
{ mint: poolState.baseMint.toString() },
`Skipping buy because one token at a time is turned on and token is already being processed`,
);
return;
}
await this.mutex.acquire();
}
let rugcheckScore: number = -1;
if (this.config.rugcheckXyzCheck) {
try {
const axiosReponse = await axios.get(
`https://api.rugcheck.xyz/v1/tokens/${poolState.baseMint.toString()}/report`,
);
const rugcheckReport: RugcheckXyzReport = axiosReponse.data;
rugcheckScore = rugcheckReport.score;
if (rugcheckScore > this.config.rugcheckXyzMaxScore) {
logger.trace(
{ mint: poolState.baseMint.toString(), rugcheckScore },
`Skipping buy because token has a high rugcheck.xyz score`,
);
return;
}
} catch (error) {
logger.info(
{ mint: poolState.baseMint.toString() },
`Error fetching rugcheck.xyz report. Ignoring rugcheck threshold score check.`,
);
}
}
logger.trace({ mint: poolState.baseMint.toString(), rugcheckScore }, `Rugcheck score is ok. Continuing...`);
try {
const [market, mintAta] = await Promise.all([
this.marketStorage.get(poolState.marketId.toString()),
getAssociatedTokenAddress(poolState.baseMint, this.config.wallet.publicKey),
]);
const poolKeys: LiquidityPoolKeysV4 = createPoolKeys(accountId, poolState, market);
const match = await this.filterMatch(poolKeys);
if (!match) {
logger.trace({ mint: poolKeys.baseMint.toString() }, `Skipping buy because pool doesn't match filters`);
return;
}
logger.info({ mint: poolState.baseMint.toString() }, `Processing buy...`);
for (let i = 0; i < this.config.maxBuyRetries; i++) {
try {
logger.info(
{ mint: poolState.baseMint.toString() },
`Send buy transaction attempt: ${i + 1}/${this.config.maxBuyRetries}`,
);
const tokenOut = new Token(TOKEN_PROGRAM_ID, poolKeys.baseMint, poolKeys.baseDecimals);
const result = await this.swap(
poolKeys,
this.config.quoteAta,
mintAta,
this.config.quoteToken,
tokenOut,
this.config.quoteAmount,
this.config.buySlippage,
this.config.wallet,
'buy',
);
if (result.confirmed) {
logger.info(
{
mint: poolState.baseMint.toString(),
signature: result.signature,
url: `https://solscan.io/tx/${result.signature}?cluster=${NETWORK}`,
},
`Confirmed buy tx`,
);
break;
}
logger.info(
{
mint: poolState.baseMint.toString(),
signature: result.signature,
error: result.error,
},
`Error confirming buy tx`,
);
} catch (error) {
logger.debug({ mint: poolState.baseMint.toString(), error }, `Error confirming buy transaction`);
}
}
} catch (error) {
logger.error({ mint: poolState.baseMint.toString(), error }, `Failed to buy token`);
} finally {
if (this.config.oneTokenAtATime) {
this.mutex.release();
}
}
}
public async sell(accountId: PublicKey, rawAccount: RawAccount) {
const accountMintAddress = rawAccount.mint.toString();
if (soldAfterGain1.has(accountMintAddress) && soldAfterGain2.has(accountMintAddress)) {
logger.debug({ mint: accountMintAddress }, `Skipping sell because token was sold after gain twice`);
}
if (this.config.oneTokenAtATime) {
this.sellExecutionCount++;
}
let desiredGain: number;
let sellingRound: 'first' | 'second';
if (soldAfterGain1.has(accountMintAddress)) {
desiredGain = this.config.takeProfit2AfterGain;
sellingRound = 'second';
} else {
desiredGain = this.config.takeProfit1AfterGain;
sellingRound = 'first';
}
try {
logger.trace({ mint: rawAccount.mint }, `Processing new token...`);
const poolData = await this.poolStorage.get(accountMintAddress);
if (!poolData) {
logger.trace({ mint: accountMintAddress }, `Token pool data is not found, can't sell`);
return;
}
const tokenIn = new Token(TOKEN_PROGRAM_ID, poolData.state.baseMint, poolData.state.baseDecimal.toNumber());
const tokenInPercentage =
sellingRound == 'first' ? this.config.takeProfit1Percentage : this.config.takeProfit2Percentage;
const tokenInAmount = (BigInt(tokenInPercentage) * rawAccount.amount) / BigInt(100);
const tokenAmountIn = new TokenAmount(tokenIn, tokenInAmount, true);
if (tokenAmountIn.isZero()) {
logger.info({ mint: accountMintAddress }, `Empty balance, can't sell`);
return;
}
if (this.config.autoSellDelay > 0) {
logger.debug({ mint: rawAccount.mint }, `Waiting for ${this.config.autoSellDelay} ms before sell`);
await sleep(this.config.autoSellDelay);
}
const market = await this.marketStorage.get(poolData.state.marketId.toString());
const poolKeys: LiquidityPoolKeysV4 = createPoolKeys(new PublicKey(poolData.id), poolData.state, market);
const priceMatchResponse = await this.priceMatch(tokenAmountIn, poolKeys, desiredGain);
if (priceMatchResponse.action == 'sell') {
logger.info({ mint: accountMintAddress, priceMatchResponse }, `Matched the price, executing sale...`);
let fee: undefined | CurrencyAmount = undefined;
if (priceMatchResponse.reason == 'takeProfit' && this.isProfitExecutor) {
logger.debug({ mint: accountMintAddress }, `Calculating fee for take profit`);
const profit = priceMatchResponse.profit;
const feeFraction = profit.mul(this.config.takeProfitFeePercentage).numerator.div(new BN(100));
fee = new CurrencyAmount(profit.currency, feeFraction, true);
}
for (let i = 0; i < this.config.maxSellRetries; i++) {
try {
logger.info(
{ mint: rawAccount.mint },
`Send sell transaction attempt: ${i + 1}/${this.config.maxSellRetries}`,
);
const result = await this.swap(
poolKeys,
accountId,
this.config.quoteAta,
tokenIn,
this.config.quoteToken,
tokenAmountIn,
this.config.sellSlippage,
this.config.wallet,
'sell',
fee,
);
if (result.confirmed) {
logger.info(
{
dex: `https://dexscreener.com/solana/${accountMintAddress}?maker=${this.config.wallet.publicKey}`,
mint: accountMintAddress,
signature: result.signature,
url: `https://solscan.io/tx/${result.signature}?cluster=${NETWORK}`,
},
`Confirmed sell tx`,
);
if (sellingRound == 'first') {
soldAfterGain1.add(accountMintAddress);
} else {
soldAfterGain2.add(accountMintAddress);
}
break;
}
logger.info(
{
mint: accountMintAddress,
signature: result.signature,
error: result.error,
},
`Error confirming sell tx`,
);
} catch (error) {
logger.debug({ mint: accountMintAddress, error }, `Error confirming sell transaction`);
}
}
} else {
logger.info({ mint: accountMintAddress, priceMatchResponse }, `Price doesn't match, skipping sell...`);
}
} catch (error) {
logger.error({ mint: accountMintAddress, error }, `Failed to sell token`);
} finally {
if (this.config.oneTokenAtATime) {
this.sellExecutionCount--;
}
}
}
// noinspection JSUnusedLocalSymbols
private async swap(
poolKeys: LiquidityPoolKeysV4,
ataIn: PublicKey,
ataOut: PublicKey,
tokenIn: Token,
tokenOut: Token,
amountIn: TokenAmount,
slippage: number,
wallet: Keypair,
direction: 'buy' | 'sell',
fee?: CurrencyAmount,
) {
const slippagePercent = new Percent(slippage, 100);
const poolInfo = await Liquidity.fetchInfo({
connection: this.connection,
poolKeys,
});
const computedAmountOut = Liquidity.computeAmountOut({
poolKeys,
poolInfo,
amountIn,
currencyOut: tokenOut,
slippage: slippagePercent,
});
const latestBlockhash = await this.connection.getLatestBlockhash();
const { innerTransaction } = Liquidity.makeSwapFixedInInstruction(
{
poolKeys: poolKeys,
userKeys: {
tokenAccountIn: ataIn,
tokenAccountOut: ataOut,
owner: wallet.publicKey,
},
amountIn: amountIn.raw,
minAmountOut: computedAmountOut.minAmountOut.raw,
},
poolKeys.version,
);
const messageV0 = new TransactionMessage({
payerKey: wallet.publicKey,
recentBlockhash: latestBlockhash.blockhash,
instructions: [
...(this.config.setCustomTips
? [
ComputeBudgetProgram.setComputeUnitPrice({ microLamports: this.config.unitPrice }),
ComputeBudgetProgram.setComputeUnitLimit({ units: this.config.unitLimit }),
]
: []),
...(direction === 'buy'
? [
createAssociatedTokenAccountIdempotentInstruction(
wallet.publicKey,
ataOut,
wallet.publicKey,
tokenOut.mint,
),
]
: [createCloseAccountInstruction(ataIn, wallet.publicKey, wallet.publicKey)]),
...innerTransaction.instructions,
],
}).compileToV0Message();
const transaction = new VersionedTransaction(messageV0);
transaction.sign([wallet, ...innerTransaction.signers]);
if (fee) {
return this.txExecutor.executeAndConfirm(transaction, wallet, latestBlockhash, fee);
} else {
return this.txExecutor.executeAndConfirm(transaction, wallet, latestBlockhash);
}
}
private async filterMatch(poolKeys: LiquidityPoolKeysV4) {
return await this.poolFilters.execute(poolKeys);
}
private async priceMatch(
amountIn: TokenAmount,
poolKeys: LiquidityPoolKeysV4,
profitGainPercentage: number,
): Promise<PriceMatchResponse> {
if (this.config.priceCheckDuration === 0 || this.config.priceCheckInterval === 0) {
return {
action: 'no-sell',
};
}
const profitFraction = this.config.quoteAmount.mul(profitGainPercentage).numerator.div(new BN(100));
const profitAmount = new TokenAmount(this.config.quoteToken, profitFraction, true);
const takeProfit = this.config.quoteAmount.add(profitAmount);
const lossFraction = this.config.quoteAmount.mul(this.config.stopLoss).numerator.div(new BN(100));
const lossAmount = new TokenAmount(this.config.quoteToken, lossFraction, true);
const stopLoss = this.config.quoteAmount.subtract(lossAmount);
const slippage = new Percent(this.config.sellSlippage, 100);
let timesChecked = 0;
const timesToCheck = this.config.priceCheckDuration / this.config.priceCheckInterval;
do {
try {
const poolInfo = await Liquidity.fetchInfo({
connection: this.connection,
poolKeys,
});
const amountOut = Liquidity.computeAmountOut({
poolKeys,
poolInfo,
amountIn: amountIn,
currencyOut: this.config.quoteToken,
slippage,
}).amountOut;
logger.debug(
{ mint: poolKeys.baseMint.toString() },
`Take profit: ${takeProfit.toFixed()} | Stop loss: ${stopLoss.toFixed()} | Current: ${amountOut.toFixed()}`,
);
if (amountOut.lt(stopLoss) && this.config.stopLoss > 0) {
return { action: 'sell', reason: 'stopLoss', amountOut };
}
if (amountOut.gt(takeProfit) && this.config.takeProfit) {
// Calculate the profit amount
const profit = amountOut.sub(this.config.quoteAmount);
// const tokenAmount =
return { action: 'sell', reason: 'takeProfit', profit, amountOut };
}
} catch (e) {
logger.trace({ mint: poolKeys.baseMint.toString(), e }, `Failed to check token price`);
} finally {
timesChecked++;
}
} while (timesChecked++ < timesToCheck);
return { action: 'no-sell' };
}
}