From e3a92890db2562fa503754fc1ce5b1106ba6e935 Mon Sep 17 00:00:00 2001 From: satyakwok <119509589+satyakwok@users.noreply.github.com> Date: Mon, 11 May 2026 00:56:09 +0200 Subject: [PATCH] docs: add live URLs + cross-link V1 scan + sentrix-grpc-wasm extract V2 README didn't surface the live mainnet/testnet hosts and didn't acknowledge V1 (Next.js) coexists at a different domain. Adds both, with the dual-stack note matching what V1's README now says. Also points at sentrix-grpc-wasm (the extracted gRPC-Web wrapper) so other browser dApps know they can pick up the same client without re-implementing the tonic-web-wasm-client glue. --- README.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/README.md b/README.md index 8a1332c..dfbff76 100644 --- a/README.md +++ b/README.md @@ -9,6 +9,14 @@ Full-Rust block explorer for Sentrix Chain. Browser-side WASM bundle talks to the chain over gRPC-Web (`grpc.sentrixchain.com (mainnet) / grpc-testnet.sentrixchain.com (testnet)`); zero JSON-RPC, zero JavaScript glue. +**Live:** +- Mainnet: https://scan.sentriscloud.com +- Testnet: https://scan-testnet.sentriscloud.com + +> **Two explorers coexist by design.** This is the **WASM V2 Obsidian** — full-Rust + tonic-web, near-native parse cost, signal-driven UI. For the **Next.js V1** alternative — feature-rich (validator pages, leaderboard, EIP-3091 deeplinks, contract verification panel, multi-locale i18n) — see [`Sentriscloud/frontend/apps/scan`](https://github.com/Sentriscloud/frontend/tree/main/apps/scan) at `scan.sentrixchain.com` / `scan-testnet.sentrixchain.com`. Pick whichever fits the workflow; neither replaces the other. + +The gRPC-Web wrapper used here has been extracted into a standalone crate — see [`Sentriscloud/sentrix-grpc-wasm`](https://github.com/Sentriscloud/sentrix-grpc-wasm) — so other browser dApps (Yew, plain wasm-bindgen) can reuse it without re-implementing the `tonic-web-wasm-client` glue. + ## Architecture ```