What Is dRPC? The Decentralized RPC Marketplace, Explained
How dRPC's decentralized RPC marketplace works: multi-provider routing, 115+ chains, compute-unit pricing, no token, Tor privacy, and the real tradeoffs.
Table of contents
Every dApp needs an RPC endpoint — the URL your wallet or backend hits to read the chain and broadcast transactions — and for years that meant renting capacity from a single company running its own servers. dRPC takes a different shape: it is a decentralized RPC marketplace that routes each request across a network of 60-plus independent node operators, automatically steering traffic to a healthy, up-to-date node instead of serving everything from one vendor's fleet. This guide covers what it actually is, how the routing works, the compute-unit pricing (and why there is no token), where it sits in the market, and the tradeoffs that matter before you point production traffic at it.
What dRPC is, and who's behind it
dRPC launched in March 2023 and bills itself as the first decentralized RPC provider. The origin explains its credibility: it grew out of P2P.org, one of the larger institutional staking and infrastructure operators, which by 2022 was running RPC nodes for dozens of chains with 30-plus DevOps engineers. P2P.org founder Konstantin Lomashuk encouraged dRPC's CEO, Constantine — who had run product for P2P.org's Ethereum work — to spin it out, with a CTO drawn from VK and Tinkoff. The team came out of institutional node operations, not a weekend project.
The problem it targets is concrete: when your single RPC provider has a bad day — nodes lagging behind the chain head, or returning errors — your app goes down with it. dRPC treats RPC as a marketplace instead of a single-vendor relationship: many operators, one endpoint, automatic failover between them. Unlike Alchemy or QuickNode, which run their own cloud and in-house DevOps, no single operator underneath dRPC is a hard dependency.
How the marketplace actually works
Behind the single endpoint you plug into your app, there are two core pieces of dRPC's own tech. Dproxy is the gateway that receives your request. Dshackle is the node software that the independent third-party providers run. Dproxy scores and selects which provider node to send each call to based on region, node health, how close the node is to the current chain head, the specific method being called, and other signals, and it fails over automatically if a node is unhealthy or lagging.
The routing is deliberately method-aware. When you broadcast a transaction, dRPC can fan it out across all available nodes to maximize the odds it propagates. When you read a balance or query state, it only reads from nodes that are not lagging the chain head, avoiding stale answers. Dproxy recalculates a rating for each provider every second based on recent performance, status, capabilities, and CU served, and an AI-driven load balancer distributes workload across the operator set and eight geo-distributed clusters. You get one unified endpoint with consistent per-chain URL patterns, one API key, and one billing account, while the serving is spread across dozens of operators in several regions.
That is what "decentralized" means here, and it is important to be precise about it: it refers to the distributed set of independent node operators, not to a blockchain, a token, or an on-chain DAO. dRPC is a company running a smart routing layer over a diverse supply of node capacity.
No token: how dRPC makes money
dRPC has no token — no native coin, no governance token, and no announced airdrop as of mid-2026. If you see something advertising a "dRPC token," treat it as a scam. The business model is plain SaaS: pay-as-you-go, billed in fiat or crypto, metered by usage.
Usage is measured in Compute Units (CU), meant to represent the CPU, memory, and
network a request consumes. Since June 2, 2025 the accounting is deliberately flat:
all RPC methods cost 20 CU, and purely informational methods cost 0 CU. The flat rate
answers a common complaint about competitors — that heavy methods like eth_getLogs or
debug_traceTransaction carry much higher per-call costs and make bills unpredictable.
At a flat 20 CU, a trace-heavy workload is priced the same per call as a balance read.
The concrete numbers, verified against dRPC's own materials and third-party reviews:
- Free tier: roughly 210 million CU per 30 days, served from public nodes, with a 100 requests-per-second cap. Fine for development and light apps; not enough headroom for production.
- Growth (paid, pay-as-you-go): about $6 per 1 million requests — equivalently $0.30 per 1 million CU given the 20-CU flat rate — with a 5,000 RPS ceiling and a 99.99% uptime target. There is no mandatory monthly subscription; you pay for what you use.
- Enterprise: custom terms and dedicated support.
One honest caveat on cost: flat-rate CU pricing removes per-method surprises, but your bill still scales linearly with volume. At $6 per 1M requests, a steady 73.5M-request month runs about $441 — so against a competitor's fixed monthly subscription, a flat-price plan can still come out cheaper for very high, predictable traffic. Pay-as-you-go wins on flexibility and on spiky or uncertain volume; it does not automatically win on price at scale.
Providers on the supply side get their own lever: dRPC exposes a small configuration language (CU Lang) that lets node operators redefine pricing for the methods they serve, which is how the marketplace clears between demand and heterogeneous supply.
The numbers and market position
dRPC's scale claims are broadly consistent across sources. Coverage is 115 chains across 203 networks on its chainlist (marketing figures range from "100+ chains / 190+ networks" upward as chains are added), spanning EVM chains — Ethereum, Base, Arbitrum, Optimism, Polygon and others — plus non-EVM ecosystems including Solana, Bitcoin, Cosmos, NEAR and Starknet. The network runs on 60-plus integrated RPC providers across eight geo-distributed clusters, serving billions of requests per day.
In the competitive landscape, dRPC is one of the recognized names alongside Alchemy, QuickNode, Infura, Chainstack and others. Its distinct positioning is the aggregation model plus a low entry cost — the flat $6-per-million Growth plan is among the cheapest paid entry points, and the 5,000 RPS ceiling is high for a non-enterprise plan. It has also pushed upmarket: NodeHaus, launched as an infrastructure platform for Web3 foundations, targets the teams behind chains themselves — the entities that need to provide reliable public RPC to their whole ecosystem — rather than individual dApp developers.
Privacy and censorship resistance
dRPC states that it does not store IP addresses, request logs, or personal data, does not sell data, and that its system analytics exclude personal information. It also supports connecting over the Tor network, letting users reach the service without exposing their network origin.
This matters because your RPC provider sees every read and every transaction you submit before it hits the mempool, making it a natural surveillance and censorship chokepoint. A no-logs policy plus Tor access plus a distributed operator set is a stronger privacy posture than a single AWS-hosted endpoint that logs everything. The usual caveat applies — you are trusting a stated policy you cannot fully audit.
How to actually use it
Getting started is standard for the category:
- Pick your product tier. Most developers want NodeCloud — the managed, cloud-hosted RPC. Teams that want to run and control their own routing stack can use the self-hosted, open-source NodeCore. Foundations and large operators are the audience for NodeHaus.
- Try public endpoints first. dRPC exposes public per-chain URLs (for example a Base or Solana public endpoint) with no key, useful for a quick test.
- Create a key for real usage. Sign up, generate a dRPC key, and use the authenticated per-chain endpoint pattern (a load-balanced URL with your key) in your app or wallet config. The same key works across chains.
- Set it as your RPC in wagmi/viem/ethers, MetaMask, or your backend. Because it's a standard JSON-RPC endpoint, it drops into existing tooling unchanged.
- Watch your CU consumption in the dashboard and set alerts so a traffic spike doesn't quietly blow past the free tier or run up a bill.
The practical advice most experienced teams follow: configure a fallback RPC from a second provider. That is true of any single endpoint, and — as the next section explains — specifically prudent with an aggregator.
The risks
- The routing layer is now your dependency. The whole value proposition is that no
single node operator can take you down — but you have moved the risk up a level to
dRPC's own gateway and control plane. On January 2, 2026, the
lb.drpc.liveload-balancer domain became unavailable because of a DNS provider issue, even whiledrpc.orgstayed operational. Provider diversity underneath did not save the shared endpoint above. Keep an independent fallback. - Diagnosis is harder. When something is slow or wrong, the cause could be the chain itself, one bad provider, the routing layer, a specific region, auth, or DNS. A multi-provider path has more places to hide a problem than a single vendor does.
- Per-provider variance. Because different operators serve your traffic, performance and consistency can vary in ways you don't directly control.
- Cost at high steady volume. Pay-as-you-go is flexible, but for very large, predictable workloads a fixed-price competitor plan can come out cheaper — do the math on your actual method mix and volume.
- Free-tier limits are not production. The ~100 RPS free cap can effectively fall under regional demand and won't carry a real app.
Bottom line
dRPC's contribution is a concrete answer to RPC single-vendor risk: an aggregated, multi-provider marketplace behind one endpoint, priced pay-as-you-go with a flat, predictable compute-unit model and a real privacy posture (no logs, Tor support). There is no token to speculate on — this is infrastructure, sold as a service — and the scale, chain coverage, and low entry price make it a serious option for both individual dApps and, via NodeHaus, the foundations behind chains. The honest caveat is that decentralizing the supply of nodes doesn't decentralize the access layer on top, and the January 2026 outage proved that abstraction can itself go down. Use it, value the resilience it adds, and still keep a second endpoint in your config.
For related reading: what is DeFi, best Ethereum L2s, and account abstraction explained.
Related guides
Not financial or engineering advice. RPC pricing, chain counts, and rate limits change frequently — always verify current details on dRPC's official site before relying on them.
Frequently asked questions
What is dRPC?
dRPC is a decentralized RPC (remote procedure call) marketplace for Web3 developers. Instead of running its own node fleet like a traditional provider, dRPC operates a routing layer that distributes each incoming request across a network of 60+ independent node operators, automatically picking a healthy, up-to-date node. It launched in March 2023, positions itself as the first decentralized RPC, and covers roughly 115 chains across 200-plus networks.
Does dRPC have a token or an airdrop?
No. As of mid-2026 dRPC has no native token, no governance token, and no announced airdrop. It is a straightforward pay-as-you-go service billed in fiat or crypto. "Decentralized" here refers to the distributed network of independent node operators behind the endpoint, not to a token or on-chain DAO. Treat any "dRPC token" claim you see as a likely scam.
How does dRPC pricing work?
Usage is metered in Compute Units (CU). Under the current model most RPC methods cost a flat 20 CU, and purely informational calls cost 0 CU. The free tier gives roughly 210 million CU per 30 days on public nodes with a 100 requests-per-second cap. The paid Growth plan is pay-as-you-go at about $6 per million requests (equivalently $0.30 per million CU) with a 5,000 RPS ceiling and a 99.99% uptime target. Enterprise terms are custom.
How is dRPC different from Alchemy or QuickNode?
Alchemy and QuickNode are vertically integrated — they run their own infrastructure, largely on their own cloud and DevOps. dRPC instead aggregates many third-party node operators behind one endpoint and routes between them, so no single operator is a hard dependency and traffic fails over automatically. The trade is that dRPC's own routing and control plane become the thing you now depend on.
What chains does dRPC support?
dRPC's materials list on the order of 115 chains across 200-plus networks (mainnets plus testnets), spanning EVM chains like Ethereum, Base, Arbitrum, Optimism and Polygon, plus non-EVM ecosystems including Solana, Bitcoin, Cosmos, NEAR and Starknet. Exact counts shift as chains are added, so check the live chainlist for a specific network.
Is dRPC good for privacy?
Better than most. dRPC states it does not store IP addresses, request logs, or personal data, does not sell data, and supports connecting over the Tor network. Combined with the distributed operator set, that improves censorship resistance versus a single-vendor endpoint. As always, you are trusting a stated policy — verify the current privacy policy yourself.
What are NodeCloud, NodeCore, and NodeHaus?
They are dRPC's three product tiers. NodeCloud is the managed, cloud-hosted RPC most developers use. NodeCore is a self-hosted, open-source option for teams that want to run and control their own routing stack. NodeHaus is aimed at blockchain foundations and large-scale operators that need managed public commercial nodes, dashboards, and 24/7 support.
What are the main risks of using dRPC?
The biggest is that the aggregation layer itself is critical infrastructure. A January 2, 2026 incident took down the lb.drpc.live load-balancer domain via a DNS provider issue while drpc.org stayed up, showing the shared control plane can be a single point of failure despite provider diversity. Other considerations: per-provider performance can vary, incident diagnosis is harder across a multi-provider path, and free-tier rate limits are too low for production.
Sources & further reading
- dRPC — AI-Powered RPC Infrastructure for dApps & Chains — dRPC
- dRPC Pricing: RPC Calculator & Provider Comparison — dRPC
- dRPC launches decentralized RPC network for Ethereum apps — The Block
- dRPC provider overview (2026) — Chainstack
- dRPC Review 2026: Multi-Provider Routing, Unified Endpoints, and Incident-Response Tradeoffs — CryptoAdventure