26 lines
664 B
TypeScript
26 lines
664 B
TypeScript
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
|
import type { DemoPipeline2PairItem } from "./DemoPipeline2PairItem";
|
|
import type { DemoPipeline2PoolItem } from "./DemoPipeline2PoolItem";
|
|
import type { DemoPipeline2TokenItem } from "./DemoPipeline2TokenItem";
|
|
|
|
/**
|
|
* Full local catalog payload.
|
|
*/
|
|
export type DemoPipeline2CatalogPayload = {
|
|
/**
|
|
* Open database URL.
|
|
*/
|
|
databaseUrl: string,
|
|
/**
|
|
* Observed token list.
|
|
*/
|
|
tokens: Array<DemoPipeline2TokenItem>,
|
|
/**
|
|
* Known pool list.
|
|
*/
|
|
pools: Array<DemoPipeline2PoolItem>,
|
|
/**
|
|
* Known pair list.
|
|
*/
|
|
pairs: Array<DemoPipeline2PairItem>, };
|