Native Platform Explorer

What this is

A client-only block explorer for Dash Platform, powered exclusively by @dashevo/evo-sdk. There is no API server, no database, and no indexer behind this site — every value you see has been fetched from a masternode's DAPI endpoint by the WASM SDK running in your browser, and (by default) verified against a prefetched set of quorum public keys.

It is a deliberate, reduced-scope sibling of platform-explorer. Because it has no indexer it cannot browse every identity, contract, token, block, or transaction. In exchange, it can ship as a single static bundle that anyone can host, every response carries a cryptographic proof, and there is no middleman between you and the network.

Proofs

Your browser connects directly to DAPI and asks for data. In trusted mode the SDK also asks DAPI for a GroveDB Merkle proof; the WASM engine then verifies that proof locally against quorum public keys fetched when the SDK connected. The UI surfaces the outcome via the ProofChip next to each DigestCard.

Some SDK methods (system status, quorum info, DASH/USD rate, a few boolean DPNS helpers) have no proof variant — we label those honestly as "No proof", rather than pretending otherwise.

Enumeration

Dash Platform's SDK does not expose "list all identities", "list all contracts", "list all tokens", "list all documents", or "list all transactions" primitives. This explorer honours that constraint — wherever you'd expect a browseable list, we either show a seeded list (paste the IDs you care about) or, where the SDK has a real list primitive (documents within a contract, epochs by index, DPNS labels by prefix, protocol votes, contested resources, groups in a contract), we show a real, paginated browser.

Privacy

Your queries go directly from your browser to DAPI. We never see them. No analytics, no telemetry. The session-viewed-identities log (opt-in) is stored only in your browser's localStorage and never transmitted.

Credits

Built on top of dashevo/platform, @dashevo/evo-sdk, and visually mirrors pshenmic/platform-explorer.