Soroban contracts and operational docs for the wrapped Pi (wPi) bridge token on Stellar.
| Path | Description |
|---|---|
Stellar-contracts-v1/ |
wpi-token and test AMM contracts integrated with the real USDC SAC |
docs/proof-of-reserve.md |
Off-chain signed reserve attestation process |
docs/release-management.md |
Release management, semantic versioning policy, and deployment artifact tracking |
docs/design/on-chain-reserve-oracle.md |
Medium-term on-chain oracle + mint invariant design |
scripts/por/ |
Attest / verify CLI (Node.js, no dependencies) |
attestations/ |
PoR feed (latest.json is demo until production cadence; schema + attestor pubkey) |
CHANGELOG.md |
Centralized project changelog and release history |
make build
make testDeploy to Stellar testnet with:
make deploy-testnetThis runs scripts/deploy_testnet.sh.
Mainnet deploys require an explicit signer and RPC endpoint:
STELLAR_ACCOUNT=<identity> STELLAR_RPC_URL=<mainnet-rpc-url> make deploy-mainnetThis runs scripts/deploy_mainnet.sh.
See Stellar-contracts-v1/README.md.
# Verify the published attestation
node scripts/por/verify.mjs attestations/latest.json
# Produce a new attestation (requires env — see docs)
node scripts/por/attest.mjs keygen # once; keep secret offline
node scripts/por/attest.mjs attestFull ops guide: docs/proof-of-reserve.md.