From 61ff27b6ee95b23b1c65339f7112e8ee1be592de Mon Sep 17 00:00:00 2001 From: Jordy-baby Date: Fri, 15 May 2026 11:37:32 -0400 Subject: [PATCH 1/2] blog: update Polymarket event count The 4B-in-6-days figure is the initial historical sync; the indexer has since indexed over 6.5B events. Matches the correction in #920. Co-Authored-By: Claude Opus 4.7 (1M context) --- blog/2026-05-14-ai-subgraph-migration-hyperindex-claude.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/blog/2026-05-14-ai-subgraph-migration-hyperindex-claude.md b/blog/2026-05-14-ai-subgraph-migration-hyperindex-claude.md index c00c885e..3f9deea9 100644 --- a/blog/2026-05-14-ai-subgraph-migration-hyperindex-claude.md +++ b/blog/2026-05-14-ai-subgraph-migration-hyperindex-claude.md @@ -19,7 +19,7 @@ last_update: - HyperIndex is Envio's multichain blockchain indexing framework for EVM chains. It accepts subgraph YAML and ABIs as input, scaffolds a HyperIndex project, and ships a TypeScript handler skeleton that AssemblyScript handler logic can be ported into. - Claude (running with the Envio docs MCP server and the auto-discovered `.claude/skills/` directory, including the dedicated `migrate-from-subgraph` skill) handles the AssemblyScript-to-TypeScript rewrite end to end. Skills auto-discover for Cursor, Claude Code, and Codex. -- The Polymarket reference indexer is the public production-scale example: 8 subgraphs' worth of logic consolidated into one TypeScript indexer that synced 4,000,000,000 events in 6 days on Polygon. +- The Polymarket reference indexer is the public production-scale example: 8 subgraphs' worth of logic consolidated into one TypeScript indexer that synced its first 4,000,000,000 events in 6 days on Polygon and has indexed over 6,500,000,000 to date. ::: @@ -274,7 +274,7 @@ The reason teams move off The Graph is performance and developer experience. Fro Full benchmark comparison at [docs.envio.dev/docs/HyperIndex/benchmarks](https://docs.envio.dev/docs/HyperIndex/benchmarks). -Polymarket's full historical sync, 4,000,000,000 events on Polygon, completed in 6 days. The same workload on a single subgraph in the Polymarket setup would have been measured in months and would still leave eight separate APIs to query. +Polymarket's full historical sync, 4,000,000,000 events on Polygon, completed in 6 days, and the indexer has since indexed over 6,500,000,000 events in total. The same workload on a single subgraph in the Polymarket setup would have been measured in months and would still leave eight separate APIs to query. Speed is one half of the story. Developer experience is the other. TypeScript handlers, native npm package use, generated types, real test runners, multichain configuration in a single file, dynamic contract registration without redeployment. Once a team has been on HyperIndex for a sprint, the subgraph workflow stops feeling like a viable alternative. @@ -310,7 +310,7 @@ Single multichain config (subgraphs are single-chain). Native TypeScript handler ### Where is the production reference for a large subgraph migration? -The [Polymarket HyperIndex reference indexer](https://github.com/enviodev/polymarket-indexer). 8 subgraphs' worth of logic consolidated into one indexer, 4,000,000,000 events synced in 6 days. The full repo is public on GitHub and the case study can be found in [our blog](https://docs.envio.dev/blog/polymarket-hyperindex-case-study). +The [Polymarket HyperIndex reference indexer](https://github.com/enviodev/polymarket-indexer). 8 subgraphs' worth of logic consolidated into one indexer, with the first 4,000,000,000 events synced in 6 days and over 6,500,000,000 indexed to date. The full repo is public on GitHub and the case study can be found in [our blog](https://docs.envio.dev/blog/polymarket-hyperindex-case-study). ## Get Started From 5167e6348f86051860cd9c10778e734f897e17d9 Mon Sep 17 00:00:00 2001 From: Jordy-baby Date: Fri, 15 May 2026 11:40:34 -0400 Subject: [PATCH 2/2] blog: update Polymarket event count in remaining AI blogs The 4B-in-6-days figure is the initial historical sync; the indexer has since indexed over 6.5B events. Propagates the correction from #920 to the subgraph-migration, onchain-app, and ai-agents posts. Co-Authored-By: Claude Opus 4.7 (1M context) --- blog/2026-05-14-ai-agents-acting-onchain-indexer.md | 2 +- blog/2026-05-14-ai-onchain-app-hyperindex-claude.md | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/blog/2026-05-14-ai-agents-acting-onchain-indexer.md b/blog/2026-05-14-ai-agents-acting-onchain-indexer.md index 18d31b85..acd3eb22 100644 --- a/blog/2026-05-14-ai-agents-acting-onchain-indexer.md +++ b/blog/2026-05-14-ai-agents-acting-onchain-indexer.md @@ -48,7 +48,7 @@ HyperIndex addresses all four problems by being a blockchain indexing framework - **Reorg safety at the framework level.** Entity state history, automatic rollback, no reorg logic required in handlers. Learn more in [Indexing and Reorgs](https://docs.envio.dev/blog/indexing-and-reorgs). - **Structured GraphQL output.** Entities, relationships, aggregations, time-windowed views, all queryable from one endpoint. Agents read GraphQL, not raw logs. -- **HyperSync historical throughput.** Up to 2,000x faster than RPC. The Polymarket reference indexer synced 4,000,000,000 events in 6 days. +- **HyperSync historical throughput.** Up to 2,000x faster than RPC. The Polymarket reference indexer synced its first 4,000,000,000 events in 6 days and has indexed over 6,500,000,000 to date. - **Multichain in one config.** have native HyperSync coverage, any EVM chain accessible via standard RPC, all in a single `config.yaml`. That is the read side. The act side is what makes HyperIndex an agent's infrastructure, not just an agent's data layer. diff --git a/blog/2026-05-14-ai-onchain-app-hyperindex-claude.md b/blog/2026-05-14-ai-onchain-app-hyperindex-claude.md index b50d0141..ab78e65a 100644 --- a/blog/2026-05-14-ai-onchain-app-hyperindex-claude.md +++ b/blog/2026-05-14-ai-onchain-app-hyperindex-claude.md @@ -19,7 +19,7 @@ last_update: - HyperIndex is Envio's multichain blockchain indexing framework for EVM chains. With Claude Code pointed at a HyperIndex project, the agent has the docs (via the docs MCP server) and the patterns (via the auto-discovered `.claude/skills/` directory shipped with every v3 rc project) to scaffold, code, deploy, and run an indexer end to end. - The CLI surface is `pnpx envio init` for scaffold, `TUI_OFF=true pnpm dev` for local, and the GitHub-native `envio-cloud indexer add` flow for hosted deployments. Every command is scriptable and agent-friendly. -- The Polymarket reference at [github.com/enviodev/polymarket-indexer](https://github.com/enviodev/polymarket-indexer) is the public production example. 8 subgraphs replaced with 1; 4,000,000,000 events synced in 6 days. +- The Polymarket reference at [github.com/enviodev/polymarket-indexer](https://github.com/enviodev/polymarket-indexer) is the public production example. 8 subgraphs replaced with 1; the first 4,000,000,000 events synced in 6 days, over 6,500,000,000 indexed to date. - Anything in this blog is reproducible today against the current HyperIndex release tracked at [github.com/enviodev/hyperindex/releases](https://github.com/enviodev/hyperindex/releases). ::: @@ -268,7 +268,7 @@ TUI_OFF=true pnpm dev # run indexer (TUI_OFF gives AI-friendly stdout) Source for these exact commands: [polymarket-indexer/AGENTS.md](https://github.com/enviodev/polymarket-indexer/blob/main/AGENTS.md). -The local dev environment spins up a Postgres and a Hasura GraphQL instance. The indexer starts pulling events from both chains via HyperSync. Sync rates of 25,000 events per second on historical backfill are standard. The [Polymarket case study](https://docs.envio.dev/blog/polymarket-hyperindex-case-study) documents 4,000,000,000 events synced in 6 days on Polygon. +The local dev environment spins up a Postgres and a Hasura GraphQL instance. The indexer starts pulling events from both chains via HyperSync. Sync rates of 25,000 events per second on historical backfill are standard. The [Polymarket case study](https://docs.envio.dev/blog/polymarket-hyperindex-case-study) documents 4,000,000,000 events synced in 6 days on Polygon; the indexer has since indexed over 6,500,000,000 in total. The Hasura GraphQL endpoint is available locally. Once the indexer is at chain head, queries like: @@ -398,7 +398,7 @@ Any EVM chain. have native HyperSync coverage for maximu ### Where can I see a public production reference? -The [Polymarket reference indexer](https://github.com/enviodev/polymarket-indexer). Synced 4,000,000,000 events from block 3,764,531 in 6 days, replacing 8 separate subgraphs. Live at [envio.dev/app/moose-code/polymarket-indexer/7cad3ad](https://envio.dev/app/moose-code/polymarket-indexer/7cad3ad). +The [Polymarket reference indexer](https://github.com/enviodev/polymarket-indexer). Synced its first 4,000,000,000 events from block 3,764,531 in 6 days, replacing 8 separate subgraphs, and has indexed over 6,500,000,000 to date. Live at [envio.dev/app/moose-code/polymarket-indexer/7cad3ad](https://envio.dev/app/moose-code/polymarket-indexer/7cad3ad). ## Build With Envio