Independently runnable applications built on the same @dashevo/evo-sdk used by the Node tutorials in the parent repo. Each example has its own npm project — cd into its directory and run npm install there for the Vite app itself — while sharing the repository-root setupDashClient-core.mjs helper for browser SDK setup and key management.
Some app scripts still depend on the repository-root install. TokenOps npm run bootstrap:identities imports the root setupDashClient.mjs helper and the root @dashevo/evo-sdk copy (to keep a single module instance for SDK instanceof checks). For that path, run npm install at the repo root as well — see token-ops/README.md.
- 🃏 dashmint-lab/ — React + TypeScript + Vite SPA for minting, viewing, transferring, and trading NFT-style collectible cards on Dash Platform testnet. Shares the browser-safe SDK core (
setupDashClient-core.mjs) with the Node tutorials at the repo root. - 🔐 dashproof-lab/ — React + TypeScript + Vite proof-of-existence tutorial app that hashes files locally in the browser, anchors SHA-256 proofs on Dash Platform testnet, verifies files by hash, and reviews proof history by owner or chain ID. Also uses the shared browser-safe SDK core from the parent repo.
- 📝 dashnote/ — React + TypeScript + Vite notes app for Dash Platform testnet. Create, edit, and delete notes against a small
notedata contract; supports a "Remember Me" read-only browse mode, optimistic localStorage cache, and ships a single-file zero-build read-only companion atdashnote-lite.html. Also uses the shared browser-safe SDK core from the parent repo. - ⭐ dashrate/ — React + TypeScript + Vite app for rating Platform tutorial resources on Dash Platform testnet, built to showcase Platform 4.0's relational document queries: provable
count, groupedcount(GROUP BY) for the per-star distribution, range counts, andwherefiltering. One review per identity per resource (editable, with document history); read-only browsing works without signing in. Also uses the shared browser-safe SDK core from the parent repo. - 👥 token-ops/ — React + TypeScript + Vite app that demonstrates Dash Platform groups and multi-signer governance on testnet, using token operations as the example workflow. Create groups, propose and co-sign group-authorized actions, monitor signing progress, and inspect or reassign operator and admin authorities. Browse-only mode works without signing in.