-
Notifications
You must be signed in to change notification settings - Fork 54
Update 4-blockchain-indexing-services.md #76
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
1. Updated Holesky to Hoodi 2. Grammar change (“Goldsky also allow us” to “Goldsky also allows us”)
WalkthroughSimple documentation edits in a single Markdown file: replace references to Morph Holesky with Morph Hoodi in Goldsky and Envio sections, fix a grammar issue (“allow” → “allows”), and slightly adjust wording without changing URLs. Changes
Estimated code review effort🎯 1 (Trivial) | ⏱️ ~2 minutes Poem
Pre-merge checks and finishing touches❌ Failed checks (1 inconclusive)
✅ Passed checks (2 passed)
✨ Finishing touches🧪 Generate unit tests
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. 🧪 Early access (Sonnet 4.5): enabledWe are currently testing the Sonnet 4.5 model, which is expected to improve code review quality. However, this model may lead to increased noise levels in the review comments. Please disable the early access features if the noise level causes any inconvenience. Note:
Comment |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actionable comments posted: 1
🧹 Nitpick comments (1)
docs/build-on-morph/developer-resources/use-ecosystem-developer-tools/4-blockchain-indexing-services.md (1)
28-28
: Consider more descriptive link text for accessibility.The link text "here" is not descriptive. Consider using more meaningful text that describes the link destination, such as "live indexer examples" or "Envio's live indexer explorer."
Apply this diff to improve link accessibility:
-Click [here](https://envio.dev/explorer) for live indexer examples to be inspired. +Click [Envio's live indexer explorer](https://envio.dev/explorer) for examples to inspire your implementation.
📜 Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro
📒 Files selected for processing (1)
docs/build-on-morph/developer-resources/use-ecosystem-developer-tools/4-blockchain-indexing-services.md
(1 hunks)
🧰 Additional context used
🪛 markdownlint-cli2 (0.18.1)
docs/build-on-morph/developer-resources/use-ecosystem-developer-tools/4-blockchain-indexing-services.md
28-28: Link text should be descriptive
(MD059, descriptive-link-text)
🔇 Additional comments (2)
docs/build-on-morph/developer-resources/use-ecosystem-developer-tools/4-blockchain-indexing-services.md (2)
12-12
: Grammar correction is accurate.The change from "allow" to "allows" correctly fixes the subject-verb agreement for the singular subject "Goldsky."
20-20
: Network name update is consistent.This change correctly updates the testnet name to "Morph Hoodi," maintaining consistency with the earlier change on line 10.
 | ||
|
||
We have partnered with Goldsky to provide indexing and subgraph services for Morph Holesky and Morph Mainnet. | ||
We have partnered with Goldsky to provide indexing and subgraph services for Morph Hoodi and Morph Mainnet. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🧩 Analysis chain
Network name update looks correct.
The change from "Morph Holesky" to "Morph Hoodi" appears to be part of a testnet rebranding. Ensure all references to the old testnet name have been updated consistently across the documentation.
Run the following script to check for any remaining references to "Holesky" that may need updating:
🏁 Script executed:
#!/bin/bash
# Description: Search for remaining references to "Holesky" in documentation
# Search for "Holesky" case-insensitively in all markdown files
rg -i "holesky" --type=md -n -C2
Length of output: 34708
Rename all remaining “Holesky” references to “Hoodi” across documentation.
Update every occurrence in docs/quick-start/, docs/build-on-morph/, docs/code-examples/**, SDK enumeration files, and other developer-resources.
🤖 Prompt for AI Agents
In
docs/build-on-morph/developer-resources/use-ecosystem-developer-tools/4-blockchain-indexing-services.md
around line 10, there remains the string “Holesky” that must be renamed to
“Hoodi”; search the repo (at minimum docs/quick-start/**,
docs/build-on-morph/**, docs/code-examples/**, SDK enumeration files, and any
developer-resources) for any case variants of “Holesky” and perform a safe
replace to “Hoodi” (preserve capitalization where appropriate), update affected
filenames and internal links/refs, adjust any enum keys or string constants in
SDK files to the new name, and run link checks/lint/tests to ensure no broken
references remain.
Summary by CodeRabbit