Just walked out of the “Infrastructure at Scale” panel at Token2049 Singapore. Mind blown.
Everyone’s talking about AI, RWAs, and DeFi. But there’s a crisis brewing in the foundation layer that most people are ignoring: RPC infrastructure is breaking.
The Panel That Opened My Eyes
Speakers:
- Infrastructure lead from a Top 5 CEX
- CTO from major DeFi protocol (100M+ TVL)
- Founder of RPC provider (anonymized, under NDA)
- My role: Operate RPC nodes for mid-size projects
The uncomfortable truth they shared: “We’re one outage away from a cascade failure across multiple protocols.”
The Numbers That Shocked Me
The anonymous RPC provider shared their internal metrics:
2023 landscape:
- ~50 serious RPC providers globally
- Average response time: 200-500ms
- Downtime acceptable: 99% uptime was “good enough”
- Cost per request: Not heavily optimized
2025 reality (what we learned at Token2049):
- 197+ RPC node providers competing in the space
- Response time requirements: <50ms median (some protocols demand <20ms)
- Downtime unacceptable: 99.9% is minimum, 99.99% is expected
- Cost pressure: Race to the bottom on pricing
Why the change?
Layer-2 rollups. DeFi composability. MEV. Real-time trading.
The infrastructure engineer from the CEX put it bluntly: “Our users expect their transaction to confirm before they lift their finger off the phone. That means every component in the stack needs to be sub-50ms. RPC calls are the biggest bottleneck.”
The Bitcoin Node Problem
This one hit close to home. I run Bitcoin nodes.
The challenge: Bitcoin network has grown to 21,800+ reachable nodes worldwide. Sounds great for decentralization, right?
The problem: Most of these nodes are SLOW. Old hardware, residential internet connections, inconsistent uptime.
What the panel revealed:
A major DeFi protocol trying to build Bitcoin-wrapped assets tested 100 different Bitcoin RPC endpoints:
- 47 had >500ms response times
- 23 had reliability issues (>5% failed requests in 24hr period)
- 12 had data inconsistencies (different chain tips!)
- Only 18 were production-grade
Their solution: They now run their own Bitcoin nodes in 7 geographic regions. Cost: $80K/month in infrastructure + 2.5 FTEs managing them.
My reaction: This is insane. We shouldn’t need this much redundancy for basic RPC access.
The Centralization Paradox
Here’s the part that made me uncomfortable:
DePIN founder (from audience question): “Isn’t the proliferation of 197+ RPC providers a good thing? More decentralization?”
Panel response (CTO): “It’s a mirage. 80% of production traffic goes through 5 providers. The other 192 are fighting for scraps or serving hobbyists.”
The centralization problem:
- Infura (ConsenSys)
- Alchemy
- QuickNode
- Ankr
- BlockEden (hey, that’s us!)
These 5 handle the vast majority of Ethereum, Polygon, BSC traffic. If two of them go down simultaneously, the entire DeFi ecosystem has a crisis.
Why the consolidation?
- Performance requirements - Only well-funded providers can afford global CDN infrastructure
- Reliability demands - 99.99% uptime requires serious engineering
- Multi-chain support - Projects want one provider for 20+ chains, not 20 different providers
The panel’s conclusion: “We’re recreating the cloud provider oligopoly (AWS/Azure/GCP) but for blockchain infrastructure.”
The Latency Arms Race
This is where it gets technical.
The new standard: Sub-50ms RPC response times. Some protocols demanding sub-20ms.
How do you achieve this?
Geographic distribution:
- 7+ regions globally (US East, US West, EU, Asia-Pacific, etc.)
- Edge caching where possible
- Intelligent routing to nearest healthy node
Infrastructure optimization:
- NVMe SSDs (spinning disks are dead)
- 10Gbps+ network interfaces
- Dedicated hardware (no cloud VMs for production nodes)
- Archive nodes separately (different perf characteristics than full nodes)
Load balancing intelligence:
- Health checks every 5 seconds
- Automatic failover in <2 seconds
- Request routing based on: latency, load, chain sync status
The cost: One panelist mentioned their infrastructure costs $500K+/month for a top-tier multi-chain RPC service.
For context: That’s more than many protocols spend on smart contract development.
The MEV Protection Dilemma
This came up and it’s fascinating:
Problem: Public RPC endpoints leak transaction data. MEV bots frontrun users.
Solution 1: Private mempools (Flashbots, Eden Network)
- Great for users
- But: Adds complexity and potential centralization
Solution 2: RPC providers with MEV protection
- Bundle transactions
- Direct submission to block builders
- Skip public mempool
The tension: RPC providers want to offer MEV protection. But integrating with Flashbots/block builders adds 20-50ms latency.
Trade-off: Protection vs. Speed.
Most users don’t realize this trade-off exists. Panel consensus: “We need better user education about what they’re opting into.”
What I’m Taking Away
As someone who operates RPC infrastructure, here’s what I learned:
1. The bar is rising fast
Sub-50ms response times are becoming table stakes. If you can’t hit this consistently, you’re not competitive.
2. Multi-chain is mandatory
Single-chain RPC providers are dying. Projects want one endpoint for Ethereum, Polygon, Arbitrum, Base, etc.
3. Archive node economics are broken
Archive nodes (full historical state) are EXPENSIVE to run. But users expect them for free. Unsustainable.
Pricing models need to change: Query-based pricing, tiered access, or specialized archive-as-a-service.
4. Decentralization is hard at scale
197 providers sounds decentralized. But in practice, high reliability + low latency + multi-chain support = expensive = only big players survive.
5. The infrastructure layer is undervalued
DeFi protocols get millions in VC funding. RPC providers struggle to charge enough to cover costs.
One panelist: “We’re the roads and bridges. Everyone uses us. Nobody wants to pay for maintenance.”
My Questions for the Community
I run RPC nodes. I live this daily. But I want to hear from others:
For developers:
- What’s your RPC pain point? Reliability? Latency? Cost?
- Do you run your own nodes or use providers?
- What would make you switch providers?
For RPC operators:
- How are you handling the sub-50ms latency requirements?
- What’s your multi-chain strategy?
- Are you profitable or subsidizing with VC money?
For everyone:
- Should RPC infrastructure be a public good (funded by protocols/foundations)?
- Or should it be a competitive market (users pay for performance)?
Token2049 opened my eyes. The infrastructure crisis is real. And we need to talk about it.
Sources:
- Token2049 Singapore 2025 “Infrastructure at Scale” panel (Oct 1, Day 1)
- Crypto APIs “Reliable Bitcoin RPC Nodes: What to Look For in 2025”
- CompareNodes.com “197 Providers for RPC Nodes and Blockchain APIs”
- Panel discussions with CEX infrastructure lead, DeFi CTO, RPC provider founder
- Personal experience operating RPC nodes