Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 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 | 1x 1x 1x | import base58 from 'bs58';
import { PoolStatus, RaydiumLCPTradeEvent, TradeDirection } from '../../../types/raydium';
export class RaydiumLCPTradeLayout {
poolState: Uint8Array;
totalBaseSell: bigint;
virtualBase: bigint;
virtualQuote: bigint;
realBaseBefore: bigint;
realQuoteBefore: bigint;
realBaseAfter: bigint;
realQuoteAfter: bigint;
amountIn: bigint;
amountOut: bigint;
protocolFee: bigint;
platformFee: bigint;
shareFee: bigint;
tradeDirection: TradeDirection;
poolStatus: PoolStatus;
constructor(fields: {
poolState: Uint8Array;
totalBaseSell: bigint;
virtualBase: bigint;
virtualQuote: bigint;
realBaseBefore: bigint;
realQuoteBefore: bigint;
realBaseAfter: bigint;
realQuoteAfter: bigint;
amountIn: bigint;
amountOut: bigint;
protocolFee: bigint;
platformFee: bigint;
shareFee: bigint;
tradeDirection: TradeDirection;
poolStatus: PoolStatus;
}) {
this.poolState = fields.poolState;
this.totalBaseSell = fields.totalBaseSell;
this.virtualBase = fields.virtualBase;
this.virtualQuote = fields.virtualQuote;
this.realBaseBefore = fields.realBaseBefore;
this.realQuoteBefore = fields.realQuoteBefore;
this.realBaseAfter = fields.realBaseAfter;
this.realQuoteAfter = fields.realQuoteAfter;
this.amountIn = fields.amountIn;
this.amountOut = fields.amountOut;
this.protocolFee = fields.protocolFee;
this.platformFee = fields.platformFee;
this.shareFee = fields.shareFee;
this.tradeDirection = fields.tradeDirection;
this.poolStatus = fields.poolStatus;
}
static schema = new Map([
[
RaydiumLCPTradeLayout,
{
kind: 'struct',
fields: [
['poolState', [32]],
['totalBaseSell', 'u64'],
['virtualBase', 'u64'],
['virtualQuote', 'u64'],
['realBaseBefore', 'u64'],
['realQuoteBefore', 'u64'],
['realBaseAfter', 'u64'],
['realQuoteAfter', 'u64'],
['amountIn', 'u64'],
['amountOut', 'u64'],
['protocolFee', 'u64'],
['platformFee', 'u64'],
['shareFee', 'u64'],
['tradeDirection', 'u8'],
['poolStatus', 'u8'],
],
},
],
]);
toObject(): RaydiumLCPTradeEvent {
return {
poolState: base58.encode(this.poolState),
totalBaseSell: this.totalBaseSell,
virtualBase: this.virtualBase,
virtualQuote: this.virtualQuote,
realBaseBefore: this.realBaseBefore,
realQuoteBefore: this.realQuoteBefore,
realBaseAfter: this.realBaseAfter,
amountIn: this.amountIn,
amountOut: this.amountOut,
protocolFee: this.protocolFee,
platformFee: this.platformFee,
shareFee: this.shareFee,
tradeDirection: this.tradeDirection,
poolStatus: this.poolStatus,
baseMint: '',
quoteMint: '',
user: '',
};
}
}
|