Skip to content

Commit e666572

Browse files
authored
docs: remove PR references from documentation and examples (#32)
1 parent 568ec74 commit e666572

10 files changed

Lines changed: 15 additions & 15 deletions

File tree

docs/implementation/dispute-verification.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Dispute Verification (PR11)
1+
# Dispute Verification
22

33
Tooling to verify disputed settlements using the full MPCP chain plus optional ledger anchor.
44

@@ -30,7 +30,7 @@ if (result.verified) {
3030
## Inputs
3131

3232
- **context** — Full `SettlementVerificationContext` (settlement, artifacts, policy grant, SBA, SPA, decision, settlement intent)
33-
- **ledgerAnchor** — Optional `AnchorResult` from intent anchoring (PR10)
33+
- **ledgerAnchor** — Optional `AnchorResult` from intent anchoring
3434

3535
## Output
3636

docs/implementation/fleet-operator-tooling.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Fleet Operator Tooling (PR12)
1+
# Fleet Operator Tooling
22

33
CLI features for fleet operators: settlement verification logs and fleet policy summary.
44

docs/implementation/intent-anchoring.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
# Intent Anchoring (PR10)
1+
# Intent Anchoring
22

33
Optional support for publishing intent hashes to distributed ledgers. Provides public auditability, dispute protection, and replay protection.
44

5-
**Mock anchor** is included for development. **Hedera HCS** adapter is implemented (PR14). XRPL and EVM are future work.
5+
**Mock anchor** is included for development. **Hedera HCS** adapter is implemented. XRPL and EVM are future work.
66

77
## Purpose
88

@@ -55,7 +55,7 @@ interface AnchorResult {
5555

5656
Anchoring is **optional**. MPCP verification does not require an anchor. Anchors are used for:
5757

58-
- Dispute resolution (PR11)
58+
- Dispute resolution
5959
- Audit trails
6060
- Compliance and attestation
6161

@@ -69,7 +69,7 @@ The `mockAnchorIntentHash` function simulates anchoring without contacting a led
6969

7070
**Validation:** Requires 64-char hex intentHash. Throws on invalid input. Only accepts `rail: "mock"` — passing other rails throws to avoid confusion with real ledger behavior.
7171

72-
## Hedera HCS Adapter (PR14)
72+
## Hedera HCS Adapter
7373

7474
The Hedera HCS adapter publishes intent hashes to a Hedera Consensus Service topic.
7575

docs/implementation/offline-payments.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Offline Payment Authorization (PR8D)
1+
# Offline Payment Authorization
22

33
MPCP enables **offline machine payments** using pre-authorized spending envelopes. Autonomous systems can complete payments when network connectivity is unavailable.
44

docs/implementation/reference-profiles.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# MPCP Reference Profiles (PR15)
1+
# MPCP Reference Profiles
22

33
Named deployment profiles for MPCP. Adopters choose a profile instead of inventing their own rules — reducing ambiguity and making integration easier.
44

examples/machine-commerce/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Fleet Spend Policy Simulator (PR8C)
1+
# Fleet Spend Policy Simulator
22

33
A lightweight SBA (SignedBudgetAuthorization) policy simulator. Tests fleet spending constraints against payment scenarios before deploying to real vehicles or robots.
44

examples/machine-commerce/demo-fleet.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ function log(msg) {
5757
}
5858

5959
log("");
60-
log("MPCP Automated Fleet Payment Demo (PR8B)");
60+
log("MPCP Automated Fleet Payment Demo");
6161
log("=========================================");
6262
log("");
6363
log("Machine-to-machine payment loop:");

examples/machine-commerce/simulate.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ const defaultAsset = { kind: "IOU", currency: "RLUSD", issuer: "rIssuer" };
6262
const asset = (policy.allowedAssets ?? [defaultAsset])[0];
6363

6464
log("");
65-
log("MPCP Fleet Spend Policy Simulator (PR8C)");
65+
log("MPCP Fleet Spend Policy Simulator");
6666
log("=========================================");
6767
log("");
6868
log("Policy:");

examples/parking/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ Committed artifacts use fixed timestamps (`expiresAt: 2030-12-31`, `nowISO: 2026
5353

5454
---
5555

56-
## Machine Wallet Guardrails Demo (PR8A)
56+
## Machine Wallet Guardrails Demo
5757

5858
A narrative demo that illustrates **autonomous spend guardrails**: machine wallets spending within cryptographically enforced limits, with local verification and tamper detection.
5959

@@ -83,7 +83,7 @@ The script runs the full MPCP flow, prints a step-by-step narrative, writes `gua
8383

8484
---
8585

86-
## Offline Payment Demo (PR8D)
86+
## Offline Payment Demo
8787

8888
Demonstrates **offline machine payments**: vehicle holds pre-authorized policy chain, completes payment when network is unavailable.
8989

examples/parking/demo-offline.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ function log(msg) {
5151
}
5252

5353
log("");
54-
log("MPCP Offline Payment Authorization Demo (PR8D)");
54+
log("MPCP Offline Payment Authorization Demo");
5555
log("=================================================");
5656
log("");
5757
log("Scenario: Vehicle enters underground garage — NO NETWORK");

0 commit comments

Comments
 (0)