mirror of
https://github.com/logos-blockchain/lez-programs.git
synced 2026-07-03 13:39:38 +00:00
Turns the dummy-data AMM UI into a real client of the on-chain LEZ wallet.
Adds a hand-written ui_qml C++ backend (src/AmmUi*) over the core
logos_execution_zone module: create/open a local wallet, create and list
public/private accounts, and a navbar Connect / Connected + account-selector
+ Disconnect flow. Onboarding is password-only (no path picking) with a
per-app wallet at ~/.lee/amm-wallet (override: AMM_WALLET_HOME_DIR);
standalone gets its own wallet, Basecamp shares accounts via adopt-on-start.
Requires Nix with flakes; macOS also needs `sandbox = false` (the default).
The logos_execution_zone input is pinned to a module rev whose LEZ (lssa)
already includes the macOS Metal-build fix, so no `--override-input` is
needed — plain `nix run .` works:
cd apps/amm
nix run .
- create_new now returns the new wallet's BIP39 mnemonic (not an int status);
the app currently discards it, so the wallet can't yet be recovered. Surfacing
it in onboarding (+ restore_storage) is a follow-up.
- The wallet password is currently a no-op upstream (storage.rs: "TODO: use
password for storage encryption"); storage.json is plaintext. So Disconnect
is a UI-level lock and reconnect does not (cannot yet) re-prompt for it.
- wallet-ffi requires explicit config/storage paths; a *_default() FFI would
let the app drop its path handling.
- Bundled network config: connects to whatever WalletConfig::default() points
at; real testnet endpoints still TBD.
103 lines
2.9 KiB
QML
103 lines
2.9 KiB
QML
import QtQuick
|
|
import QtQuick.Controls
|
|
import QtQuick.Layouts
|
|
|
|
import Logos.Theme
|
|
import Logos.Controls
|
|
|
|
// Public/private account creation dialog. Ported from the LEZ wallet UI.
|
|
Popup {
|
|
id: root
|
|
|
|
signal createPublicRequested()
|
|
signal createPrivateRequested()
|
|
|
|
modal: true
|
|
dim: true
|
|
padding: Theme.spacing.large
|
|
closePolicy: Popup.CloseOnEscape | Popup.CloseOnPressOutside
|
|
|
|
// Center on the full-window overlay rather than the small navbar control
|
|
// this popup is declared inside.
|
|
parent: Overlay.overlay
|
|
anchors.centerIn: parent
|
|
width: 360
|
|
|
|
background: Rectangle {
|
|
color: Theme.palette.backgroundSecondary
|
|
radius: Theme.spacing.radiusXlarge
|
|
border.color: Theme.palette.backgroundElevated
|
|
}
|
|
|
|
contentItem: ColumnLayout {
|
|
id: contentLayout
|
|
// Pin to the popup's padded width so children stay within the modal.
|
|
width: root.availableWidth
|
|
spacing: Theme.spacing.large
|
|
|
|
LogosText {
|
|
text: qsTr("Create account")
|
|
font.pixelSize: Theme.typography.titleText
|
|
font.weight: Theme.typography.weightBold
|
|
color: Theme.palette.text
|
|
}
|
|
|
|
LogosText {
|
|
text: qsTr("Choose account type.")
|
|
font.pixelSize: Theme.typography.secondaryText
|
|
color: Theme.palette.textSecondary
|
|
Layout.topMargin: -Theme.spacing.small
|
|
}
|
|
|
|
RowLayout {
|
|
Layout.fillWidth: true
|
|
spacing: Theme.spacing.medium
|
|
|
|
ColumnLayout {
|
|
Layout.fillWidth: true
|
|
spacing: 0
|
|
|
|
LogosText {
|
|
text: qsTr("Private")
|
|
font.pixelSize: Theme.typography.primaryText
|
|
color: Theme.palette.text
|
|
}
|
|
LogosText {
|
|
text: qsTr("Private balance and activity.")
|
|
font.pixelSize: Theme.typography.secondaryText
|
|
color: Theme.palette.textSecondary
|
|
wrapMode: Text.WordWrap
|
|
Layout.fillWidth: true
|
|
}
|
|
}
|
|
|
|
LogosSwitch {
|
|
id: privateSwitch
|
|
checked: false
|
|
}
|
|
}
|
|
|
|
RowLayout {
|
|
Layout.topMargin: Theme.spacing.medium
|
|
spacing: Theme.spacing.medium
|
|
Layout.fillWidth: true
|
|
LogosButton {
|
|
text: qsTr("Cancel")
|
|
Layout.fillWidth: true
|
|
onClicked: root.close()
|
|
}
|
|
LogosButton {
|
|
text: qsTr("Create")
|
|
Layout.fillWidth: true
|
|
onClicked: {
|
|
if (privateSwitch.checked)
|
|
root.createPrivateRequested()
|
|
else
|
|
root.createPublicRequested()
|
|
root.close()
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|