The Graph vs Covalent: Two Different Theories of What Blockchain Data Infrastructure Should Be

The Graph and Covalent both index blockchain data for developers, but they're built around different theories: decentralized custom indexing vs. a unified API across chains. Here's the mechanism behind each.
Lewis Jackson
CEO and Founder

Blockchain data is public. Every transaction, every contract event, every state change is written on-chain and visible to anyone. The problem isn't access — it's shape. Raw blockchain data isn't queryable in any practical sense. If you want to know how many times a specific NFT contract transferred ownership in the last 30 days, you can't just ask a node. You'd have to crawl through every block, filter manually, reconstruct state. That's not viable for production applications.

The Graph and Covalent both exist to solve this problem. They're both called "blockchain indexing" or "data infrastructure" in the same conversations, which makes them sound like variations on the same thing. They're not. They're built around different theories of where the intelligence should live, who should build the indexes, and what kind of reliability guarantees developers should expect.

The Graph's Theory: Decentralize the Index Itself

The Graph's core bet is that the indexing layer — the thing that transforms raw blockchain data into queryable structured data — should itself be a decentralized network, not a centralized API service.

Here's how it actually works. A developer writes a subgraph: a manifest that defines what data to index (which smart contracts to watch, which events to track) and a schema in GraphQL that defines how to query that data. The subgraph gets published to The Graph Network. Decentralized indexers — independent operators running Graph Node software — pick up subgraphs and index the relevant data. When a dApp makes a query, it goes to an indexer, which serves the data and gets paid in GRT tokens (The Graph's native token) for the service.

The incentive structure: indexers stake GRT to signal they'll serve accurate data, and they get slashed if they serve incorrect results. Curators stake GRT on subgraphs they believe are high-quality to signal indexers which ones are worth indexing. Delegators can stake GRT with indexers without running infrastructure. It's a full token economy designed to align incentives around accurate, available data.

The querying interface is GraphQL, which is expressive and powerful — you can ask for exactly the data shape your application needs. The catch is that you have to write the subgraph first. If someone else has already built a subgraph for Uniswap v3 or Aave, you can use it. If not, you're writing it yourself. And subgraph development has a real learning curve: you're writing AssemblyScript, managing entity schemas, handling edge cases in contract events.

The Graph started as a hosted service (now deprecated) and has been migrating to its fully decentralized network. The decentralization is genuine — it's not a marketing claim layered over a centralized backend — but it comes with tradeoffs. Query latency is higher than a centralized API. Indexer availability can vary by subgraph. And the network is still maturing; not every subgraph has multiple competing indexers, which weakens the decentralization guarantees in practice for less popular protocols.

Covalent's Theory: Unified API Over Every Chain

Covalent's theory is different. Rather than decentralizing the indexing layer, Covalent builds a centralized-ish data warehouse that normalizes data from a large number of blockchains into a single unified API.

The architecture: Covalent indexes blockchain data across 100+ networks — Ethereum, Polygon, Avalanche, BNB Chain, Arbitrum, and many more — into a structured database, then exposes this through a REST API. You call an endpoint like /v1/{chainId}/address/{address}/transactions_v2/ and get back paginated JSON. No subgraph to write. No GraphQL schema to define. No token economy to navigate.

The value proposition is breadth and convenience. If you're building a wallet that needs to show token balances and transaction history across 10 different chains, writing separate subgraphs for each chain on The Graph would be a significant undertaking. Covalent has that data already indexed, accessible via a consistent API schema regardless of which chain you're querying. The "unified" part is real — the same field names and response shapes work across chains, which simplifies multi-chain development considerably.

Covalent does have a token (CQT) and has been building toward a more decentralized architecture (the "Unified API" with a network of operator nodes), but the practical experience for developers today is a traditional API with API keys and usage-based pricing, not a decentralized query market.

The limitation is what you can't do: custom data shapes. Covalent has pre-built endpoints for common queries — transactions, balances, token approvals, NFT ownership, log events. But if your protocol has custom contract logic and you need derived metrics (e.g., "total value locked by liquidity provider over time"), Covalent doesn't give you that. You get what they've indexed in the shape they've chosen. Covalent does offer a "Increment" SQL interface (raw database access) for more custom queries, but that's enterprise-tier and a different product category.

Where the Constraints Live

For The Graph: the binding constraints are subgraph coverage and indexer competition. If no one has built a subgraph for the protocol you need, you build it yourself — which takes time and expertise. And if your subgraph is serving a small protocol, it may have only one or two active indexers, which undermines the decentralization story. The token economics work at scale; at the edges of the network, the guarantees are thinner.

For Covalent: the constraint is data shape rigidity. The unified API is powerful precisely because it's pre-defined — but that definition limits you. For exploratory or custom analytics, Covalent forces you into their schema. And for any chain or contract pattern they haven't indexed, you're out of options.

What's Changing

The most significant structural shift is that both protocols are competing with integrated indexing from the chains themselves. The Graph has a dominant position by being early and comprehensive, but the competitive surface is wider than it was in 2021.

The Graph's "Sunrise" migration (2023-2024, moving off the hosted service to the decentralized network) forced developers onto the paid network. This has improved the economics for indexers but increased friction for developers who were used to free hosted queries. The transition is ongoing.

Covalent's architectural push toward decentralized operators is a multi-year project. Whether it changes the practical developer experience is an open question; for most teams, the current API-key model is what they're building on.

Confirmation Signals to Watch

For The Graph: growing indexer count per subgraph (especially for newer protocols), query volume growth on the decentralized network, and subgraph development tooling improving enough that building custom subgraphs becomes routine rather than specialized. If GRT delegation rewards sustain indexer participation without major token inflation, the economic model is working.

For Covalent: chain coverage expansion staying ahead of the multi-chain fragmentation curve, and the SQL interface proving useful enough that developers treat Covalent as a data warehouse rather than just a convenience API.

Invalidation

The Graph's thesis breaks if the decentralized network can't deliver latency and availability competitive with centralized alternatives at scale, or if a major ecosystem commits to a competing indexing layer. The slashing-based accuracy guarantee is also untested at full stress; a coordinated data integrity failure would be severe.

Covalent's thesis breaks if multi-chain development simplifies to the point where chain-native indexing covers most use cases — if developers just don't need a unified layer because tooling on each chain becomes good enough.

Timing

Now: If you're building a DeFi protocol or dApp on Ethereum or Solana and need custom indexed data, The Graph is the default choice. The subgraph ecosystem is deep, especially for major protocols. If you're building a multi-chain wallet or portfolio tracker and need breadth quickly, Covalent's API gets you there faster.

Next (12-18 months): Watch The Graph's indexer economics as Sunrise migration stabilizes, and watch whether Covalent's SQL interface attracts analytics-adjacent use cases.

Later: The longer-horizon question is whether decentralized indexing infrastructure becomes the standard or whether most applications settle for chain-native or centralized-hosted indexing and The Graph's decentralization premium fails to attract enough sustained query volume to make the economics compelling at scale.

This is an infrastructure comparison, not an investment recommendation on GRT or CQT. Both protocols are active, production-used, and changing. The mechanism described here reflects their current architecture; both are in active development and the competitive landscape for blockchain data infrastructure is not settled.

Related Posts

See All
Crypto Research
New XRP-Focused Research Defining the “Velocity Threshold” for Global Settlement and Liquidity
A lot of people looking at my recent research have asked the same question: “Surely Ripple already understands all of this. So what does that mean for XRP?” That question is completely valid — and it turns out it’s the right question to ask. This research breaks down why XRP is unlikely to be the internal settlement asset of CBDC shared ledgers or unified bank platforms, and why that doesn’t mean XRP is irrelevant. Instead, it explains where XRP realistically fits in the system banks are actually building: at the seams, where different rulebooks, platforms, and networks still need to connect. Using liquidity math, system design, and real-world settlement mechanics, this piece explains: why most value settles inside venues, not through bridges why XRP’s role is narrower but more precise than most narratives suggest how velocity (refresh interval) determines whether XRP creates scarcity or just throughput and why Ripple’s strategy makes more sense once you stop assuming XRP must be “the core of everything” This isn’t a bullish or bearish take — it’s a structural one. If you want to understand XRP beyond hype and price targets, this is the question you need to grapple with.
Read Now
Crypto Research
The Jackson Liquidity Framework - Announcement
Lewis Jackson Ventures announces the release of the Jackson Liquidity Framework — the first quantitative, regulator-aligned model for liquidity sizing in AMM-based settlement systems, CBDC corridors, and tokenised financial infrastructures. Developed using advanced stochastic simulations and grounded in Basel III and PFMI principles, the framework provides a missing methodology for determining how much liquidity prefunded AMM pools actually require under real-world flow conditions.
Read Now
Crypto Research
Banks, Stablecoins, and Tokenized Assets
In Episode 011 of The Macro, crypto analyst Lewis Jackson unpacks a pivotal week in global finance — one marked by record growth in tokenized assets, expanding stablecoin adoption across emerging markets, and major institutions deepening their blockchain commitments. This research brief summarises Jackson’s key findings, from tokenized deposits to institutional RWA chains and AI-driven compliance, and explains how these developments signal a maturing, multi-rail settlement architecture spanning Ethereum, XRPL, stablecoin networks, and new interoperability layers.Taken together, this episode marks a structural shift toward programmable finance, instant settlement, and tokenized real-world assets at global scale.
Read Now

Related Posts

See All
No items found.
Lewsletter

Weekly notes on what I’m seeing

A personal letter I send straight to your inbox —reflections on crypto, wealth, time and life.
Thank you! Your submission has been received!
Oops! Something went wrong while submitting the form.