mirror of
https://github.com/logos-blockchain/lez-programs.git
synced 2026-08-25 14:11:09 +00:00
Now that add-liquidity and pool creation submit via addLiquidity / createPool, the legacy submitNewPosition path is dead. Remove it end to end. App backend (AmmUiBackend): - Drop the submitNewPosition slot/method and its newPositionError helper. Module (AmmModuleImpl): - Drop submitNewPosition, the m_requestPending guard, and the now-orphaned nowMs/parseU64 helpers (+ the <chrono> include). FFI (amm_ffi) — the plan op only submitNewPosition called: - Delete plan.rs; remove amm_plan (extern + regenerated header), api::plan, and PlanRequest. - Remove the plan-only machinery it fed: QuoteBranch, NewPositionPlan, EvaluatedQuote.plan/quote_hash, and AccountPlan's wallet_args / requires_fresh_lp / contains / validate_ready, plus the plan construction in quote.rs. - Tests: drop the plan-only tests/helpers; keep quote coverage by trimming the mixed tests to their quote assertions. QML tests (tst_LiquidityPage): - Remove the two legacy-submit tests (base58-only success) + the submitNewPosition mock and its now-unused fixtures. Keep the finishSubmitFailure test (unchanged behaviour). quoteNewPosition and its machinery (amm_quote, buildQuoteInput, PairSnapshot, AccountPlan preview/sources, commitment) stay — they retire with the legacy quoting in the quote-migration vertical.
66 lines
1.4 KiB
C
66 lines
1.4 KiB
C
#ifndef AMM_FFI_H
|
|
#define AMM_FFI_H
|
|
|
|
#pragma once
|
|
|
|
/* Generated by cbindgen. Do not edit. */
|
|
|
|
#include <stdarg.h>
|
|
#include <stdbool.h>
|
|
#include <stdint.h>
|
|
#include <stdlib.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif // __cplusplus
|
|
|
|
char *amm_config_id(const char *request_json);
|
|
|
|
char *amm_token_ids(const char *request_json);
|
|
|
|
char *amm_pair_ids(const char *request_json);
|
|
|
|
char *amm_context(const char *request_json);
|
|
|
|
char *amm_quote(const char *request_json);
|
|
|
|
char *amm_swap_pair(const char *request_json);
|
|
|
|
char *amm_resolve_pool(const char *request_json);
|
|
|
|
char *amm_pool_id(const char *request_json);
|
|
|
|
char *amm_swap_exact_in_quote(const char *request_json);
|
|
|
|
char *amm_swap_exact_out_quote(const char *request_json);
|
|
|
|
char *amm_swap_exact_in_plan(const char *request_json);
|
|
|
|
char *amm_swap_exact_out_plan(const char *request_json);
|
|
|
|
char *amm_liquidity_quote(const char *request_json);
|
|
|
|
char *amm_create_pool_plan(const char *request_json);
|
|
|
|
char *amm_add_liquidity_quote(const char *request_json);
|
|
|
|
char *amm_add_liquidity_plan(const char *request_json);
|
|
|
|
char *amm_token_holdings(const char *request_json);
|
|
|
|
char *amm_program_id(const char *request_json);
|
|
|
|
/**
|
|
* Releases a string returned by an `amm_*` operation.
|
|
*
|
|
* # Safety
|
|
* `value` must be null or a pointer returned by this library that has not been freed.
|
|
*/
|
|
void amm_free(char *value);
|
|
|
|
#ifdef __cplusplus
|
|
} // extern "C"
|
|
#endif // __cplusplus
|
|
|
|
#endif /* AMM_FFI_H */
|