This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.
This is a documentation repository for Volta, built with MkDocs (Material theme) and deployed to GitHub Pages. Contains integration guides and API documentation for Stellar/Soroban.
make serve- Local dev servermake build- Build static site tosite/- Deploys automatically to GitHub Pages on push to
mastervia.github/workflows/deploy.yml
docs/- MkDocs source (Markdown documentation)index.md- Top-level landing pagestellar/- Soroban smart contract integration docsindex.md- API reference with TypeScript and Go examplestroubleshooting.md- Error codes and common issuestutorials/- Step-by-step guides (getting-started, first-proposal, integration)
mkdocs.yml- MkDocs configuration
The documentation covers a multi-signature governance contract (M-of-N voting) with:
- Multi-owner configuration with configurable voting thresholds (minimum 2 owners, threshold 2 to N)
- Proposal system: Config (change owners/threshold), Invoke (call other contracts), Upgrade (contract upgrades)
- Proposal lifecycle: Pending → Approved/Rejected/Revoked → Executed (with ~1 week TTL)
Mainnet WASM Hash: ce84b965f3fdbf4ff9ea4c28813a7a30d6dd65c69d0d1bc19834d907a5e0d27b
- The
invoke()method requiresauth_entriesto be provided for sub-contract calls that need the Volta contract's authorization - Invoke proposals auto-count the creator's vote as Yes, requiring only
threshold - 1additional votes - Config and Upgrade proposal execution invalidates all pending proposals
- Cannot use
propose()to create Invoke proposals - must useinvoke()directly