mirror of
https://github.com/fdundjer/solana-sniper-bot.git
synced 2025-11-09 20:12:06 +10:00
feat: filter cache
This commit is contained in:
@ -4,13 +4,25 @@ import { LiquidityPoolKeysV4 } from '@raydium-io/raydium-sdk';
|
|||||||
import { logger } from '../helpers';
|
import { logger } from '../helpers';
|
||||||
|
|
||||||
export class BurnFilter implements Filter {
|
export class BurnFilter implements Filter {
|
||||||
|
private cachedResult: FilterResult | undefined = undefined;
|
||||||
|
|
||||||
constructor(private readonly connection: Connection) {}
|
constructor(private readonly connection: Connection) {}
|
||||||
|
|
||||||
async execute(poolKeys: LiquidityPoolKeysV4): Promise<FilterResult> {
|
async execute(poolKeys: LiquidityPoolKeysV4): Promise<FilterResult> {
|
||||||
|
if (this.cachedResult) {
|
||||||
|
return this.cachedResult;
|
||||||
|
}
|
||||||
|
|
||||||
try {
|
try {
|
||||||
const amount = await this.connection.getTokenSupply(poolKeys.lpMint, this.connection.commitment);
|
const amount = await this.connection.getTokenSupply(poolKeys.lpMint, this.connection.commitment);
|
||||||
const burned = amount.value.uiAmount === 0;
|
const burned = amount.value.uiAmount === 0;
|
||||||
return { ok: burned, message: burned ? undefined : "Burned -> Creator didn't burn LP" };
|
const result = { ok: burned, message: burned ? undefined : "Burned -> Creator didn't burn LP" };
|
||||||
|
|
||||||
|
if (result.ok) {
|
||||||
|
this.cachedResult = result;
|
||||||
|
}
|
||||||
|
|
||||||
|
return result;
|
||||||
} catch (e: any) {
|
} catch (e: any) {
|
||||||
if (e.code == -32602) {
|
if (e.code == -32602) {
|
||||||
return { ok: true };
|
return { ok: true };
|
||||||
|
|||||||
@ -8,6 +8,7 @@ import { logger } from '../helpers';
|
|||||||
|
|
||||||
export class MutableFilter implements Filter {
|
export class MutableFilter implements Filter {
|
||||||
private readonly errorMessage: string[] = [];
|
private readonly errorMessage: string[] = [];
|
||||||
|
private cachedResult: FilterResult | undefined = undefined;
|
||||||
|
|
||||||
constructor(
|
constructor(
|
||||||
private readonly connection: Connection,
|
private readonly connection: Connection,
|
||||||
@ -25,6 +26,10 @@ export class MutableFilter implements Filter {
|
|||||||
}
|
}
|
||||||
|
|
||||||
async execute(poolKeys: LiquidityPoolKeysV4): Promise<FilterResult> {
|
async execute(poolKeys: LiquidityPoolKeysV4): Promise<FilterResult> {
|
||||||
|
if (this.cachedResult) {
|
||||||
|
return this.cachedResult;
|
||||||
|
}
|
||||||
|
|
||||||
try {
|
try {
|
||||||
const metadataPDA = getPdaMetadataKey(poolKeys.baseMint);
|
const metadataPDA = getPdaMetadataKey(poolKeys.baseMint);
|
||||||
const metadataAccount = await this.connection.getAccountInfo(metadataPDA.publicKey, this.connection.commitment);
|
const metadataAccount = await this.connection.getAccountInfo(metadataPDA.publicKey, this.connection.commitment);
|
||||||
@ -47,7 +52,13 @@ export class MutableFilter implements Filter {
|
|||||||
message.push('has no socials');
|
message.push('has no socials');
|
||||||
}
|
}
|
||||||
|
|
||||||
return { ok: ok, message: ok ? undefined : `MutableSocials -> Token ${message.join(' and ')}` };
|
const result = { ok: ok, message: ok ? undefined : `MutableSocials -> Token ${message.join(' and ')}` };
|
||||||
|
|
||||||
|
if (!mutable) {
|
||||||
|
this.cachedResult = result;
|
||||||
|
}
|
||||||
|
|
||||||
|
return result;
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
logger.error({ mint: poolKeys.baseMint }, `MutableSocials -> Failed to check ${this.errorMessage.join(' and ')}`);
|
logger.error({ mint: poolKeys.baseMint }, `MutableSocials -> Failed to check ${this.errorMessage.join(' and ')}`);
|
||||||
}
|
}
|
||||||
|
|||||||
@ -6,6 +6,7 @@ import { logger } from '../helpers';
|
|||||||
|
|
||||||
export class RenouncedFreezeFilter implements Filter {
|
export class RenouncedFreezeFilter implements Filter {
|
||||||
private readonly errorMessage: string[] = [];
|
private readonly errorMessage: string[] = [];
|
||||||
|
private cachedResult: FilterResult | undefined = undefined;
|
||||||
|
|
||||||
constructor(
|
constructor(
|
||||||
private readonly connection: Connection,
|
private readonly connection: Connection,
|
||||||
@ -22,6 +23,10 @@ export class RenouncedFreezeFilter implements Filter {
|
|||||||
}
|
}
|
||||||
|
|
||||||
async execute(poolKeys: LiquidityPoolKeysV4): Promise<FilterResult> {
|
async execute(poolKeys: LiquidityPoolKeysV4): Promise<FilterResult> {
|
||||||
|
if (this.cachedResult) {
|
||||||
|
return this.cachedResult;
|
||||||
|
}
|
||||||
|
|
||||||
try {
|
try {
|
||||||
const accountInfo = await this.connection.getAccountInfo(poolKeys.baseMint, this.connection.commitment);
|
const accountInfo = await this.connection.getAccountInfo(poolKeys.baseMint, this.connection.commitment);
|
||||||
if (!accountInfo?.data) {
|
if (!accountInfo?.data) {
|
||||||
@ -42,7 +47,16 @@ export class RenouncedFreezeFilter implements Filter {
|
|||||||
message.push('freeze');
|
message.push('freeze');
|
||||||
}
|
}
|
||||||
|
|
||||||
return { ok: ok, message: ok ? undefined : `RenouncedFreeze -> Creator can ${message.join(' and ')} tokens` };
|
const result = {
|
||||||
|
ok: ok,
|
||||||
|
message: ok ? undefined : `RenouncedFreeze -> Creator can ${message.join(' and ')} tokens`,
|
||||||
|
};
|
||||||
|
|
||||||
|
if (result.ok) {
|
||||||
|
this.cachedResult = result;
|
||||||
|
}
|
||||||
|
|
||||||
|
return result;
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
logger.error(
|
logger.error(
|
||||||
{ mint: poolKeys.baseMint },
|
{ mint: poolKeys.baseMint },
|
||||||
|
|||||||
Reference in New Issue
Block a user