This commit is contained in:
2026-05-20 23:57:15 +02:00
parent fad7ec5107
commit 62831a0abe
56 changed files with 6603 additions and 114 deletions

View File

@@ -0,0 +1,30 @@
// 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, };