Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Services 2510 scam algorithm mapping #1074

Closed
wants to merge 11 commits into from
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export class ElasticUpdatesEventsService {
private readonly documentDbService: DocumentDbService,
private readonly redisCacheService: RedisCacheService,
private readonly mxApiService: MxApiService,
) {}
) { }

public async handleNftMintEvents(mintEvents: any[], hash: string): Promise<void> {
await new Promise((resolve) => setTimeout(resolve, 10000));
Expand Down Expand Up @@ -111,7 +111,7 @@ export class ElasticUpdatesEventsService {
}

public async handleScamInfoForNftMintBurnAndUpdateEvents(mintEvents: any[]): Promise<void> {
await new Promise((resolve) => setTimeout(resolve, 5000));
await new Promise((resolve) => setTimeout(resolve, 10000));

let nftsToUpdate: Asset[] = [];
let nftsToDelete: string[] = [];
Expand Down
Loading