mirror of
https://github.com/logos-blockchain/lez-programs.git
synced 2026-07-25 00:03:11 +00:00
Add a "Create Pool" flow to the AMM app that lets a user open a new liquidity position — seeding a pool's initial liquidity — from token selection and amount entry, through a confirmation dialog, to on-chain submission. - client crate (apps/amm/client): pure, testable protocol logic — account decoding, pair/position modelling, and quote/plan computation — exposed to the app over a C ABI (config/networks.json drives network selection). - C++ runtime + backend: AmmClient, ActiveNetwork, and NewPositionRuntime, wired into AmmUiBackend (new resolve/quote/submit slots). - QML flow: NewPositionForm, NewPositionFlow state, NewPositionConfirmation- Dialog, TokenSelectorModal, and reusable Amm* presentational components (theme, surfaces, buttons) + AmountMath.js. - tests: C++ (NewPositionRuntimeTest, ActiveNetworkTest) and QML (tst_NewPositionForm, tst_LiquidityPage, tst_TokenAmountInput, …).
29 lines
662 B
JSON
29 lines
662 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_ffi" },
|
|
{ "name": "amm_client" }
|
|
],
|
|
"cmake": {
|
|
"find_packages": [],
|
|
"extra_sources": [],
|
|
"extra_include_dirs": ["lib"],
|
|
"extra_link_libraries": []
|
|
}
|
|
}
|
|
}
|