Cauldron/README.md
bch_qp3hvzy09lzcm46qm4cd 66e0acc0be snapshot: docs.riftenlabs.com/cauldron/ (28 pages) - author: Riften Labs
Backup of Cauldron docs at snapshot time. Canonical source of truth:
  https://docs.riftenlabs.com/cauldron/

Includes: whitepaper, liquidity/swap/yield/wallets, developer resources,
knowledge base, and the full API section (bcmr, broadcast, cauldron,
contract-subscribe, ido, moria_v11, oracle, root, tokenbch, tokentoken).
Supporting CSS/JS bundle preserved so pages render offline.
2026-09-02 04:05:04 +02:00

2 KiB

Cauldron

Backup of the Cauldron documentation site — a decentralized exchange on Bitcoin Cash built by Riften Labs: liquidity pools, on-chain token swapping, oracle integration, and yield primitives.

Authorship

Cauldron is the work of Riften Labs. This repo on Hephaestus is a snapshot for continuity — the canonical source of truth is:

If you're evaluating Cauldron, always cross-check the canonical docs above.

What's in this repo

  • docs/cauldron/ — snapshot of every page under docs.riftenlabs.com/cauldron/ (28 pages: whitepaper, liquidity, swap, yield, wallets, developer resources, knowledge base, plus the API section and its sub-endpoints)
  • assets/, javascripts/, stylesheets/ — supporting CSS/JS so the offline copy renders (Material for MkDocs bundle)

Every docs/**/index.html is the exact HTML served by the site at snapshot time; open in a browser (or npx serve .) to read offline.

Refreshing this snapshot

The snapshot script is trivial — fetch sitemap.xml, grep for /cauldron/, and curl each URL:

curl -s https://docs.riftenlabs.com/sitemap.xml \
  | grep -oE '<loc>[^<]+cauldron[^<]*</loc>' \
  | sed 's|<[^>]*>||g' \
  | while read url; do
      path="${url#https://docs.riftenlabs.com/}"
      mkdir -p "docs/${path%/}"
      curl -s -o "docs/${path%/}/index.html" "$url"
    done

Rerun and commit if you want a fresher backup.