feat(#93): add interactive scanner playground and Stellar quickstart - #96
Merged
truthixify merged 1 commit intoJul 27, 2026
Conversation
…lar quickstart - Add scripts/playground/index.html — sandboxed iframe playground with dark-themed UI: meta-address + key inputs, Load demo keys shortcut, fixture announcement table, match result cards - Add scripts/playground/scanner.js — fully self-contained client-side scanner engine using only SubtleCrypto (SHA-256/SHA-512) and inline Curve25519/ed25519 point arithmetic. Zero third-party dependencies. CSP: default-src 'none'; script-src 'unsafe-inline' - Add scripts/playground/generate-fixtures.mjs — offline script that deterministically derives the demo keypair and computes the 5 fixture announcements (2 matches, 3 noise) written into scanner.js - Add guides/stellar/stellar-quickstart.mdx — 5-step quickstart guide covering key derivation, stealth address generation, scanning, spending, and EVM comparison; embeds the playground via sandboxed iframe with allow-scripts only - Update docs.json — add 'Stellar' nav group under Guides tab with the quickstart as its first page Acceptance criteria met: [x] Playground renders on the quickstart page [x] Runs entirely client-side against fixture data [x] No third-party JS (all crypto inline via Web Crypto API)
|
@Charity5654 Great news! 🎉 Based on an automated assessment of this PR, the linked Wave issue(s) no longer count against your application limits. You can now already apply to more issues while waiting for a review of this PR. Keep up the great work! 🚀 |
Contributor
|
In, thanks. Interactive playground makes the SDK concrete on the docs page, appreciated. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Add scripts/playground/index.html — sandboxed iframe playground with dark-themed UI: meta-address + key inputs, Load demo keys shortcut, fixture announcement table, match result cards
Add scripts/playground/scanner.js — fully self-contained client-side scanner engine using only SubtleCrypto (SHA-256/SHA-512) and inline Curve25519/ed25519 point arithmetic. Zero third-party dependencies. CSP: default-src 'none'; script-src 'unsafe-inline'
Add scripts/playground/generate-fixtures.mjs — offline script that deterministically derives the demo keypair and computes the 5 fixture announcements (2 matches, 3 noise) written into scanner.js
Add guides/stellar/stellar-quickstart.mdx — 5-step quickstart guide covering key derivation, stealth address generation, scanning, spending, and EVM comparison; embeds the playground via sandboxed iframe with allow-scripts only
Update docs.json — add 'Stellar' nav group under Guides tab with the quickstart as its first page
Acceptance criteria met:
[x] Playground renders on the quickstart page [x] Runs entirely client-side against fixture data [x] No third-party JS (all crypto inline via Web Crypto API)
closes #93