This repository hosts the static documentation website and generators for the Evo JS SDK, adapted from the wasm-sdk site.
- Generate docs and AI reference:
yarn docs:generate
(orpython3 scripts/generate_docs.py
)- Regeneration also refreshes
public/dist
with the latest Evo SDK bundle built inplatform/packages/js-evo-sdk/dist
.
- Check documentation status:
yarn docs:check
(orpython3 scripts/check_docs.py
)
yarn website:serve
open http://localhost:8081/index.html
public/docs.html
— human-friendly docs with EvoSDK examplespublic/AI_REFERENCE.md
— compact list of queries and transitionspublic/docs_manifest.json
— manifest used for CI checks
- The generator reads
public/api-definitions.json
(no fallbacks). - The Evo SDK module is expected at
public/dist
; build the SDK workspace withyarn workspace @dashevo/evo-sdk build
before regenerating docs to copy it over.