From 029fd70bca83790987798ab204230a7c3dbad6c9 Mon Sep 17 00:00:00 2001 From: memosr Date: Fri, 15 May 2026 21:41:32 +0300 Subject: [PATCH] docs: fix broken anchor line and stale org name in badge URLs MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Two small documentation link fixes: 1. scripts/multiproof/README.md (line 11) — Update anchor link to MockDevTEEProverRegistry.addDevSigner() from #L22 to #L30. Line 22 lands inside the constructor body; the function is actually defined at line 30. 2. README.md — Update all 7 shield.io badge image URLs from base-org/contracts to base/contracts. The repo URL is github.com/base/contracts (confirmed by git remote) and the linked targets already point to the correct path, but the badge image URLs still query stats via the old base-org path. --- README.md | 14 +++++++------- scripts/multiproof/README.md | 2 +- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 9f9ae270..98678945 100644 --- a/README.md +++ b/README.md @@ -8,11 +8,11 @@ For contract deployment artifacts, see [base-org/contract-deployments](https://g -[![GitHub contributors](https://img.shields.io/github/contributors/base-org/contracts)](https://github.com/base/contracts/graphs/contributors) -[![GitHub commit activity](https://img.shields.io/github/commit-activity/w/base-org/contracts)](https://github.com/base/contracts/graphs/contributors) -[![GitHub Stars](https://img.shields.io/github/stars/base-org/contracts.svg)](https://github.com/base/contracts/stargazers) -![GitHub repo size](https://img.shields.io/github/repo-size/base-org/contracts) -[![GitHub](https://img.shields.io/github/license/base-org/contracts?color=blue)](https://github.com/base/contracts/blob/main/LICENSE) +[![GitHub contributors](https://img.shields.io/github/contributors/base/contracts)](https://github.com/base/contracts/graphs/contributors) +[![GitHub commit activity](https://img.shields.io/github/commit-activity/w/base/contracts)](https://github.com/base/contracts/graphs/contributors) +[![GitHub Stars](https://img.shields.io/github/stars/base/contracts.svg)](https://github.com/base/contracts/stargazers) +![GitHub repo size](https://img.shields.io/github/repo-size/base/contracts) +[![GitHub](https://img.shields.io/github/license/base/contracts?color=blue)](https://github.com/base/contracts/blob/main/LICENSE) @@ -24,8 +24,8 @@ For contract deployment artifacts, see [base-org/contract-deployments](https://g -[![GitHub pull requests by-label](https://img.shields.io/github/issues-pr-raw/base-org/contracts)](https://github.com/base/contracts/pulls) -[![GitHub Issues](https://img.shields.io/github/issues-raw/base-org/contracts.svg)](https://github.com/base/contracts/issues) +[![GitHub pull requests by-label](https://img.shields.io/github/issues-pr-raw/base/contracts)](https://github.com/base/contracts/pulls) +[![GitHub Issues](https://img.shields.io/github/issues-raw/base/contracts.svg)](https://github.com/base/contracts/issues) ### Fixing semver-lock CI failures diff --git a/scripts/multiproof/README.md b/scripts/multiproof/README.md index 166f86d1..2a67c804 100644 --- a/scripts/multiproof/README.md +++ b/scripts/multiproof/README.md @@ -8,7 +8,7 @@ This guide covers deploying the multiproof contracts and registering a prover on The scripts in this directory are **development and testing tools only**. They are not suitable for production deployments. Specifically, the NoNitro path (`DeployDevNoNitro.s.sol`): -- Does **no AWS Nitro attestation checking**. Instead it uses a bypass function for quickly registering provers: [`MockDevTEEProverRegistry.addDevSigner()`](https://github.com/base/contracts/blob/main/test/mocks/MockDevTEEProverRegistry.sol#L22) +- Does **no AWS Nitro attestation checking**. Instead it uses a bypass function for quickly registering provers: [`MockDevTEEProverRegistry.addDevSigner()`](https://github.com/base/contracts/blob/main/test/mocks/MockDevTEEProverRegistry.sol#L30) - Uses a simplified mock `AnchorStateRegistry` (with some differences from the real one): [`MockAnchorStateRegistry`](https://github.com/base/contracts/blob/main/scripts/multiproof/mocks/MockAnchorStateRegistry.sol) ---