Solana's Architecture: Why It's Fast, and What the Tradeoffs Are
Solana consistently achieves 2,000-4,000 TPS in real-world mainnet conditions, with occasional peaks above 50,000 TPS in stress tests. Its sub-second finality a...

Solana consistently achieves 2,000-4,000 TPS in real-world mainnet conditions, with occasional peaks above 50,000 TPS in stress tests. Its sub-second finality and sub-cent fees make it the dominant chain for applications that require frequent, cheap transactions: DeFi trading, gaming, social applications.
Understanding why requires understanding the stack of innovations Anatoly Yakovenko assembled.
Proof of History: the clock
Solana's key innovation is Proof of History (PoH). Most blockchains treat time as implicit - nodes observe which block was proposed first and agree through a voting mechanism. PoH makes time explicit and verifiable.
PoH is a cryptographic clock: the validator continuously hashes a value (SHA256 of the previous hash), producing a chain where each hash represents the passage of time. The hash sequence is verifiable: you can confirm that N hash operations happened in sequence, which represents a known amount of time.
This lets validators agree on the relative ordering of events without constant communication. Messages timestamped with PoH hashes can be ordered independently by any validator that verifies the PoH chain.
Turbine: block propagation
Solana uses Turbine, a block propagation protocol inspired by BitTorrent. Instead of the leader broadcasting the full block to all validators, it splits the block into shreds (fragments), sends subsets to validator neighborhoods, and relies on validators to propagate shreds to each other.
This reduces the leader's bandwidth requirement from O(N) (broadcast to all N validators) to O(sqrt(N)) (broadcast to one tier, which propagates to the next). With thousands of validators, this is a significant reduction.
Sealevel: parallel execution
Solana's runtime (Sealevel) executes non-conflicting transactions in parallel. Solana transactions declare upfront which accounts they'll read and write - similar to Sui's approach. Transactions with disjoint account sets run simultaneously across multiple CPU cores.
On modern hardware with 64+ cores, this provides substantial throughput gains. Solana is explicitly designed to scale with hardware: as servers become more powerful, Solana's throughput scales linearly.
The tradeoffs
*Hardware requirements*: Solana validators require high-spec hardware - 256GB+ RAM, NVME SSDs, high-bandwidth connections. This is why Solana has fewer validators (~1,800) than Ethereum (~1 million). The validator set is smaller, which has centralization implications.
*Outages*: Solana has experienced several full-network outages (Feb 2021, Sept 2021, Jan 2022, May 2022, Feb 2023). Each was caused by different issues - network congestion, bugs in the vote program, QUIC transition issues. The network has become significantly more stable through 2024-2025, but the outage history is real.
*State growth*: Solana's high throughput generates state at a high rate. Managing state growth (account rent, state pruning) is an active engineering challenge.
Why it's the right chain for some applications
For Oyrade (Morca Labs' privacy prediction market on Solana), the tradeoffs are correct: sub-cent fees enable market making on small-size contracts; near-instant finality enables tight prediction market mechanics; the existing DeFi liquidity and developer tooling is dense.
The prediction: Solana wins applications that require high-frequency, low-value transactions where parallelism is the bottleneck. Ethereum L1 wins for high-value, settlement-critical operations where security maximalism is worth the cost.
Read the latest
Related dispatches

AI Agents in DeFi: The Architecture of Autonomous Finance
The confluence of capable language models, mature blockchain infrastructure, and standardized agent primitives is producing a new category: AI systems that mana...
Jul 2, 2026
Tokenomics: What Makes a Token Valuable (and What Doesn't)
Most tokens are not valuable. This is statistically true: of the ~30,000+ tokens launched in 2024, the vast majority lost >90% of their peak value within 12 mon...
Jul 2, 2026
Passkey Wallets: Crypto Without the Seed Phrase
The seed phrase is the most hostile UX primitive in technology. 12-24 random words, written on paper, stored in a safe, never photographed, never digitized. Los...
Jul 2, 2026