Skip to content

docs(ledger): update the verification contract now that anchoring has shipped - #9420

Merged
loopover-orb[bot] merged 1 commit into
mainfrom
docs/ledger-anchoring-verification-contract
Jul 27, 2026
Merged

docs(ledger): update the verification contract now that anchoring has shipped#9420
loopover-orb[bot] merged 1 commit into
mainfrom
docs/ledger-anchoring-verification-contract

Conversation

@JSONbored

Copy link
Copy Markdown
Owner

Summary

Sub-issue of #9267 (external decision-ledger anchoring). Now that #9269-#9274 have all landed on main, the "tamper-evident, not tamper-proof, external anchoring tracked-but-not-built" framing published in what you can verify (row 1) and stated in migrations/0180_decision_ledger.sql's own header comment was stale.

  • Row 1 rewritten: precisely states what's now closed (a wholesale rewrite before an anchor already published before the tamper now requires forging that anchor's signature, or fabricating matching evidence at an external mirror — Rekor and/or GH Archive/Software Heritage) and what still isn't. The remaining gap is stated carefully, per the issue's own requirement chore(release): prepare public gittensory launch #2: a rewrite made since the last checkpoint, followed by ordinary appends afterward, still gets silently absorbed into every anchor published from then on — anchoring bounds how far back an undetected rewrite could reach, it does not make every single row individually external-checkable in real time.
  • "What you cannot verify" table updated: the old "wholesale ledger replacement" row (now largely closed) is replaced with the precise remaining boundary above, worded so it can't be misread as still fully open.
  • Bittensor on-chain anchoring (ledger: Bittensor on-chain commitment backend — optional, Gittensor/SN74-audience corroboration #9277, not yet shipped) is presented in its own clearly-labeled callout as optional, Gittensor/SN74-audience corroboration — never folded into the default two-backend claim every verifier is told to check, per the epic's own scoping.
  • End-to-end verifier walkthrough published as runnable commands: fetch the latest anchor + published signing key, fetch the actual signed artifact (the git-commit backend's JSONL line, or the Rekor transparency-log entry), verify the ECDSA signature completely offline against the published key, then bind the anchor back to the live chain via ledger: GET /v1/public/decision-ledger/row/:seq — bind an anchor back to the live chain #9269's row endpoint and recompute the row hash yourself. Every command was actually run against a real generated keypair + real chain fixture while drafting this PR to confirm the exact scripts work verbatim (see test plan).
  • In-code doc comments updated to match reality: migrations/0180_decision_ledger.sql's header and src/review/decision-record.ts's two matching "HONEST LIMIT" comments (module header + verifyDecisionLedger's own doc comment, which previously said "the exact shape a future external-anchoring job would need") no longer describe anchoring in the present-tense-future; they describe what's actually running today.

Closes #9275.

Test plan

  • Every command in the new walkthrough (steps a-d) verified by hand against a real generated ECDSA P-256 keypair, a real ledgerRowHash computation, and the actual exported verifyLedgerAnchorSignature/anchorKeyById/parseAnchorPublicKeys/ledgerRowHash functions — confirmed node --experimental-strip-types cannot resolve these modules' extensionless relative imports (house convention: that flag is for self-contained scripts only), switched the walkthrough to npx tsx -e with an async IIFE (tsx's -e doesn't support bare top-level await), and re-verified end to end: signature check prints "signature OK", row-hash check prints "row hash OK -- anchor matches the live chain"
  • npx tsc --noEmit clean
  • npx vitest run test/unit/decision-record.test.ts — 32/32 (comment-only changes, no behavior touched)
  • npx tsx scripts/check-docs-drift.ts clean
  • npx tsx scripts/check-migrations.ts clean (comment-only migration change, still 199 contiguous)
  • npm --workspace @loopover/ui run format:check clean
  • npx vitest run on docs-nav.test.tsx, docs-source-server-isolation.test.ts, docs-mdx-eager-scope.test.ts — 58/58

… shipped

Row 1 of what-you-can-verify.mdx and the decision-ledger's own doc comments still said
external anchoring was tracked-but-not-built (#9122's honest-limit framing), but #9269-9274
landed it. Precisely restate what's actually closed (a wholesale rewrite before an already-
published anchor now requires forging its signature or fabricating matching evidence at an
external mirror) and what still isn't (a rewrite made since the last checkpoint, followed by
ordinary appends, still gets silently absorbed into every future anchor -- anchoring bounds
how far back an undetected rewrite could reach, it doesn't make every row checkable in real
time). Publish the end-to-end verifier walkthrough as runnable commands, and present the
optional Bittensor backend (#9277, not yet shipped) as its own clearly-labeled corroboration,
never folded into the default two-backend claim.

Closes #9275.
@cloudflare-workers-and-pages

cloudflare-workers-and-pages Bot commented Jul 27, 2026

Copy link
Copy Markdown

Deploying with  Cloudflare Workers  Cloudflare Workers

The latest updates on your project. Learn more about integrating Git with Workers.

Status Name Latest Commit Preview URL Updated (UTC)
✅ Deployment successful!
View logs
loopover-ui b0a00a4 Commit Preview URL

Branch Preview URL
Jul 27 2026, 05:43 PM

@loopover-orb

loopover-orb Bot commented Jul 27, 2026

Copy link
Copy Markdown
Contributor

Tip

✅ LoopOver review result - approve/merge recommended

Review updated: 2026-07-27 17:59:46 UTC

3 files · 1 AI reviewer · no blockers · readiness 98/100 · CI green · clean

✅ Suggested Action - Approve/Merge

  • safe to merge

Review summary
This is a docs-only content change (plus matching comment updates in decision-record.ts and the migration header) that rewrites the tamper-evidence narrative now that external anchoring (#9267/#9269-9274) has shipped. The rewritten claims are internally consistent — the walkthrough commands reference real exported symbols (verifyLedgerAnchorSignature, anchorKeyById, parseAnchorPublicKeys, ledgerRowHash, loadDecisionLedgerTip) and the code changes are comment-only, so there's no runtime risk. The 'what remains open' framing (unanchored tail since the last checkpoint) is accurate and well-scoped given the code shown.

Nits — 7 non-blocking
  • The linked issue for this PR (docs: update the verification contract once ledger anchoring ships #9275) is only partially covered per the external brief — worth confirming the PR description explicitly closes it rather than just referencing the parent epic orb(trust): external decision-ledger anchoring — Rekor + git-commit, from tamper-evident to tamper-proof #9267.
  • apps/loopover-ui/content/docs/what-you-can-verify.mdx's new walkthrough references `./src/review/ledger-anchor.ts` and its exports (verifyLedgerAnchorSignature, anchorKeyById, parseAnchorPublicKeys) — these aren't in the visible diff/file content, so confirm that file and those exports actually exist as named.
  • No test-path changes accompany this PR (flagged by the engine classifier), which is expected for a docs+comment-only change but worth calling out explicitly in the PR description.
  • The `console` flags at what-you-can-verify.mdx:85/103 are just `console.log` calls inside example bash/tsx snippets embedded in prose, not actual debug leftovers in shipped code — false positive, but worth double-checking the snippet output messages stay accurate if the underlying scripts change.
  • Consider adding a one-line note in the anchor-verification walkthrough about what happens if `anchors?limit=1` returns zero anchors (e.g., anchoring job hasn't run yet) so a reader following the steps isn't confused by an empty response.
  • PR author also opened the linked issue — Link an issue that was opened by a different contributor, or provide a rationale for why this self-authored issue represents genuine discovery work.
  • Code changes lack test evidence — Add focused regression tests or explain why existing coverage is sufficient.

Decision drivers

  • ✅ Code review — No blockers (1 reviewer)
  • ✅ Gate result — Passing (No configured blocker found.)
Context & advisory signals — never blocks the verdict
Signal Result Evidence
Linked issue ✅ Linked #9275
Related work ✅ No active overlap found No same-issue or scoped active PR overlap found.
Change scope ✅ 20/20 Low review scope from cached public metadata (1 linked issue).
Validation posture ✅ 25/25 PR body includes validation/test evidence.
Contributor workload ✅ 10/10 Author activity: 13 registered-repo PR(s), 13 merged, 345 issue(s).
Contributor context ✅ Confirmed Gittensor contributor JSONbored; Gittensor profile; 13 PR(s), 345 issue(s).
Improvement ℹ️ None detected risk: low · value: none · LLM: moderate
Linked issue satisfaction

Addressed
The PR rewrites row 1 of what-you-can-verify.mdx with the precise anchoring claim and boundary, adds the Bittensor/#9277 corroboration in its own clearly-labeled optional callout, publishes a runnable end-to-end verifier walkthrough, updates the 'what you cannot verify' table with the precise remaining gap, and updates both the migration header comment and decision-record.ts doc comments to presen

Review context
  • Author: JSONbored
  • Role context: owner (maintainer lane)
  • Public audience mode: oss maintainer
  • Lane context: Repository is configured for direct PR review.
  • Public profile languages: Python, TypeScript, Ruby, Go, MDX, Shell, Solidity, JavaScript
  • Official Gittensor activity: 13 PR(s), 345 issue(s).
  • PR-specific overlap: none found.
Contributor next steps
  • Start here: Treat this as maintainer-lane context rather than normal contributor-lane activity.
Signal definitions
  • Related work = same linked issue, overlapping active PRs, or title/path similarity.
  • Change scope = cached public metadata such as size labels, draft state, and review-burden hints.
  • Validation posture = whether the PR provides enough public validation/test evidence for maintainer review.
  • Contributor workload = public contributor activity and cleanup pressure, not a repo-wide quality failure.
  • Contributor context = public GitHub/Gittensor identity context; non-Gittensor status is not a blocker.
🧪 Chat with LoopOver

Ask LoopOver a question about this PR directly in a comment — grounded only in the same cached, public-safe facts shown above, never a new claim.

  • @loopover ask <question> answers contribution-quality Q&A with source citations and freshness.
  • @loopover chat <question> answers in natural prose from cached decision-pack facts via local inference (maintainer/collaborator; read-only).
  • A plain-language @loopover mention with a real question is routed to the closest matching read-only command automatically — no exact syntax required.

Full command reference: https://loopover.ai/docs/loopover-commands

🧪 Experimental — new and may change.

Visual preview
Route Viewport Before (production) After (this PR's preview) Diff
/ desktop before /
before /
after /
after /
/ mobile before / (mobile)
before / (mobile)
after / (mobile)
after / (mobile)

Click any thumbnail to open the full-size screenshot. Before = production · After = this PR's preview deploy.

Scroll preview
Route Before (production) After (this PR's preview)
/ before / (scroll)
before / (scroll)
after / (scroll)
after / (scroll)

A short scroll-through clip (desktop) — click either thumbnail to open the full animation. Evidence for scroll-linked behavior a single screenshot can't show.

🟩 Safe / merged · 🟦 Advisory · 🟨 Held for review · 🟥 Blocked / closed


💰 Earn for open-source contributions like this. Gittensor lets GitHub contributors earn for the work they already do — register to start earning →.

Checked by LoopOver, a quiet PR intelligence layer for OSS maintainers.

  • Re-run LoopOver review

@superagent-security

Copy link
Copy Markdown
Contributor

Superagent didn't find any vulnerabilities or security issues in this PR.

@codecov

codecov Bot commented Jul 27, 2026

Copy link
Copy Markdown

Bundle Report

Changes will increase total bundle size by 73 bytes (0.0%) ⬆️. This is within the configured threshold ✅

Detailed changes
Bundle name Size Change
loopover-ui 7.51MB 73 bytes (0.0%) ⬆️

Affected Assets, Files, and Routes:

view changes for bundle: loopover-ui

Assets Changed:

Asset Name Size Change Total Size Change (%)
assets/add-scalar-classes-qODnIipi.js (New) 2.16MB 2.16MB 100.0% 🚀
assets/tanstack-vendor-DUFU_Epe.js (New) 819.0kB 819.0kB 100.0% 🚀
openapi.json -15.14kB 536.57kB -2.74%
assets/docs.fumadocs-spike-api-reference-DQxmiiUS.js (New) 443.45kB 443.45kB 100.0% 🚀
assets/AgentScalarChatInterface.vue-CkojA480.js (New) 201.7kB 201.7kB 100.0% 🚀
assets/modal-DhogfHhH.js (New) 184.5kB 184.5kB 100.0% 🚀
assets/client-LUMAZbcw.js (New) 151.47kB 151.47kB 100.0% 🚀
assets/maintainer-panel-ZmHwE9iz.js (New) 78.99kB 78.99kB 100.0% 🚀
assets/what-you-can-verify-BFyFqYSi.js (New) 47.74kB 47.74kB 100.0% 🚀
assets/routes-8-edcWXf.js (New) 35.96kB 35.96kB 100.0% 🚀
assets/owner-panel-BLgw4QZ8.js (New) 27.92kB 27.92kB 100.0% 🚀
assets/app-B6ixQY_H.js (New) 25.78kB 25.78kB 100.0% 🚀
assets/ui-vendor-oL6wADxF.js (New) 24.57kB 24.57kB 100.0% 🚀
assets/miner-panel-CGezV2_c.js (New) 20.24kB 20.24kB 100.0% 🚀
assets/app.runs-gNAqdu-e.js (New) 20.22kB 20.22kB 100.0% 🚀
assets/api._op-p4nEfIc2.js (New) 17.57kB 17.57kB 100.0% 🚀
assets/self-hosting-docs-audit-DxQizu4X.js (New) 16.6kB 16.6kB 100.0% 🚀
assets/docs._slug-CXJSX0SK.js (New) 15.52kB 15.52kB 100.0% 🚀
assets/playground-panel-CfmVNCCE.js (New) 14.42kB 14.42kB 100.0% 🚀
assets/fairness-Ciyb0Xwt.js (New) 10.73kB 10.73kB 100.0% 🚀
assets/app.audit-uet2HACI.js (New) 10.08kB 10.08kB 100.0% 🚀
assets/app.config-generator-yIX18BER.js (New) 10.06kB 10.06kB 100.0% 🚀
assets/maintainers-BsuI_JJW.js (New) 8.06kB 8.06kB 100.0% 🚀
assets/miners-CTzhQvvA.js (New) 7.91kB 7.91kB 100.0% 🚀
assets/agents--7aVJ3aY.js (New) 7.74kB 7.74kB 100.0% 🚀
assets/commands-panel-DI0LHrYV.js (New) 6.65kB 6.65kB 100.0% 🚀
assets/maintainer-workflow-sN7Q-ZqH.js (New) 6.52kB 6.52kB 100.0% 🚀
assets/digest-panel-HinZTnvW.js (New) 6.15kB 6.15kB 100.0% 🚀
assets/repos._owner._repo.quality-B7cUwvfb.js (New) 6.14kB 6.14kB 100.0% 🚀
assets/docs-nav-BbJ5ULxu.js (New) 6.01kB 6.01kB 100.0% 🚀
assets/docs.index-C-mkWlq1.js (New) 5.95kB 5.95kB 100.0% 🚀
assets/api.index-HAF-I5zV.js (New) 4.7kB 4.7kB 100.0% 🚀
assets/docs-DXotwC_H.js (New) 2.7kB 2.7kB 100.0% 🚀
assets/api-Bln8J8sg.js (New) 2.69kB 2.69kB 100.0% 🚀
assets/docs-page-ByXw8IUs.js (New) 2.1kB 2.1kB 100.0% 🚀
assets/table-B-KMXoMb.js (New) 1.75kB 1.75kB 100.0% 🚀
assets/app.workbench-CPzvIgUh.js (New) 1.58kB 1.58kB 100.0% 🚀
assets/tabs-CpG_ej8T.js (New) 1.39kB 1.39kB 100.0% 🚀
assets/app.repos-DwF0Sgpw.js (New) 1.07kB 1.07kB 100.0% 🚀
assets/input-DA1jBzpm.js (New) 796 bytes 796 bytes 100.0% 🚀
assets/file-cog-C3HJC3vi.js (New) 758 bytes 758 bytes 100.0% 🚀
assets/app.maintainer-CsABm01j.js (New) 502 bytes 502 bytes 100.0% 🚀
assets/app.owner-BBS5pmJ2.js (New) 474 bytes 474 bytes 100.0% 🚀
assets/app.commands-BOh1ksjx.js (New) 455 bytes 455 bytes 100.0% 🚀
assets/app.playground-DvfdNEDA.js (New) 442 bytes 442 bytes 100.0% 🚀
assets/index-DEYAKbEU.js (New) 438 bytes 438 bytes 100.0% 🚀
assets/app.digest-BFeWh6S8.js (New) 430 bytes 430 bytes 100.0% 🚀
assets/eye-off-DcJ4GLba.js (New) 430 bytes 430 bytes 100.0% 🚀
assets/app.miner-C52oUEqu.js (New) 422 bytes 422 bytes 100.0% 🚀
assets/key-round-CJ1VR9OQ.js (New) 355 bytes 355 bytes 100.0% 🚀
assets/bot-CSo8Xk2V.js (New) 328 bytes 328 bytes 100.0% 🚀
assets/trash-2-xV1zYABa.js (New) 328 bytes 328 bytes 100.0% 🚀
assets/save-DeebjpmF.js (New) 327 bytes 327 bytes 100.0% 🚀
assets/git-pull-request-arrow-YsWCGwrf.js (New) 321 bytes 321 bytes 100.0% 🚀
assets/list-checks-B-yISHuH.js (New) 279 bytes 279 bytes 100.0% 🚀
assets/compass-B2SUmHR9.js (New) 251 bytes 251 bytes 100.0% 🚀
assets/history-D8gXIrH-.js (New) 237 bytes 237 bytes 100.0% 🚀
assets/message-square-BnK1uG0_.js (New) 233 bytes 233 bytes 100.0% 🚀
assets/lock-85L00g4g.js (New) 206 bytes 206 bytes 100.0% 🚀
assets/rotate-cw-BohwuM24.js (New) 201 bytes 201 bytes 100.0% 🚀
assets/play-CO_56JtB.js (New) 190 bytes 190 bytes 100.0% 🚀
assets/circle-check-CmeODinG.js (New) 178 bytes 178 bytes 100.0% 🚀
assets/search-DkGLCX9c.js (New) 174 bytes 174 bytes 100.0% 🚀
assets/add-scalar-classes-CpI4LlF1.js (Deleted) -2.16MB 0 bytes -100.0% 🗑️
assets/tanstack-vendor-ZHSGfIpT.js (Deleted) -826.56kB 0 bytes -100.0% 🗑️
assets/docs.fumadocs-spike-api-reference-Cz9Ol15I.js (Deleted) -443.45kB 0 bytes -100.0% 🗑️
assets/AgentScalarChatInterface.vue-DIhGZOLS.js (Deleted) -201.7kB 0 bytes -100.0% 🗑️
assets/modal-DY2koA2D.js (Deleted) -184.5kB 0 bytes -100.0% 🗑️
assets/client-YP54DuxY.js (Deleted) -151.47kB 0 bytes -100.0% 🗑️
assets/maintainer-panel-IkEMJcsl.js (Deleted) -78.99kB 0 bytes -100.0% 🗑️
assets/routes-DH9xJiFT.js (Deleted) -35.96kB 0 bytes -100.0% 🗑️
assets/owner-panel-h3mwlzj7.js (Deleted) -27.92kB 0 bytes -100.0% 🗑️
assets/app-BvqA3vSI.js (Deleted) -25.78kB 0 bytes -100.0% 🗑️
assets/what-you-can-verify-GK7R7n_z.js (Deleted) -24.96kB 0 bytes -100.0% 🗑️
assets/ui-vendor-D71b_2y5.js (Deleted) -24.57kB 0 bytes -100.0% 🗑️
assets/miner-panel-D2N5us6E.js (Deleted) -20.24kB 0 bytes -100.0% 🗑️
assets/app.runs-ByvhwOUX.js (Deleted) -20.22kB 0 bytes -100.0% 🗑️
assets/api._op-DUSI3Noh.js (Deleted) -17.57kB 0 bytes -100.0% 🗑️
assets/self-hosting-docs-audit-dI4SaYzc.js (Deleted) -16.6kB 0 bytes -100.0% 🗑️
assets/docs._slug-Dne4mf-h.js (Deleted) -15.52kB 0 bytes -100.0% 🗑️
assets/playground-panel-BUy4E23F.js (Deleted) -14.42kB 0 bytes -100.0% 🗑️
assets/fairness-Bk3lCHj7.js (Deleted) -10.73kB 0 bytes -100.0% 🗑️
assets/app.audit-6bNFBd9W.js (Deleted) -10.08kB 0 bytes -100.0% 🗑️
assets/app.config-generator-Dnu8MMgy.js (Deleted) -10.06kB 0 bytes -100.0% 🗑️
assets/maintainers-BEwvpKTF.js (Deleted) -8.06kB 0 bytes -100.0% 🗑️
assets/miners-Dkjm3bey.js (Deleted) -7.91kB 0 bytes -100.0% 🗑️
assets/agents-bmf9hn-b.js (Deleted) -7.74kB 0 bytes -100.0% 🗑️
assets/commands-panel-B7x4Syux.js (Deleted) -6.65kB 0 bytes -100.0% 🗑️
assets/maintainer-workflow-Bz6DEfEv.js (Deleted) -6.52kB 0 bytes -100.0% 🗑️
assets/digest-panel-D8q1bBFM.js (Deleted) -6.15kB 0 bytes -100.0% 🗑️
assets/repos._owner._repo.quality-D8yFT0lH.js (Deleted) -6.14kB 0 bytes -100.0% 🗑️
assets/docs-nav-DqhA0I4H.js (Deleted) -6.01kB 0 bytes -100.0% 🗑️
assets/docs.index-33v27osy.js (Deleted) -5.95kB 0 bytes -100.0% 🗑️
assets/api.index-B-h233ka.js (Deleted) -4.7kB 0 bytes -100.0% 🗑️
assets/docs-JkSIH33H.js (Deleted) -2.7kB 0 bytes -100.0% 🗑️
assets/api-C81QcTA5.js (Deleted) -2.69kB 0 bytes -100.0% 🗑️
assets/docs-page-Dofgxuxx.js (Deleted) -2.1kB 0 bytes -100.0% 🗑️
assets/table-BONmlBFM.js (Deleted) -1.75kB 0 bytes -100.0% 🗑️
assets/app.workbench-DiKcS1na.js (Deleted) -1.58kB 0 bytes -100.0% 🗑️
assets/tabs-DCCF-o8o.js (Deleted) -1.39kB 0 bytes -100.0% 🗑️
assets/app.repos-fCK0Y-na.js (Deleted) -1.07kB 0 bytes -100.0% 🗑️
assets/input-DzgUANZQ.js (Deleted) -796 bytes 0 bytes -100.0% 🗑️
assets/file-cog-BSDe5_Ik.js (Deleted) -758 bytes 0 bytes -100.0% 🗑️
assets/app.maintainer-C-JNy6wz.js (Deleted) -502 bytes 0 bytes -100.0% 🗑️
assets/app.owner-DGG4IXCT.js (Deleted) -474 bytes 0 bytes -100.0% 🗑️
assets/app.commands-DeVxZhf9.js (Deleted) -455 bytes 0 bytes -100.0% 🗑️
assets/app.playground-BfE7kMKU.js (Deleted) -442 bytes 0 bytes -100.0% 🗑️
assets/index-hpUrtR0k.js (Deleted) -438 bytes 0 bytes -100.0% 🗑️
assets/app.digest-yYZW4QRT.js (Deleted) -430 bytes 0 bytes -100.0% 🗑️
assets/eye-off-ETk-EX3F.js (Deleted) -430 bytes 0 bytes -100.0% 🗑️
assets/app.miner-Bh7dbe8J.js (Deleted) -422 bytes 0 bytes -100.0% 🗑️
assets/key-round-DgAm0pbL.js (Deleted) -355 bytes 0 bytes -100.0% 🗑️
assets/bot-BQgHuluP.js (Deleted) -328 bytes 0 bytes -100.0% 🗑️
assets/trash-2-2q6FzgB5.js (Deleted) -328 bytes 0 bytes -100.0% 🗑️
assets/save-CGUfk9RT.js (Deleted) -327 bytes 0 bytes -100.0% 🗑️
assets/git-pull-request-arrow-BT6p6-_K.js (Deleted) -321 bytes 0 bytes -100.0% 🗑️
assets/list-checks-DrqHIbuM.js (Deleted) -279 bytes 0 bytes -100.0% 🗑️
assets/compass-DC8SieJU.js (Deleted) -251 bytes 0 bytes -100.0% 🗑️
assets/history-CTkoGyhN.js (Deleted) -237 bytes 0 bytes -100.0% 🗑️
assets/message-square-CHtpriXQ.js (Deleted) -233 bytes 0 bytes -100.0% 🗑️
assets/lock-DRJapHT_.js (Deleted) -206 bytes 0 bytes -100.0% 🗑️
assets/rotate-cw-C_uC1zM7.js (Deleted) -201 bytes 0 bytes -100.0% 🗑️
assets/play-CIpbjZJE.js (Deleted) -190 bytes 0 bytes -100.0% 🗑️
assets/circle-check-C_6Bk7lt.js (Deleted) -178 bytes 0 bytes -100.0% 🗑️
assets/search-C3jlCuwJ.js (Deleted) -174 bytes 0 bytes -100.0% 🗑️

@codecov

codecov Bot commented Jul 27, 2026

Copy link
Copy Markdown

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 89.53%. Comparing base (6faa9a8) to head (b0a00a4).
⚠️ Report is 1 commits behind head on main.
✅ All tests successful. No failed tests found.

Additional details and impacted files
@@           Coverage Diff           @@
##             main    #9420   +/-   ##
=======================================
  Coverage   89.53%   89.53%           
=======================================
  Files         843      843           
  Lines      109913   109913           
  Branches    26184    26184           
=======================================
  Hits        98411    98411           
  Misses      10239    10239           
  Partials     1263     1263           
Flag Coverage Δ
backend 95.25% <ø> (ø)

Flags with carried forward coverage won't be shown. Click here to find out more.

Files with missing lines Coverage Δ
src/review/decision-record.ts 100.00% <ø> (ø)

@loopover-orb loopover-orb Bot left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LoopOver approves — the gate is satisfied and CI is green.

@loopover-orb
loopover-orb Bot merged commit 4164e09 into main Jul 27, 2026
11 checks passed
@loopover-orb
loopover-orb Bot deleted the docs/ledger-anchoring-verification-contract branch July 27, 2026 17:59
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

docs: update the verification contract once ledger anchoring ships

1 participant