LEZ Explorer UI

A QML block explorer for the Logos Execution Zone (LEZ), packaged as a logos-module-builder ui_qml module (universal authoring model). The QML view runs process-isolated in a ui-host, backed by a small C++ backend that reads from the lez_indexer_module in-process over the Logos protocol (Qt Remote Objects) — no WebSocket, no external RPC socket.

Features

  • Browse recent blocks with a live tip poll (new heads appear automatically)
  • Block details: hash, previous hash, timestamp, Bedrock status, signature, transactions
  • Navigate to the previous block via a clickable hash link
  • Transaction details (Public, Privacy-Preserving, Program Deployment)
  • Account details with recent transaction history
  • Search by block id, block hash, transaction hash, or account id
  • Browser-style back/forward navigation
  • "Load more" pagination for older blocks
  • Styled with the shared Logos.Theme / Logos.Controls design system

Architecture

  • src/lez_explorer_ui.rep — the QtRO view contract (PROPs / SLOTs / SIGNALs).
  • src/lez_explorer_ui_backend.{h,cpp} — the only hand-written C++: derives the generated LezExplorerUiSimpleSource + LogosUiPluginContext, calls the indexer with typed modules().lez_indexer_module.*, converts its compact JSON into QVariant for the view, and polls the chain tip for live updates.
  • src/qml/ — the view (Main.qml, pages/, components/, icons/).

The *Plugin / *Interface glue is generated by the builder from the .rep + metadata.json (interface: "universal").

Building with Nix

git add -A          # nix only sees git-tracked files
nix build           # runs repc + compiles → result/lib/lez_explorer_ui_plugin.{so,dylib}
nix run .           # preview in logos-standalone-app (spawns the ui-host)
nix build .#lgx     # bundle as a .lgx for logos-basecamp

Running against live data needs the indexer reachable; enter its indexer_config.json path in the explorer's config field (leave blank if the indexer is already running). Load the explorer and indexer .lgx bundles together in logos-basecamp for the full experience.

License

Licensed under either of

at your option.

Description
Logos Execution Zone UI app for Logos Core
Readme
Languages
QML 61.4%
C++ 34.7%
CMake 1.4%
JavaScript 1.4%
Nix 0.6%
Other 0.5%