Thanks for your interest in the Stellar RWA docs! Community contributions are
welcome — in the docs/ directory only.
This repository contains two projects:
docs/— the Next.js + MDX documentation site. This is open to contributions.api/— the Rust indexing service. This is maintainer-only.
⚠️ PRs that modify anything underapi/will be closed.The API is maintained by the core team because it is tied to deployment infrastructure and the on-chain indexer. If you spot an API bug or want a new endpoint, please open an issue describing it rather than sending a PR.
Everything else — fixing typos, clarifying a guide, improving a code example,
adding a new documentation page — is fair game in docs/.
- Accuracy first. Code examples must be real and correct against the deployed contracts and the current API. Don't invent endpoints, fields, or functions.
- No placeholders. No "TODO", no "coming soon", no lorem ipsum.
- Match the voice. Concise, technical, and honest about limitations.
- Use the components.
CalloutBox,ApiEndpoint, and fenced code blocks keep pages consistent. See existing pages for patterns. - Update navigation. If you add a page, add it to
docs/components/nav.ts.
cd docs
npm install
npm run dev # http://localhost:3000
npm run build # must pass before you open a PR- Fork and branch from
main. - Make your changes inside
docs/. - Run
npm run buildindocs/and make sure it passes. - Open a PR with a clear description and, for content changes, a screenshot.
Found a problem with the API? Open an issue with:
- the endpoint and request,
- the response you got and the response you expected,
- the API version (from
GET /).
We'll pick it up from there.