Envio Developer Update March 2026
March saw continued progress across HyperIndex, tooling, and the wider Envio ecosystem. We shipped multiple alpha releases focused on improving scale, flexibility, testing, and observability, alongside new workflows that make it easier to go from idea to production-ready indexers.
Alongside this, we introduced updates across subgraph hosting, agentic indexing workflows, and new ways to explore and interact with prediction market data. Across the ecosystem, we saw strong developer contributions, new projects being built with Envio, and continued momentum leading into upcoming events.
Let's dive in!
π» Alpha Releases: Alpha.15 -> Alpha.19β
Loads of exciting progress landed across the latest alpha releases this month. This stretch focused on improving scale, flexibility, testing, and the overall developer experience across HyperIndex, with a mix of new features, internal improvements, and important updates to observability.
Alpha.15β
π New getWhere operators: _gte, _lte, _inβ
Three new filter operators have been added for getWhere queries, following Hasura-style conventions:
context.Entity.getWhere({ amount: { _gte: 100n } })
context.Entity.getWhere({ amount: { _lte: 500n } })
context.Entity.getWhere({ status: { _in: ["active", "pending"] } })
π¨βπ Support double handler registrationβ
Allows double handler registration for the same event with similar filters:
import { ERC20 } from "generated";
ERC20.Transfer.handler(async ({ event, context }) => {
// Your logic here
});
ERC20.Transfer.handler(async ({ event, context }) => {
// And here
});
π€ Other improvementsβ
We consistently improve HyperIndex to make it easier to contribute to for both humans and AI. Recent work includes:
- Restructuring HyperIndex into a pnpm workspace
- Moving tests from mocha/chai to vitest
- Reworking the CI pipeline to run faster and reuse the production artifact for both testing and publishing
- Developing a highly customisable internal testing framework so AI can create reproduction tests for tricky edge cases
Alpha.18β
β‘ Support indexers with 2.1B+ events per chainβ
Scale indexers approaching int32 limits. Now you can build even larger, more performant indexers with HyperIndex.
π¨ Breaking: Official /metrics endpointβ
Existing Prometheus metrics just got a major upgrade.
We cleaned up metric names and measured data, switched time units to seconds instead of milliseconds, and started following Prometheus naming conventions more closely.
We also added metrics for data points previously covered by the --bench feature.
Starting with v3.0.0, Prometheus metrics are no longer experimental. The /metrics endpoint now follows semver and will be documented.
For more information and to stay up to date with all current and past releases, be sure to check out our release notes below.
π See full release notes
π Star us on GitHub β
Agentic blockchain indexing with Envioβ
We explored what it looks like to go from prompt to production-ready indexers using Envio.
This walkthrough shows how to scaffold an indexer for any EVM-compatible chain, push it to GitHub, and deploy it to Envio's Cloud (previously Hosted Service) without manually touching a config file.
As an example, 400,000+ wstETH events were indexed on Monad in ~20 seconds.
Use the following command to scaffold your indexer:
pnpx envio@3.0.0-alpha.18 init template -t erc20 -l typescript -d ./my-indexer --api-token ""
Learn more in our blog and test it yourself here: https://docs.envio.dev/blog/agentic-blockchain-indexing-envio-hyperindex
Host your subgraphs on Envioβ
Deploy and host your subgraphs with HyperIndex, with a fully subgraph-compatible GraphQL endpoint and no client changes required.
Migrate your existing subgraphs and keep the same API, with faster sync, quicker backfills, and deployments live in less than a day.
The process is handled end-to-end, converting your subgraph to HyperIndex and getting it up and running without needing to manage infrastructure.
Learn more here: https://envio.dev/pricing/subgraphs
Get started on Discord - open a support ticket: https://discord.com/invite/envio
Heatbook: Polymarket Orderbooks as Heatmapsβ
An interface for visualising Polymarket orderbooks using historical heatmaps. Orderbook heatmaps for prediction markets, with 115M+ fills visualised. View any market and explore activity over time.
Supports Polymarket, Limitless, and more soon.
More here: https://heatbook.xyz/
See original post: https://x.com/jonjonclark/status/2031016707309949042?s=20
EthCC[9]: Sapphire Sponsorβ
Envio is a Sapphire sponsor of EthCC[9], taking place at Palais des Festivals in Cannes from March 30 to April 2, 2026.
EthCC is an annual Ethereum community conference bringing together developers, researchers, and teams from across the ecosystem.
The team will be there across the week. Catch our talk on the Monroe stage and swing by our booth - let's chat about your data needs.
P.S. be sure to get your hands on one of our snazzy Envio caps and stickers.
Developer contributions: Uniswap CCA indexerβ
Check out this Uniswap CCA indexer built with HyperIndex to index continuous clearing auction contracts across Ethereum, Base, Arbitrum, and Unichain. It tracks auctions, bids, ticks, steps, and checkpoints, using HyperSync for logs and selective RPC reads for derived onchain state.
Shoutout to @0xdivergence for sharing this and building with Envio.
Check it out on GitHub: https://github.com/dzmbs/uniswap-cca-indexer
Original post on X: https://x.com/0xdivergence/status/1769735600377133273
Open Indexer Benchmarkβ
We believe tech should speak for itself.
That's why we started working on and maintaining the Open Indexer Benchmark (originally forked from Sentio).
An honest, objective benchmark for blockchain indexers.
We're reopening it to benchmark new use cases and warmly welcome all contributions:
https://github.com/enviodev/open-indexer-benchmark
Wonderland CTFβ
Envio is a proud sponsor of the Wonderland CTF. The event takes place on April 1, 2026, in person at EthCC[9] in Cannes.
Wonderland CTF is a capture-the-flag event featuring Solidity and Aztec Noir challenges, with tracks ranging from beginner to advanced and teams of 1 to 5 members.
Create your team and learn more here: https://ctf.wonderland.xyz
Polymarket Whale Tracker TUIβ
We put together a simple whale tracker using HyperSync to track Polymarket whale activity in real time. It follows large traders on Polymarket and surfaces what they're doing as it happens, making it easier to monitor higher-conviction activity without sifting through smaller trades.
Clean, fast, and easy to plug into your workflows.
More here: https://github.com/enviodev/poly-whale-tracker
Run:
npx poly-whales
For a step-by-step guide on how to build your own, see: https://docs.envio.dev/blog/track-polymarket-trades-hypersync
Best blockchain indexers in 2026β
We put together a benchmark-driven comparison of blockchain indexers, looking at how different solutions perform in practice. The guide focuses on how indexers handle real workloads, comparing performance, sync speeds, and overall reliability across different approaches.
It's a practical breakdown of the trade-offs between tools and what to consider when choosing an indexer for your use case.
Learn and compare in our latest blog: https://docs.envio.dev/blog/best-blockchain-indexers-2026