mirror of
https://github.com/logos-blockchain/lez-programs.git
synced 2026-07-20 05:50:32 +00:00
- Added SequencerClient class to handle asynchronous account reads and transaction queries. - Updated NewPositionRuntime to integrate SequencerClient, allowing for improved wallet account management. - Modified existing tests to accommodate changes in the new position schema from v1 to v2. - Enhanced QML tests to validate new position form behavior with updated holding selections and context handling. - Refactored code to ensure compatibility with the new SequencerClient functionalities.
22 lines
477 B
C
22 lines
477 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);
|
|
char *amm_normalize_account_rpc(const char *request_json);
|
|
void amm_free(char *value);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|