39 lines
699 B
TypeScript
39 lines
699 B
TypeScript
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
|
|
|
/**
|
|
* Local multi-trade signature/pair diagnostic sample for the UI.
|
|
*/
|
|
export type DemoPipeline2LocalMultiTradeSignaturePairDiagnosticSample = {
|
|
/**
|
|
* Transaction signature.
|
|
*/
|
|
signature: string,
|
|
/**
|
|
* Pair id.
|
|
*/
|
|
pairId: number,
|
|
/**
|
|
* Pool address.
|
|
*/
|
|
poolAddress: string | null,
|
|
/**
|
|
* DEX code.
|
|
*/
|
|
dexCode: string | null,
|
|
/**
|
|
* Trade event count.
|
|
*/
|
|
tradeEventCount: number,
|
|
/**
|
|
* Distinct decoded event count.
|
|
*/
|
|
decodedEventCount: number,
|
|
/**
|
|
* Trade event ids.
|
|
*/
|
|
tradeEventIds: string | null,
|
|
/**
|
|
* Decoded event ids.
|
|
*/
|
|
decodedEventIds: string | null, };
|