Envio Developer Update | November 2025

Envio Developer Update November 2025

November 26, 2025 · 9 min read

November was a big month of product updates, mainnet support and ecosystem activity. We shipped v2.32.0 with new Effect API controls, rolled out full indexing support for Monad Mainnet, and published guidance for teams affected by the Alchemy Subgraphs shutdown to help them migrate their subgraphs to Envio. HyperSync delivered strong benchmarking results on Sonic, and we wrapped up multiple hackathons across MetaMask, Monad and Encode. We also spent time with builders across Edge City in Patagonia and Devconnect in Buenos Aires. Let’s dive in.

🚨 Exciting Release: Version 2.32.0 🚨

🧪 Effect API: Goodbye Experimental Prefix

We’ve officially removed the experimental_prefix from the Effect API and introduced some major improvements to indexing visibility and query flexibility.

This update comes with two new features:

RateLimit option lets you control how often Effects are called, with support for custom durations

• Disable cache for specific Effect calls using context.cache = false

Effect API, released on May 8, served us well, and we officially removed the experimental_ prefix from createEffect.

export const getMetadata = createEffect(
  {
    name: "getMetadata",
    input: S.string,
    output: S.optional(S.schema({
      description: S.string,
      value: S.bigint,
    })),
    // Protect your API from burst Effect calls
    rateLimit: {
      calls: 5,
      per: "second"
    },
    cache: true,
  },
  async ({ input, context }) => {
    try {
      const response = await fetch(`https://api.example.com/metadata/${input}`);
      const data = await response.json();
      return {
        description: data.description,
        value: data.value,
      };
    } catch(_) {
      // Don't cache failed response
      context.cache = false
      return undefined;
    }
  }
);

📺 Development Console Insights

The Development Console now shows detailed performance metrics for every Effect API execution. You can see execution time, rate limits, and caching behaviour at a glance, making it much easier to debug and fine tune performance. A simple way to get more visibility and improve your indexer.

🔎 New getWhere.lt Query

You can now use context.<Entity>.getWhere.<FieldName>.lt to filter entities where field values are lower than a given value. This adds more flexibility for granular queries and custom data filtering directly within your indexers.

👉 See full release notes

👉 Star us on GitHub

Monad Mainnet Is Live: Learn How to Index Data on Monad

Envio is live on Monad Mainnet. Get easy access to real-time and historical data on Monad through performant syncing and a smooth, high performance indexing experience from day one. We supported teams throughout testnet and continue to provide the same fast, reliable indexing setup for a growing ecosystem on Mainnet.

If you are live or going live on Monad and need help getting set up, chat to us about your data needs in Discord. For more on how to index data on Monad, read our blog article.

How to Migrate Alchemy Subgraphs to Envio

Alchemy Subgraphs are officially sunsetting on December 8, 2025. Many teams relying on their subgraph service will need a new solution before that date to avoid downtime.

Envio is supporting affected teams with 2 months of free hosting, faster backfills, multichain indexing, and full white-glove migration support to help you move over smoothly. HyperIndex gives you a modern indexing setup with real-time syncing and production ready deployments, making the transition quick and reliable.

If your subgraphs are affected and you need to migrate, chat to our team or check out this page for more information and we will help you get set up.

For a full walkthrough on how to migrate, read our guide on How to Migrate Alchemy Subgraphs to Envio.

MetaMask x Envio Advanced Permissions Hackathon is Live

We have partnered with MetaMask for the Advanced Permissions Dev Cook-Off hackathon, inviting developers to build with ERC-7715 and ship new agent and automation ideas. The hack is now live with $10,000 in total prizes available.

For full details and registration, check the event page on HackQuest.

Stable Radar: Monitoring USDC Transactions in Real-Time

Stable Radar is a new live visualisation that tracks USDC transfers per second across multiple chains including Ethereum, Base, Monad, Sonic, HyperEVM, Worldchain, XDC and many more. It gives a clear view of stablecoin activity as it happens and makes it easy to watch real usage and adoption play out in real-time across different networks. Be sure to check out our showcase for more examples of Envio in action.

Check the original post on X.

How to Monetize HyperSync Queries using x402

A new demo went live this month showing how analysts and builders can monetize their HyperSync queries using x402. The project combines HyperSync’s fast querying and filtering across multiple networks with x402’s pay per request model to create simple monetizable blockchain APIs. The example lets users fetch token transfer history for any address across all HyperSync supported networks, with optional filtering by token.

Explore the demo or try it yourself on GitHub.

Devconnect and Edge City | Argentina

The team recently attended Edge City in Patagonia, spending time with builders and getting a closer look at what teams are working on across the ecosystem. It was a good mix of conversations, working sessions and meeting new faces.

From there we headed to Buenos Aires for Devconnect, catching up with teams throughout the week. We also partnered with Sonic, Pyth and Gelato for an evening event in the city that brought all of our communities together in one venue.

We wrapped up the month at Devconnect Buenos Aires, taking part in the sessions and connecting with builders across the ecosystem. Big thanks to all the partners, organisers and teams we met along the way. Next stop? Stay tuned.

Encode Hackathon: Envio’s Winners

Envio partnered with Encode Club at Encode London 2025 and awarded $3,000 in bounties for builders using HyperIndex and HyperSync. The winners included:

  • Best Use of HyperIndex ($1,000) → VeriLoan

  • Best Use of HyperSync ($1,000) → Sniffer

  • HyperIndex Runner-Up ($500) → TradeTrackr

Congratulations to all the builders who took part and big thanks to the Encode team. For the full breakdown of winners and what they built, check our blog post.

High Performance Indexing on Sonic with HyperSync

Building on Sonic? Envio keeps up.

Compare Nodes recently benchmarked Envio’s HyperSync on Sonic Mainnet and shared the results publicly. HyperSync provides one of the strongest high performance indexing solutions for Sonic data, backed by real benchmarking results. Their tests scaled from 0 to 1,000 RPC requests per second with full success, and later pushed up to 5,000 requests per second across ten methods. Across two runs they processed around 3.3 million requests in just over thirty minutes!

For the full performance benchmark and breakdown, check Compare Nodes’ original post on X

Tutorial: How to Index Rootstock Data with Envio

Rootstock released a new tutorial walking developers through how to use Envio to capture and organize on-chain events from smart contracts deployed on Rootstock. The session covers everything from setting up a local environment to writing mappings, generating entities and querying indexed data. It is part of the Hacktivator program and gives builders a full walkthrough of how to index Rootstock data using Envio.

See Rootstock’s original post on X.

MetaMask Smart Accounts x Monad x Envio Hackathon Winners

We partnered with MetaMask and Monad for the Smart Accounts hackathon, which featured a total prize pool of $15,000. This hackathon focused on the next generation of wallet and smart account experiences. Builders explored account abstraction, modular execution, AI driven automation and real-time blockchain indexing using Envio.

For the full list of winners and a detailed breakdown of their projects, read our blog.

🗓️ Current & Upcoming Events

🧑‍💻 Featured Developer: Kevin Lin

This month’s featured dev is Kevin Lin, a Web3 engineer from Taiwan who has been building dashboards and analytics tools across identity, x402 community activity and prediction markets. Kevin uses Envio as the indexing layer across several of his projects.

For Self Protocol, he indexes real-time registration and disclosure actions to help the team track user growth and protocol health. In the x402 ecosystem, he built this epic PING dashboard, which tracks community engagement around the first major x402-era meme, including new addresses, interaction patterns and Uniswap V3 and V4 liquidity pools.

His latest project, PolyPilot, is a Polymarket analytics tool that pulls candlestick charts from on-chain trades and includes a Market Explorer and Trader Explorer, with more smart money analysis on the way.

Big thanks to Kevin for all his amazing contributions, for being an outstanding member of our community and for everything he continues to build with Envio.

“What I really like about Envio is that the DX is super smooth. The documentation is excellent, with solid templates and multiple examples, so it’s very friendly for vibe coders working on side projects. It also scales nicely from internal dashboards to public products, and lets me focus on what the user sees instead of worrying about indexing infra.” – Kevin Lin, Integration Engineer at Self Protocol

Be sure to follow them on X and check out their work on GitHub to stay up to date with what they are building.

🎧️ Playlist of the Month

🚢 Ship With Us

Envio is a multi-chain EVM blockchain indexer 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.