47 lines
837 B
TypeScript
47 lines
837 B
TypeScript
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
|
|
|
/**
|
|
* Local pool-origin diagnostic sample for the UI.
|
|
*/
|
|
export type DemoPipeline2LocalPoolOriginDiagnosticSample = {
|
|
/**
|
|
* Pool-origin id.
|
|
*/
|
|
poolOriginId: number,
|
|
/**
|
|
* Effective DEX code attached to the pool.
|
|
*/
|
|
dexCode: string,
|
|
/**
|
|
* Pool id.
|
|
*/
|
|
poolId: number,
|
|
/**
|
|
* Pool address.
|
|
*/
|
|
poolAddress: string,
|
|
/**
|
|
* Optional pair id.
|
|
*/
|
|
pairId: number | null,
|
|
/**
|
|
* Optional pair symbol.
|
|
*/
|
|
pairSymbol: string | null,
|
|
/**
|
|
* Optional launch surface code.
|
|
*/
|
|
launchSurfaceCode: string | null,
|
|
/**
|
|
* Founding transaction signature.
|
|
*/
|
|
foundingSignature: string,
|
|
/**
|
|
* Founding effective protocol.
|
|
*/
|
|
foundingProtocolName: string,
|
|
/**
|
|
* Founding decoded event kind.
|
|
*/
|
|
foundingEventKind: string, };
|