docs: point Flags contract link at chainlink-evm - #23794
Open
imitater-dou wants to merge 2 commits into
Open
imitater-dou wants to merge 2 commits into
imitater-dou wants to merge 2 commits into
Conversation
The relative path ../contracts/src/v0.8/Flags.sol 404s in this repo because contracts live in smartcontractkit/chainlink-evm. Point the docs link at the current Flags.sol location. Signed-off-by: ADou <ikun3.1415927@gmail.com>
docs/CONFIG.md is generated from docs/*.toml and still embeds the broken relative Flags.sol link. Update it alongside the source toml so readers see the fix immediately without regenerating. Signed-off-by: ADou <ikun3.1415927@gmail.com>
product-security-plaid-production
Bot
requested a review
from justinkaseman
September 22, 2026 02:32
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
The EVM config docs link the Flags contract to a relative path that 404s in this repository. Contracts were moved out to
smartcontractkit/chainlink-evm; update the link to the currentFlags.sollocation.Repro (at tip
7559dd282b193718c34bbc2dcda6f5cb548a87c9ondevelop)Broken relative target in this repo (404):
Correct location in chainlink-evm (200):
Source drift in
core/config/docs/chains-evm.toml(~line 66):[Flags contract](../contracts/src/v0.8/Flags.sol)[Flags contract](https://github.com/smartcontractkit/chainlink-evm/blob/develop/contracts/src/v0.8/l2ep/Flags.sol)Why both files
docs/CONFIG.mdis generated fromdocs/*.toml(header: generated from docs/*.toml - DO NOT EDIT) and still embeds the same broken relative link. Updating the source toml alone leaves published/generated docs broken until regenerate; this PR updates both so readers see the fix immediately.Intentionally not touching
core/services/chainlink/CONFIG.md(short stub without the Flags link).Changes
core/config/docs/chains-evm.toml— fix Flags contract markdown linkdocs/CONFIG.md— same link fix in the generated docs embed