31 lines
758 B
TypeScript
31 lines
758 B
TypeScript
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
|
|
|
/**
|
|
* Request payload for on-chain DEX pair/pool discovery.
|
|
*/
|
|
export type Demo3OnchainDexDiscoveryRequest = {
|
|
/**
|
|
* Optional DEX code from the support matrix.
|
|
*/
|
|
dexCode: string | null,
|
|
/**
|
|
* Optional Solana program id. When absent, dex_code must resolve to a verified program id.
|
|
*/
|
|
programId: string | null,
|
|
/**
|
|
* HTTP role used to query Solana RPC.
|
|
*/
|
|
httpRole: string,
|
|
/**
|
|
* Maximum number of signatures to inspect.
|
|
*/
|
|
signatureLimit: number,
|
|
/**
|
|
* Maximum number of transactions to fetch from the signature list.
|
|
*/
|
|
transactionLimit: number,
|
|
/**
|
|
* Maximum number of candidate rows to return.
|
|
*/
|
|
candidateLimit: number, };
|