From 35ccd60be1eec8e2e4eeea2945f6284a9b2bd5b8 Mon Sep 17 00:00:00 2001 From: Daniil Polyakov Date: Thu, 2 Apr 2026 23:01:37 +0300 Subject: [PATCH] feat: add README --- README.md | 45 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..1dff78f --- /dev/null +++ b/README.md @@ -0,0 +1,45 @@ +# LEZ Explorer UI + +A Qt6/C++ block explorer for the **Logos Execution Zone** (LEZ). Builds as both a shared library (Qt plugin) and a standalone desktop application. + +## Features + +- Browse recent blocks with live streaming of new blocks +- View block details: hash, previous hash, timestamp, status, signature, transactions +- Navigate to previous blocks via clickable hash links +- View transaction details (Public, Privacy-Preserving, Program Deployment) +- View account details with paginated transaction history +- Full-text search by block ID, block hash, transaction hash, or account ID +- Browser-style back/forward navigation +- Pagination with "Load more" for older blocks +- Dark theme (Catppuccin Mocha) + +## Building with Nix + +### Standalone application + +```sh +nix build '.#app' +nix run '.#app' +``` + +### Shared library (Qt plugin) + +```sh +nix build '.#lib' +``` + +### Development shell + +```sh +nix develop +``` + +## License + +Licensed under either of + +- Apache License, Version 2.0 ([LICENSE-APACHE-v2](LICENSE-APACHE-v2)) +- MIT License ([LICENSE-MIT](LICENSE-MIT)) + +at your option.