mirror of
https://github.com/logos-blockchain/lez-programs.git
synced 2026-07-17 20:39:28 +00:00
Replace prototype data and floating-point quotes with live wallet and chain reads, exact Rust quote planning, and optimistic external-wallet submission. Add canonical display-order mapping, responsive QML states, network-scoped program configuration, and packaged Rust client support.
21 lines
418 B
C
21 lines
418 B
C
#ifndef AMM_CLIENT_H
|
|
#define AMM_CLIENT_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
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_plan(const char *request_json);
|
|
void amm_free(char *value);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|