Read-only MCP server: verify credentials and browse escrows on the Stellar testnet contract.
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β or use 1-click editor setup below.
π‘ Paste into ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
A reusable prove, verify, pay primitive for on-chain credentials, built for Stellar PH Bootcamp 2026
Issue, verify, and pay graduates on Stellar testnet: Soroban smart contract, 8 supported wallets plus WalletConnect for mobile (Freighter, Albedo, LOBSTR, xBull & more), installable PWA, end-to-end.

| Live demo | stellaroid.tech |
| Contract (current) | CAD6C24POQGRYXMBNBEGVDHUROF5ZC37XRDC6NCVILTXWMYJIBMISZCV |
| Tx evidence | init Β· register Β· verify |
| Source verification | Deployed WASM hash 1b7479f1ca0f12846bbfdd8f0681670692e29e1f20618150912f010b7caf4b9f. Rebuilding the v3.0.0 release tag reproduces it byte for byte, and the deployed bytecode records its own build toolchain (rsver 1.95.0, rssdkver 26.1.0, cliver 27.0.0) so you can check it without trusting this README. Verified weekly by contract-verification.yml. Runbook: docs/operations/contract-verification.md. |
| Submission | Rise In Β· Stellar Smart Contract Bootcamp Β· Stellar PH Bootcamp 2026 |
| Result | Top 5 / 105 participants Β· Score: 75.00 Β· full journey |

The bootcamp/event submission is complete. Stellaroid Earn is now maintained as a living Stellar credential proof project.
ROADMAP.mdMAINTENANCE.mddocs/README.mddocs/operations/release-and-deployment.mddocs/planning/research-intake-status.mddocs/operations/demo-checklist.mdstellaroid.tech/status/pilot/case-studyHANDOFF.mdassets/campaign/www.stellaroid.tech and earn.stellaroid.tech redirect to the canonical apex URL.
Each monthly build cycle is preserved as a frozen snapshot at a pinned subdomain, independent of the live site:
| Version | Cycle | Snapshot |
|---|---|---|
| v1 | April | v1.stellaroid.tech |
| v2 | June | v2.stellaroid.tech |
| v3 | July (current) | v3.stellaroid.tech |
stellaroid.tech always serves the latest production build (main). The April source lives on the april-bootcamp-and-monthly-builder branch; June and July on june-monthly-builder and july-monthly-builder.
/demo: the full register β verify β escrow β payout story on real seeded testnet data (a released 25 XLM escrow and a live funded one), with per-step stellar.expert audit links. No wallet, no extension, works on a phone./opportunity: every live escrowed paid trial on the contract, with wallet-scoped filters (for you / created by you) and deep links into the milestone console./app shows the events involving your connected wallet./pilot has a real lead-capture form (rate-limited, honeypot-guarded, delivered by email) instead of a link-out, plus /contact, an honest privacy & terms page, and an RFC 9116 security.txt./app dropped 483 β ~260 KB gzipped), the brand typefaces (Orbitron/Exo 2) are self-hosted via next/font, and first-party client-error telemetry reports runtime failures to server logs with no third-party service./docs: contract reference (all 19 functions, 17 error codes, 16 events), integration, architecture, and security posture.llms.txt.The public entry flow is organized around three personas: Issue, Verify, and Hire. Verified proof pages now hand employers into /employer with the proof hash and candidate wallet preloaded, then require a review checklist before escrow creation. They also hand recruiters into /talent/<address>?proof=<hash> so the candidate passport can show a known proof without pretending wallet-wide credential discovery exists yet. Issuer registration now explains approval readiness before signing, and /pilot keeps the first rollout bounded to a small testnet issuer pilot. Employer proof packs include a recruiter-safe summary plus an unsigned standards-alignment preview for W3C VC 2.0 and Open Badges 3.0 mapping. That preview is not a signed standards credential yet.
Problem: Bootcamp certificates are PDFs that anyone can fake and no one can independently verify. Employers skip verification or pay for a background check service.
Solution: Stellaroid Earn anchors credential hashes on a Soroban smart contract where approved issuers register and verify certificates, anyone checks proof at a public URL with no login, and employers pay graduates in XLM on Stellar testnet, all on-chain.
Why Stellar: Sub-cent fees and 5-second finality make issuing credentials cheap enough that skipping it makes no sense. simulateTransaction lets anyone verify with zero wallet setup. Native XLM via SAC closes the loop from proof to payout on one chain.

![]() Discover - Landing page with 3-step how-it-works flow |
![]() Verify - On-chain credential with green Verified badge |
![]() Issue & Pay - Dual-role dashboard for issuers and employers |
![]() Share - QR-scannable proof card on any mobile browser |
Every credential produces a public Verified Badge URL - no wallet, no login, no API key. Green means verified on-chain. Amber means issued but not yet verified.
![]() Verified Try it yourself β |
![]() Issued (locked) Try it yourself β |
Contract on Stellar Expert: CAD6C24Pβ¦ISZCV

Full architecture document:
docs/reference/architecture.md
Design decisions:
#[contracterror] enum (17 variants), persistent + instance storage, TTL 518k/1.04M ledgersrevalidate=60 (CDN-cached proof pages) + client-side simulateTransaction (dashboard state)sendTransaction β poll for resultconnect-src to *.stellar.org and the WalletConnect relay - no other third-party originsThe frontend talks to the deployed stellaroid_earn contract with @stellar/stellar-sdk. The client lives in frontend/src/lib/contract-client.ts (writes + client-side reads) and frontend/src/lib/contract-read-server.ts (server-rendered proof pages). The SDK is lazy-loaded so its multi-megabyte bundle stays out of every route's first load.
Every public contract function has a matching typed wrapper in the client. The wrapper passes the exact contract function name to Operation.invokeContractFunction:
Contract function (contracts/stellaroid_earn/src/lib.rs) | Frontend wrapper (contract-client.ts) |
|---|---|
register_issuer | registerIssuer() |
approve_issuer | approveIssuer() |
suspend_issuer | suspendIssuer() |
get_issuer | getIssuer() (read / simulateTransaction) |
register_certificate | registerCertificate() |
verify_certificate | verifyCertificate() |
get_certificate | getCertificate() (read / simulateTransaction) |
revoke_certificate | revokeCertificate() |
suspend_certificate | suspendCertificate() |
reward_student | rewardStudent() |
link_payment | linkPayment() |
create_opportunity | createOpportunity() |
fund_opportunity | fundOpportunity() |
submit_milestone | submitMilestone() |
approve_milestone | approveMilestone() |
release_payment | releasePayment() |
refund_opportunity | refundOpportunity() |
get_opportunity | getOpportunity() (read / simulateTransaction) |
The network passphrase in NEXT_PUBLIC_STELLAR_NETWORK_PASSPHRASE must match the network the contract is deployed on (testnet), or the wallet rejects the signature.
wasm32v1-none targetFull setup guide: docs/reference/pre-workshop-setup-guide.pdf
CI runs the contract gate with cargo test -p stellaroid_earn --locked and cargo build -p stellaroid_earn --target wasm32v1-none --release --locked in Contract CI.
Environment variables (.env.local):
Every action in the demo flow is a real transaction on Stellar testnet. Click any hash to verify on Stellar Expert.
| Action | Tx Hash | Result |
|---|---|---|
init | faf278d7β¦85e6 | Contract initialized with admin + XLM token |
register_certificate | 8c20a944β¦a0e8 | Demo credential hash registered for student |
verify_certificate | 67137aa8β¦2cb9 | Status changed to Verified |
Live certificates (testnet, contract CAD6C24Pβ¦):
| Hash | Cohort | Status |
|---|---|---|
c02ce160β¦aea3 | Stellar PH Bootcamp 2026 | Verified |
| Function | Caller | Description |
|---|---|---|
init(admin, token) | Deployer | Initialize contract with admin address and XLM token |
register_issuer(address, name, website, category) | Anyone | Submit issuer application (Pending status) |
approve_issuer(admin, issuer) | Admin | Approve an issuer to register credentials |
suspend_issuer(admin, issuer) | Admin | Suspend a misbehaving issuer |
get_issuer(issuer) | Anyone | Read issuer record and status |
register_certificate(issuer, student, cert_hash, title, cohort, metadata_uri) | Approved issuer | Register a credential hash for a graduate |
verify_certificate(issuer, cert_hash) | Admin or issuer | Mark a credential Verified |
revoke_certificate(issuer, cert_hash) | Admin or issuer | Permanently revoke a credential |
suspend_certificate(issuer, cert_hash) | Admin or issuer | Temporarily suspend a credential |
reward_student(student, cert_hash, amount) | Admin | Admin-initiated XLM payment to a graduate |
link_payment(employer, student, cert_hash, amount) | Employer | Employer pays graduate in XLM, linked to credential |
get_certificate(cert_hash) | Anyone | Read full credential record and status |
create_opportunity(employer, candidate, cert_hash, title, amount, milestone_count) | Employer | Open a paid-trial escrow against a verified credential |
fund_opportunity(employer, opp_id) | Employer | Escrow the full trial amount into the contract |
submit_milestone(candidate, opp_id) | Candidate | Mark the next milestone as delivered |
approve_milestone(employer, opp_id) | Employer | Approve the submitted milestone |
release_payment(employer, opp_id) | Employer | Release the approved milestone share to the candidate |
refund_opportunity(employer, opp_id) | Employer | Return remaining escrowed funds to the employer |
get_opportunity(opp_id) | Anyone | Read a paid-trial opportunity record |
Contract tests cover the trust layer, access control, revocation, opportunity escrow, milestone caps, and events:
| Test | What it verifies |
|---|---|
| t1 | Happy path: approved issuer registers + verifies credential, admin rewards student |
| t2 | Pending (unapproved) issuer cannot register a credential |
| t3 | Suspended issuer cannot register a credential |
| t4 | Approved issuer A cannot verify issuer B's credential |
| t5 | Revoked credential blocks downstream payments |
| t6 | Events emitted correctly for init, register_issuer, approve_issuer |
| t7-t10 | Opportunity create, fund, submit, approve, release, refund, and invalid transition behavior |
| t11 | Opportunity milestone count is capped to prevent unbounded work/rendering |
| t12 | Employer can refund after candidate submission to avoid escrow lock |
Full security checklist: docs/reference/security.md
Covers: smart contract access control, frontend CSP/HSTS/X-Frame-Options, strict input validation, JSON-LD escaping, URL sanitization, proof-claim integrity, fee-sponsor restrictions, error normalization, SSRF prevention, and operational security.
Stellaroid Earn keeps fee bump transaction support (CAP-0015) behind a server-to-server authorization boundary. Public browser clients do not automatically send signed XDR to /api/fee-bump.
How it works:
/api/fee-bump with Authorization: Bearer <FEE_SPONSOR_TOKEN>Implementation:
frontend/src/app/api/fee-bump/route.tsfrontend/src/lib/fee-bump-policy.tsFEE_SPONSOR_SECRET + FEE_SPONSOR_TOKEN are server-only. Public browser auto-sponsorship stays disabled; trusted server callers must provide the bearer token explicitly./status#metrics - public contract-event evidence, proof hashes, reward/payment events, and source labels on the operational status page/api/health - cached JSON health check (config, RPC latency, contract availability)/api/events - structured contract event data for external consumers/api/events/stream - short-lived Server-Sent Events stream for live demo refreshes without adding a database/api/mcp - read-only remote Model Context Protocol endpoint (Streamable HTTP, no auth) so AI agents can verify credentials, inspect issuers, and browse escrowed paid trials; built on Vercel's mcp-handler + the official MCP TypeScript SDK
Contract events are read from two public sources. The app first queries Soroban RPC getEvents for recent contract events, then supplements that result with Stellar Expert's public contract event index so older testnet activity does not disappear from the demo surface when the RPC retention window moves on. Events are decoded from ScVal/XDR where possible, categorized by kind (cert_reg, cert_ver, reward, payment), deduplicated, source-labelled, and served through /api/events, /api/events/stream, plus /status#metrics.
This remains a lightweight serverless evidence layer, not a full analytics warehouse. Vercel page analytics and custom events help inspect proof/share/employer flow interest without storing raw wallet addresses or proof hashes; durable proof history, issuer conversion, and long-term product analytics still require a first-party read model.
| Component | Version |
|---|---|
| Soroban SDK | 26.1.0 |
| Stellar CLI | 26+ |
| Next.js | 15 (App Router) |
| React | 19 |
| @stellar/stellar-sdk | latest |
| @stellar/freighter-api | latest |
| @albedo-link/intent | latest |
| Tailwind CSS | v4 |
| PWA | manifest + service worker + iOS splash set |
Full walkthrough: landing page β about β app dashboard (wallet connect) β issuer console β verified proof page β on-chain evidence on Stellar Expert.
The demo video is committed in this repository so the submission does not depend on an expiring external upload URL.
Demo Day slides: /slides (integrated into the app, arrow keys to navigate)
Submission/demo checklist: docs/operations/demo-checklist.md
Submission evidence map: docs/operations/submission-evidence.md
Stellaroid Earn has 54 of the targeted 50 documented testnet wallet accounts with public network activity. That total is two groups: 30 independent participant wallets from the testnet review, plus 24 controlled QA accounts that I operate myself for structured product verification. Both groups are listed in full below and every wallet and transaction links to Stellar Expert.
The 24 QA accounts are disclosed as QA personas, not as independent people. So the figure above is wallet-account coverage with real network activity. It is not a claim of 54 separate users, and the independent participant count remains 30.
30 independent participant wallet addresses from the Stellar testnet review are listed for public review. Each wallet address is verifiable on Stellar Expert. Some wallets have direct contract interactions such as register_issuer; others are funded participant wallets used during the review flow. The committed feedback snapshot keeps participant names and emails redacted.
The 24 QA account addresses that complete the 54-account total are listed separately in the guided QA evidence log, so each group stays checkable on its own.
| # | Wallet Address | Verified On-Chain |
|---|---|---|
| 1 | GCBBBLZVJVVM2ZMXPNMDN2ATH7AJ2H4BHOKA7JOJT6EMWTOKCGRKUK6I | Stellar Expert |
| 2 | GALGZBDSFG4FRTFSO7XLURBJRYC6PA34H73IF66G7BZOXXQDMWSHPXEU | Stellar Expert |
| 3 | GAWJEP7LWY7WPLP7SBPR4MWQGQJIBAHVNVXYQE33F5FL2VFMFGBBFZ4B | Stellar Expert |
| 4 | GCBZAJUZXRHNLVR4RCG743KSTKQSVFKXQCNYWAH4FVHDVSS5IT6DWSI3 | Stellar Expert |
| 5 | GAQZJQPZI7YZBUN6YVAFACVKAH6ODNBO3DVELP34VW4MLLUBCL5DMMNS | Stellar Expert |
| 6 | GAYOZX7LSYYYROU4SEBKGOOHOPUWYORPXEDHZJOXZ5Q45XZED7IMXG2U | Stellar Expert |
| 7 | GDVNNL2QFO4PFYDLVLZTL2GKKOZR3YBV2AIIV7U44DXDOKKRJFIMLWCB | Stellar Expert |
| 8 | GCFL24VJA3LPZLIOJ3AAVGCUGOW4A7ZUWNNEGR332IZ2MHMUWCTK3GVG | Stellar Expert |
| 9 | GBNVAVBVELOM2FBBPWDTUBM5DRECBY2MKPZ6YYO3CNKKSFCUUSE3HAU5 | Stellar Expert |
| 10 | GBWATJDBLCF7PPUQYBWBXCUQ5ZXRHKHZ7RAFHWZ4SLMNH45VBRPAXXYY | Stellar Expert |
| 11 | GDBJYDYLU3JH7V6X6KHPWQOSRQNXTL7OYTD6HUNVGB2J6Y7CUUX4WW6R | Stellar Expert |
| 12 | GA6DCDZIIP3FGLIAU5FLUZLBBFCM6XD26JDJVJCA6EL2LKY5OKA7YAQF | Stellar Expert |
| 13 | GBTNI3CULIDVJWABRYF5T56W7COYTA5JCRD3EAKO3VDSDWCUT2ZHSLAO | Stellar Expert |
| 14 | GD2PSTZL2YQC66C4PGFS5D64A6473IEKCZKNMIM5B7JWVLVS2N27D7QU | Stellar Expert |
| 15 | GCZJCXZTC5KELSLQJU6QUIDMRZ2HFTUIDYL3PCOKGR7XRAFI373DO6PU | Stellar Expert |
| 16 | GCD4WRBPCKIPMDKLQA2LRAGYOIWCVRXJI4XNW4TI2ECVNKQO3T2XUSHG | Stellar Expert |
| 17 | GBJXD5H457AKCFEGTSKYMD4MRSBBMGTUCOKEBU6YQ7TKNZ7SY2W37KKY | Stellar Expert |
| 18 | GAGR7D5K4VL5HNOZCL6CYZIGT5FNYZW7I5WXGX6HSBZLLVQ3NG77XBAO | Stellar Expert |
| 19 | GAZXPBADNPTKWAGUWZM6KWEMIO4MQVU4GW3ZJXKHEO4BOBL5SLERSQYR | Stellar Expert |
| 20 | GDANCIDPUHS4IQUNHRM5RNKVOXTRR5RKIYYEE7HVPB2RWD76J66CS2DH | Stellar Expert |
| 21 | GCHZOQCDMG5J6NC2MNAR6EH5JFGI6JEP7TQWWUDRWER75Q3W3NC52HMG | Stellar Expert |
| 22 | GC54CLYWNJ2AQZCAA2LVXOR2XTNGGCZYDSEJLLQBV6D4EDXN6D6DFGPX | Stellar Expert |
| 23 | GDTJBRZXXMOWPF3LPMM7V4WOBIPLGR6BXTRDBYH6VCBRBL5Y76NK5JHY | Stellar Expert |
| 24 | GDK5LNJFLU5LLNQDDZJ4SUPXASK7SULASCAGEHF5IT65FX2FYZ56CHAM | Stellar Expert |
| 25 | GBTY2BMYVRP2SFSFJXMHFQ6XQOKUS5JEZEAF3ZI5356FK7EQN56G57QE | Stellar Expert |
| 26 | GANDLIFPFLNRYMIK6PG3BQU437PVUDLKS2VBCBYAMCJOKYZPRJWGORSU | Stellar Expert |
| 27 | GAVCDYPJLPA2W4EYIMDXPSGAMUJDDOCSGNVZAX7UER4B4AKLVSDZSEIT | Stellar Expert |
| 28 | GARXSQZMDE4YF5IL6TWDAF4IAQG326JWAMOB5MAVAM3BOTXKM47Q6AQC | Stellar Expert |
| 29 | GBS6ERMNCYSO2EK7VPAGJP6TI6IEKGRJNUTKZWJ7KDBLY7Y6MG3CFEWF | Stellar Expert |
| 30 | GCOON62FGOWAW44SAWI3UKNJY52W7RD4CIBEQFZJEI2J56MWOCKUENAC | Stellar Expert |
Alongside the independent participant review, 24 controlled QA user accounts completed eight structured issuer, candidate, and employer journeys on the public testnet contract. The run produced 64 QA-account-signed transactions plus eight facilitator approvals, including eight verified credentials and eight released 1 XLM paid opportunities.
The guided QA evidence log links every public account and transaction. The organization, credential, cohort, and opportunity names are fictional scenario data. The guided QA accounts are included in the 54-account testnet coverage total and identified by their QA purpose in the evidence log.
docs/planning/user-feedback-responses.xlsx (plain-text CSV also committed: user-feedback-responses.csv)docs/planning/user-feedback.mdEvery improvement below maps to a piece of pilot feedback and the commit that shipped it:
| Feedback | Improvement | Commit |
|---|---|---|
| "Issuer vs Employer toggle was confusing at first" | Contextual role guidance hints below the persona toggle | c1450bf |
| "Not clear which role to pick after connecting wallet" | Fresh-state hint now shows what both roles do, so a new user can choose | 09c9d45 |
| "Would like to see transaction history in the dashboard" | Added a wallet-scoped "Activity involving your wallet" panel on /app | fa0c5d0 |
| "Mobile support would be great for checking proofs on the go" | Mobile-first redesign, installable PWA, and WalletConnect mobile signing | 145f6ad |
| "Would be nice to have a list of all credentials I've issued" | Clarified where issued credentials surface, with a link to full account history | eb181b8 |
Mark Siazon - Hybrid Product Designer & Full-Stack Developer
MIT License - see LICENSE for details.
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/stellaroid-earn)<a href="https://allmcps.com/mcp/stellaroid-earn"><img src="https://allmcps.com/api/badge/stellaroid-earn?style=directory" alt="Stellaroid Earn on AllMCPs" /></a>