0.7.27 +Refactor

This commit is contained in:
2026-05-10 00:33:01 +02:00
parent cb2e8e7096
commit 1f0137b9de
261 changed files with 12308 additions and 8928 deletions

View File

@@ -0,0 +1,70 @@
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
/**
* Local non-actionable pair diagnostic summary for the UI.
*/
export type DemoPipeline2LocalNonActionablePairDiagnosticSummary = {
/**
* Pair id.
*/
pairId: number,
/**
* Pool address.
*/
poolAddress: string,
/**
* DEX code.
*/
dexCode: string,
/**
* Base token mint.
*/
baseMint: string,
/**
* Base token symbol.
*/
baseSymbol: string | null,
/**
* Quote token mint.
*/
quoteMint: string,
/**
* Quote token symbol.
*/
quoteSymbol: string | null,
/**
* Pair symbol.
*/
pairSymbol: string | null,
/**
* Total decoded trade candidates attached to the pool.
*/
decodedTradeCandidateCount: number,
/**
* Total non-actionable missing trade events attached to the pair.
*/
nonActionableMissingTradeEventCount: number,
/**
* Total missing trade candidates caused by failed transactions.
*/
failedTransactionCandidateCount: number,
/**
* Total successful missing trade candidates without token mints.
*/
okTransactionWithoutTokenMintsCount: number,
/**
* Total successful missing trade candidates without amount payload.
*/
okTransactionWithoutAmountPayloadCount: number,
/**
* Distinct non-actionable diagnostic reasons seen for this pair.
*/
reasonSummary: string | null,
/**
* Total trade events attached to the pair.
*/
tradeEventCount: number,
/**
* Total candle buckets attached to the pair.
*/
pairCandleCount: number, };