-
Notifications
You must be signed in to change notification settings - Fork 10
Add dev update june blog & related assets #666
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
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
WalkthroughA new developer update blog post for June 2025 was added. The post summarizes recent releases, new API helpers, loader and batching improvements, project structure changes, community highlights, guides, upcoming events, and a featured developer section. No code or exported entities were modified; only documentation was updated. Changes
Sequence Diagram(s)Possibly related PRs
Suggested reviewers
Poem
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. 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
SupportNeed help? Create a ticket on our support page for assistance with any issues or questions. Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
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: 0
🧹 Nitpick comments (6)
blog/2025-06-24-dev-update-june-2025.md (6)
23-25
: Typo in release heading (“V2.220” → “v2.22.0”)The heading shows “V2.220”, which doesn’t map to any tagged release and likely should read “v2.22.0”.
-### V2.220 +### v2.22.0
29-53
: Specify a language for the fenced code block
markdownlint
(MD040) flags this block because no language is set. Addingts
(orjs
) enables syntax-highlighting and avoids the lint error.-``` +```ts // Before: // let pool = await context.Pool.get(poolId); ... const pool = await context.Pool.getOrThrow(poolId, `Pool with ID ${poolId} is expected.`)--- `110-112`: **Grammar: “how much prices diverge” → “how far prices diverge”** “Prices” is a countable plural, so “how much” is awkward here. ```diff -Curious how much prices diverge across the same Uniswap V4 pools deployed on different chains? +Curious how far prices diverge across the same Uniswap V4 pools deployed on different chains?
147-148
: Add comma for clarityA brief comma keeps the conversational tone but reads more cleanly.
-Missed our speaking slot at DappCon? We got you boo! +Missed our speaking slot at DappCon? We got you, boo!
176-179
: Indentation triggers MD046 (“code-block style”)The triple-asterisk quotation is accidentally indented as code. Remove the four-space indent (or use
> blockquote
) so it renders as intended.- ***“Initially, I found Envio's developer experience ... +***“Initially, I found Envio's developer experience ...
13-15
: Consistent spelling of “multichain”LanguageTool suggests using the single word “multichain” instead of “multi-chain” to stay consistent with project docs (and avoids repeated lint warnings). Consider updating all occurrences.
Example:
-...query multi-chain data with Envio. +...query multichain data with Envio.(Apply similarly on other highlighted lines.)
Also applies to: 79-80, 137-138, 193-194
📜 Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro
⛔ Files ignored due to path filters (9)
static/blog-assets/analyzing-safe-data.png
is excluded by!**/*.png
static/blog-assets/arbitrage-v4.png
is excluded by!**/*.png
static/blog-assets/dev-of-the-month-june-2025.png
is excluded by!**/*.png
static/blog-assets/dev-update-june-2025.png
is excluded by!**/*.png
static/blog-assets/index-data-on-monad.png
is excluded by!**/*.png
static/blog-assets/june-playlist.png
is excluded by!**/*.png
static/blog-assets/megaeth.png
is excluded by!**/*.png
static/blog-assets/pragma-jonjon.png
is excluded by!**/*.png
static/blog-assets/visualizers-and-dash-monad.png
is excluded by!**/*.png
📒 Files selected for processing (1)
blog/2025-06-24-dev-update-june-2025.md
(1 hunks)
🧰 Additional context used
🪛 LanguageTool
blog/2025-06-24-dev-update-june-2025.md
[misspelling] ~13-~13: This word is normally spelled as one.
Context: ...oject structure improvements to smarter multi-chain batching and smoother loader behavior, ...
(EN_COMPOUNDS_MULTI_CHAIN)
[misspelling] ~79-~79: This word is normally spelled as one.
Context: ...n for the next batch. Learn more about multi-chain event ordering in our [docs](https://do...
(EN_COMPOUNDS_MULTI_CHAIN)
[style] ~90-~90: Consider using a less common alternative to make your writing sound more unique and professional.
Context: ...st update, none of these are necessary. Feel free to remove them, and instead of using <code...
(FEEL_FREE_TO_STYLE_ME)
[grammar] ~110-~110: Use “many” with countable plural nouns like ‘prices’.
Context: ... arbitrage" width="100%"/> Curious how much prices diverge across the same Uniswap ...
(MUCH_COUNTABLE)
[misspelling] ~137-~137: This word is normally spelled as one.
Context: ... how to easily access, index, and query multi-chain data with Envio. Still need a ticket? ...
(EN_COMPOUNDS_MULTI_CHAIN)
[uncategorized] ~147-~147: Possible missing comma found.
Context: ...ed our speaking slot at DappCon? We got you boo! Learn how Envio’s HyperIndex unloc...
(AI_HYDRA_LEO_MISSING_COMMA)
[uncategorized] ~162-~162: A punctuation mark might be missing here.
Context: ...c.io/) Cannes: 30th June → 3rd July 2025 * [Pragma](https://ethglobal.com/events/pra...
(AI_EN_LECTOR_MISSING_PUNCTUATION)
[misspelling] ~193-~193: This word is normally spelled as one.
Context: ...478a) ## Ship With Us 🚢 Envio is a multi-chain EVM blockchain indexing solution for qu...
(EN_COMPOUNDS_MULTI_CHAIN)
🪛 markdownlint-cli2 (0.17.2)
blog/2025-06-24-dev-update-june-2025.md
20-20: Emphasis used instead of a heading
null
(MD036, no-emphasis-as-heading)
29-29: Fenced code blocks should have a language specified
null
(MD040, fenced-code-language)
176-176: Code block style
Expected: fenced; Actual: indented
(MD046, code-block-style)
Summary by CodeRabbit