mirror of
https://github.com/logos-blockchain/lez-programs.git
synced 2026-08-25 14:11:09 +00:00
Consolidate wallet account decoding and portfolio handling around the shared Rust IDL decoder. Simplify AMM wallet integration, remove obsolete caches and network plumbing, and cover account selection and live flows.
28 lines
643 B
JSON
28 lines
643 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", "amm_module"],
|
|
|
|
"nix": {
|
|
"packages": {
|
|
"build": ["pkg-config"],
|
|
"runtime": ["qt6.qtdeclarative", "zstd", "krb5", "abseil-cpp", "libbase58"]
|
|
},
|
|
"external_libraries": [
|
|
{ "name": "wallet_idl_decoder" }
|
|
],
|
|
"cmake": {
|
|
"find_packages": [],
|
|
"extra_sources": [],
|
|
"extra_include_dirs": [],
|
|
"extra_link_libraries": []
|
|
}
|
|
}
|
|
}
|