Files
solana-sniper-bot/cache/pool.cache.js
Filip Dunder 4fcf5165d5 tsc & prettier
2024-04-30 10:54:57 -03:00

31 lines
1.3 KiB
JavaScript

"use strict";
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
return new (P || (P = Promise))(function (resolve, reject) {
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
step((generator = generator.apply(thisArg, _arguments || [])).next());
});
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.PoolCache = void 0;
const helpers_1 = require("../helpers");
class PoolCache {
constructor() {
this.keys = new Map();
}
save(id, state) {
if (!this.keys.has(state.baseMint.toString())) {
helpers_1.logger.trace(`Caching new pool for mint: ${state.baseMint.toString()}`);
this.keys.set(state.baseMint.toString(), { id, state });
}
}
get(mint) {
return __awaiter(this, void 0, void 0, function* () {
return this.keys.get(mint);
});
}
}
exports.PoolCache = PoolCache;