0.7.29
This commit is contained in:
@@ -0,0 +1,82 @@
|
||||
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
||||
|
||||
/**
|
||||
* One DEX support matrix entry for the UI.
|
||||
*/
|
||||
export type DemoPipeline2DexSupportMatrixEntry = {
|
||||
/**
|
||||
* Stable internal protocol or surface code.
|
||||
*/
|
||||
code: string,
|
||||
/**
|
||||
* Human-readable protocol or surface name.
|
||||
*/
|
||||
displayName: string,
|
||||
/**
|
||||
* Protocol family.
|
||||
*/
|
||||
family: string,
|
||||
/**
|
||||
* Protocol version or `unknown` when not verified locally.
|
||||
*/
|
||||
version: string,
|
||||
/**
|
||||
* Surface type: launch, bonding curve, AMM, CLMM, DLMM, router, aggregator or unknown.
|
||||
*/
|
||||
surfaceType: string,
|
||||
/**
|
||||
* Primary Solana program id, when verified in local constants or docs.
|
||||
*/
|
||||
programId: string | null,
|
||||
/**
|
||||
* Optional router program id, when this entry uses a distinct router.
|
||||
*/
|
||||
routerProgramId: string | null,
|
||||
/**
|
||||
* Program id confidence: known, to_verify or unknown.
|
||||
*/
|
||||
programIdStatus: string,
|
||||
/**
|
||||
* Whether this protocol has been observed in the local replay corpus.
|
||||
*/
|
||||
observed: boolean,
|
||||
/**
|
||||
* Whether the code currently contains a decoder for this protocol.
|
||||
*/
|
||||
decoded: boolean,
|
||||
/**
|
||||
* Whether decoded events are currently materialized beyond raw decoded rows.
|
||||
*/
|
||||
materialized: boolean,
|
||||
/**
|
||||
* Whether this protocol can currently produce trade candidates.
|
||||
*/
|
||||
tradeCandidate: boolean,
|
||||
/**
|
||||
* Whether this protocol can currently produce candle candidates.
|
||||
*/
|
||||
candleCandidate: boolean,
|
||||
/**
|
||||
* Whether this protocol can currently produce pair candidates.
|
||||
*/
|
||||
pairCandidate: boolean,
|
||||
/**
|
||||
* Whether this protocol can currently produce pool candidates.
|
||||
*/
|
||||
poolCandidate: boolean,
|
||||
/**
|
||||
* Operational support status.
|
||||
*/
|
||||
status: string,
|
||||
/**
|
||||
* Confidence level attached to this matrix entry.
|
||||
*/
|
||||
confidence: string,
|
||||
/**
|
||||
* Optional explicit skip reason for partial or ignored entries.
|
||||
*/
|
||||
skipReason: string | null,
|
||||
/**
|
||||
* Whether the entry should be inserted as an enabled DEX in the storage catalog.
|
||||
*/
|
||||
catalogEnabled: boolean, };
|
||||
@@ -1,4 +1,5 @@
|
||||
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
||||
import type { DemoPipeline2DexSupportMatrixEntry } from "./DemoPipeline2DexSupportMatrixEntry";
|
||||
import type { DemoPipeline2LocalPipelineValidationIssue } from "./DemoPipeline2LocalPipelineValidationIssue";
|
||||
|
||||
/**
|
||||
@@ -29,6 +30,14 @@ expectedDexCodes: Array<string>,
|
||||
* Observed DEX codes found in diagnostics.
|
||||
*/
|
||||
observedDexCodes: Array<string>,
|
||||
/**
|
||||
* Number of entries currently exposed by the DEX support matrix.
|
||||
*/
|
||||
dexSupportMatrixEntryCount: number,
|
||||
/**
|
||||
* DEX support matrix snapshot exposed with the validation report.
|
||||
*/
|
||||
dexSupportMatrix: Array<DemoPipeline2DexSupportMatrixEntry>,
|
||||
/**
|
||||
* Issues produced by validation.
|
||||
*/
|
||||
|
||||
@@ -0,0 +1,10 @@
|
||||
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
||||
|
||||
/**
|
||||
* Request payload for local pipeline validation.
|
||||
*/
|
||||
export type DemoPipeline2LocalValidationRequest = {
|
||||
/**
|
||||
* Stable validation profile code to execute.
|
||||
*/
|
||||
profileCode: string, };
|
||||
Reference in New Issue
Block a user