mirror of
https://github.com/logos-blockchain/lez-programs.git
synced 2026-07-17 04:19:35 +00:00
Implement one create-pool and add-liquidity workflow. Add searchable token resolution, direct opening-price and deposit editing, optimistic pool activation, and base58 transaction IDs. Isolate network, wallet, AMM client, and runtime boundaries. Stabilize quote, submission, refresh, and pool-probe state while consolidating liquidity tests and removing obsolete liquidity paths.
28 lines
621 B
JSON
28 lines
621 B
JSON
{
|
|
"name": "amm_ui",
|
|
"version": "0.1.0",
|
|
"type": "ui_qml",
|
|
"category": "amm",
|
|
"description": "UI module for the AMM program",
|
|
"main": "amm_ui_plugin",
|
|
"view": "qml/Main.qml",
|
|
"icon": "icons/amm.png",
|
|
"dependencies": ["logos_execution_zone"],
|
|
|
|
"nix": {
|
|
"packages": {
|
|
"build": ["pkg-config"],
|
|
"runtime": ["qt6.qtdeclarative", "zstd", "krb5", "abseil-cpp", "libbase58"]
|
|
},
|
|
"external_libraries": [
|
|
{ "name": "amm_client" }
|
|
],
|
|
"cmake": {
|
|
"find_packages": [],
|
|
"extra_sources": [],
|
|
"extra_include_dirs": [],
|
|
"extra_link_libraries": []
|
|
}
|
|
}
|
|
}
|