mirror of
https://github.com/logos-blockchain/lez-programs.git
synced 2026-07-18 21:09:33 +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.
16 lines
262 B
QML
16 lines
262 B
QML
import QtQuick
|
|
|
|
Rectangle {
|
|
required property var theme
|
|
|
|
implicitWidth: 480
|
|
radius: 24
|
|
color: theme.colors.cardBg
|
|
border.color: theme.colors.border
|
|
border.width: 1
|
|
|
|
Behavior on color {
|
|
ColorAnimation { duration: 180 }
|
|
}
|
|
}
|