The official documentation for Aura, decentralized prediction markets on Alephium.
Live site: docs.aura.markets
This repository contains the source of the Aura docs site, which covers:
- Guides — getting started, how the built-in wallet works, deposits and withdrawals, trading, creating markets, dispute resolution, and governance.
- Tokens & Vault — $AURA tokenomics, the staking tier system, and how fees and rewards flow through the protocol.
- Tutorials — step-by-step walkthroughs and best-practice guides for market creators and traders.
- API Reference — the public REST API used by integrators, trading bots, and partner applications.
Found a typo, a broken link, or a section that needs clarification? PRs are welcome.
- Fork this repository.
- Edit the relevant
.mdxfile. Pages are organized by section (overview/,getting-started/,markets/,tokens/,governance/,tutorials/,support/,api-reference/). - Open a pull request describing your change.
For substantive content changes (new pages, restructured sections), please open an issue first so we can discuss scope before you spend time writing.
api-reference/openapi.json is the one file to leave alone. It is generated
from the API's live route definitions in the private aura monorepo and
overwritten on every sync, so hand edits are lost. It also carries only the
public subset of the API, since internal endpoint families are filtered out
before publishing. To change it, change the route and re-run
npm run docs:sync-openapi in the monorepo.
The docs are built with Mintlify. To preview your changes locally:
# One-time install
npm install -g mintlify
# From the repo root
mintlify devThe preview runs at http://localhost:3000 with hot reload. Use
mintlify broken-links before opening a PR to catch any dead internal
references.
Windows users:
mintlify devrequires symlink permission. If you see anEPERMerror, enable Developer Mode in Settings → Privacy & Security → For developers, or run your terminal as Administrator. Mintlify also posts a hosted preview URL on every PR, which works regardless of your local setup.
- Voice — second person ("you"), present tense, short sentences.
- Frontmatter — every page starts with
titleanddescription. - Components — Mintlify provides
<Card>,<Steps>,<Tabs>,<Accordion>,<CodeGroup>, and more. See Mintlify components for the full list. - Internal links — use root-relative paths without the
.mdxextension, e.g.[Tier Structure](/tokens/tier-structure). - Math — KaTeX is enabled. Inline
\(...\), block$$...$$. - Images — drop in
images/and reference with/images/foo.png. Prefer SVG for diagrams; keep PNGs under 500 KB.
docs.json Site configuration (navigation, theme, colors)
index.mdx Landing page
overview/ Welcome, introduction, why Alephium, roadmap
getting-started/ Connecting, passkeys, bridging
markets/ Creating, trading, resolution, rewards
tokens/ ALPH, $AURA, tier structure, staking
governance/ Outcome voting, proposal voting
tutorials/ User tutorials, best practices, strategies
support/ FAQ, contact
api-reference/ API tab
introduction.mdx
authentication.mdx
rate-limits.mdx
build-tx-flow.mdx
integrator-guide.mdx
errors.mdx
openapi.json Generated OpenAPI 3.1 spec. DO NOT EDIT BY HAND.
logo/ Brand assets (light + dark)
favicon.png
- App — https://aura.markets
- Telegram — https://t.me/AuraMarkets
- X (Twitter) — https://x.com/AuraMarkets
The documentation in this repository is licensed under CC BY-SA 4.0 — you are free to share and adapt the material, with attribution and under the same license. Code snippets within the documentation are dedicated to the public domain (CC0).