Envio Developer Update June 2025

June, you beauty.
From refining core DX with new helpers and project structure improvements to smarter multi-chain batching and smoother loader behavior, we shipped updates that made indexing with Envio faster, cleaner, and easier to work with.
We also wrapped up Mission 4 with the Monad community, ran another internal hackathon, hit DappCon Berlin, and plenty more. Let’s jump in.
Latest Releases: v2.22.0 → v2.24.0
⚠️Note: Current Release is v2.24.0
V2.220
Added context.Entity.getOrCreate
and context.Entity.getOrThrow
API
// Before:
// let pool = await context.Pool.get(poolId);
// if (!pool) {
// pool = {
// id: poolId,
// totalValueLockedETH: 0n
// }
// context.Pool.set(pool);
// }
const pool = await context.Pool.getOrCreate({
id: poolId,
totalValueLockedETH: 0n
})
// Before:
// const pool = await context.Pool.get(poolId);
// if (!pool) {
// throw new Error(`Pool with ID ${poolId} is expected.`)
// }
const pool = await context.Pool.getOrThrow(poolId)
// Will throw: Entity 'Pool' with ID '...' is expected to exist.
// Or you can pass a custom message as a second argument:
const pool = await context.Pool.getOrThrow(poolId, `Pool with ID ${poolId} is expected.`)
These are additional helpers for DX improvements. Accessible from both handlers and loaders.
Loaders Consistency
Loaders optimize indexer performance by running twice: first in parallel for all events in the batch, and then just before handler execution to fetch the latest data. While this process remains unchanged, we've made a few improvements:
-
If the loader fails on the first run, the error is silently ignored. This can happen if the entity is only available on the second run, so we continue indexing without interruption.
-
The HyperIndex test framework now runs the loaders twice to match the actual indexer logic.
Learn more about optimizing database access with loaders in our docs.
Clever Batch Creation for Unordered Multichain Mode
In previous versions, events for Unordered Multichain Mode were batched based on their order on-chain, pulling from all available chains. While this approach worked, it's more efficient for larger indexers relying on loader optimization to batch events from a single chain. This increases the chances of deduplication and batch optimization.
In the latest version, we now prioritize creating processing batches with events from one chain, and only rotate to another chain for the next batch.
Learn more about multi-chain event ordering in our docs.
Flexible Project Structure
Previously, to get HyperIndex running, we had a few requirements that limited flexibility and could be confusing:
- It required
pnpm-workspaces.yaml
file - It required
.npmrc
file with shamefully hoisting dependencies - It required to have the start script in your
package.json
withts-node generated/src/Index.bs.js
With the latest update, none of these are necessary. Feel free to remove them, and instead of using ts-node generated/src/Index.bs.js
, simply replace it with envio start
.
For more information, view all past and current release notes on our GitHub.
If you love what we’re building as much as we do and want to stay updated on our latest releases and developments, give us a star on GitHub! Your support means the world to us! ⭐
Mission 4: Building Visualizers & Dashboards on Monad

As part of Mission 4 with the Monad Developer community, we invited builders to push the limits of real-time dashboards and visualizers on Monad, powered by Envio. The outcome? A wave of standout projects that combined sharp design with serious indexing performance.
Catch the highlights in our blog.
Exploring Cross-Chain Arbitrage on Uniswap V4

Curious how much prices diverge across the same Uniswap V4 pools deployed on different chains? One builder tracked ETH/USDC across Ethereum, Base, Arbitrum, and Unichain, building a real-time dashboard that surfaces price discrepancies, trade sizes, and cross-chain spread opportunities as they appear.
V4 digs into how often mispricings occur, how significant they get, and how quickly they're arbitraged, highlighting the unique challenges of cross-chain arbitrage.
Read more on X.
Internal Hackathon
This month, we wrapped up another internal hackathon. 24 hours, 7 hackers, and a stack of ideas. The goal? Build fast, test new concepts, and push Envio’s tech in new directions.
Take a look at what we shipped by reading this thread.
How to Index Data on MegaEth Using Envio

When speed is the baseline, precision becomes the edge. Envio proudly supports developers and data analysts building on MegaEth with the most performant real-time indexing stack designed for high-throughput environments. Get fast, reliable access to both real-time and historical data without the usual bottlenecks.
Learn more about how to efficiently index data on MegaEth in our blog.
Join Us at Pragma Cannes

We’re heading to EthGlobal’s Pragma in Cannes and running a hands-on workshop built for developers. Learn how to easily access, index, and query multi-chain data with Envio.
Still need a ticket? Grab $70 off with our referral link.
Analyzing Safe Data in Real-time Using HyperIndex

Missed our speaking slot at DappCon? We got you boo! Learn how Envio’s HyperIndex unlocks instant visibility into Safe transactions, from multisig behavior to governance and fund flows in our developer workshop.
How to Index Data on Monad Using Envio

Envio is proud to support developers and data analysts building on Monad by providing the most efficient and reliable access to real-time and historical data on the Monad network through our modular indexing stack.
Learn more about how to efficiently index data on Monad in our blog.
Upcoming Events 🗓️
- WAGMI Sponsors at EthCC Cannes: 30th June → 3rd July 2025
- Pragma Cannes: July 3rd, 2025
- Devconnect Buenos Aires: 17th → 22nd November 2025
Featured Developer 🧑💻

This month’s featured developer is Thalles Passos. He’s a full-stack developer from Brazil who started building professionally at just 17. Thalles began his journey with Notus Labs and is now working on Notus API, where the team is creating a complete suite for account abstraction.
He’s also been an active part of the Envio community, giving thoughtful feedback and pushing our indexing tools in real use cases.
“Initially, I found Envio's developer experience a bit unusual and wasn't convinced it was the right fit. However, once I gave it a real try, I was absolutely blown away by its speed. What other indexers might take weeks to accomplish, Envio completed in mere days, and that instantly hooked me.
Their support also truly impressed me. As anyone in web3 knows, getting effective support can be an impossible feat, but Envio completely changed that for me, guiding me through various issues. And as a Brazilian company, where the dollar exchange rate is always a consideration, their pricing structure was incredibly appealing and genuinely surprised us.” - Thalles Passos Full-stack Developer At Notus Labs
Be sure to follow Thalles on X and check out his work on GitHub to see what he’s building next.
Playlist of the Month 🎧️

▶️ Open Spotify
Ship With Us 🚢
Envio is a multi-chain EVM blockchain indexing solution for querying real-time and historical data. If you’re working on a Web3 project and want a smoother development process, Envio’s got your back(end). Check out our docs, join the community, and let’s talk about your data needs.
Stay tuned for more monthly updates by subscribing to our newsletter, following us on X, or hopping into our Discord for more up-to-date information.
Website | X | Discord | Telegram | GitHub | YouTube | Reddit