solana-dex-parser
Version:
Solana Dex Transaction Parser
31 lines • 1.28 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.PumpfunParser = void 0;
const base_parser_1 = require("../base-parser");
const parser_pumpfun_event_1 = require("./parser-pumpfun-event");
const util_1 = require("./util");
class PumpfunParser extends base_parser_1.BaseParser {
constructor(adapter, dexInfo, transferActions, classifiedInstructions) {
super(adapter, dexInfo, transferActions, classifiedInstructions);
this.eventParser = new parser_pumpfun_event_1.PumpfunEventParser(adapter);
}
processTrades() {
const events = this.eventParser
.parseInstructions(this.classifiedInstructions)
.filter((event) => event.type === 'TRADE');
return events.map((event) => this.createTradeInfo(event));
}
createTradeInfo(data) {
const event = data.data;
const trade = (0, util_1.getPumpfunTradeInfo)(event, {
slot: data.slot,
signature: data.signature,
timestamp: data.timestamp,
idx: data.idx,
dexInfo: this.dexInfo,
});
return this.utils.attachTokenTransferInfo(trade, this.transferActions);
}
}
exports.PumpfunParser = PumpfunParser;
//# sourceMappingURL=parser-pumpfun.js.map