Solving the Trilemma: Where Is Current Research on Blockchain Technology? A Systematic Review
To evaluate why decentralized financial architectures still encounter friction under heavy market loads, one must trace the technical architecture back to its formal academic diagnosis. In the landmark paper Where Is Current Research on Blockchain Technology? A Systematic Review (Jesse Yli-Huumo, Deokyoon Ko, Sujin Choi, Sooyong Park, and Kari Smolander; PLOS One, 2016), researchers conducted a rigorous mapping of early scientific literature. Their findings were definitive: over 80% of cryptographic research at the time focused strictly on the Bitcoin network, while primary performance challenges—specifically blockchain scalability limitations like latency (the delay in processing data) and throughput (transaction speeds)—remained critically understudied and lacked validated solutions.
A decade later, this systematic review stands as the structural diagnostic manual that anticipated the multi-billion-dollar engineering sprint defining our current web3 ecosystem. Resolving the friction between high throughput and low latency without diluting decentralized consensus remains the central objective of modern protocol engineering.
1. The Anatomy of Scalability: Throughput vs. Latency
To understand why scaling a distributed network is fundamentally different from optimizing a traditional database, we must isolate the core engineering metrics that govern consensus mechanics.
Transaction Throughput (TPS)
Throughput measures the total volume of transactions a ledger can validate, commit, and broadcast per second. In monolithic blockchain designs, throughput is strictly bound by the formula:
$$\text{Throughput} = \frac{\text{Block Size Limits}}{\text{Average Transaction Size} \times \text{Block Interval}}$$
If an engineer increases the block size to permit more transactions, the time required to propagate that block across a globally distributed set of validator nodes increases exponentially.
Latency (Confirmation Time)
Latency is the chronological delta between a user submitting a cryptographically signed transaction to the mempool and the moment that transaction achieves deterministic finality (irreversibility). This is divided into two distinct horizons:
- Execution Latency: The time required for a node’s virtual machine to compute the state transition.
- Consensus Latency: The time required for independent validation nodes to execute a consensus protocol and confirm that the block containing the transaction belongs to the canonical chain.
When network demands surge, these metrics unravel rapidly. Monolithic blockchains queue unconfirmed transactions in the mempool, triggering fee-estimation bidding wars. As a result, users face skyrocketing transaction costs and long settlement delays, proving that early academic concerns regarding unmeasured execution limits were entirely correct.
2. Early Diagnostic Gaps: The Yli-Huumo Systematic Review
The 2016 study, Where Is Current Research on Blockchain Technology? A Systematic Review, provided early insights by examining exactly 41 primary scientific papers to map the trajectory of decentralized system development.
The systematic mapping study revealed that early security and privacy research relied heavily on theoretical frameworks rather than empirical data. Key performance bottlenecks were often overlooked:
- Understudied Scalability Dynamics: The review highlighted that early research lacked concrete data on performance optimization, leaving throughput and latency largely unaddressed.
- The Overshadowing Dominance of Bitcoin: By focusing almost exclusively on Bitcoin’s Proof of Work (PoW), early researchers overlooked the performance challenges that would later emerge with the introduction of complex, stateful smart contracts.
- Lack of Concrete Evaluation: Over 80% of the papers reviewed lacked rigorous empirical evaluation of their proposed protocol adjustments, failing to account for real-world variables like global network latency and bandwidth constraints.
By identifying these research gaps, Yli-Huumo and his co-authors anticipated the structural challenges that would emerge during subsequent market expansions. This underscored the need for architectural frameworks that decouple execution from consensus.
3. The Modern Scaling Frontier: Decoupling and Parallelization
To scale transaction processing beyond these historical limits, modern research has shifted from optimizing monolithic layers toward execution separation and parallel processing models.
Sharding Protocols: State vs. Network Partitioning
Sharding breaks a single blockchain into smaller, parallel pieces called shards. Instead of requiring every node to process every transaction, the network splits its workload:
- Transaction Sharding: Transactions are distributed across distinct groups of nodes, allowing multiple transaction pools to be processed simultaneously.
- State Sharding: The ledger’s underlying state database is partitioned across different storage shards. Nodes only maintain the state history relevant to their specific shard, addressing the long-standing issue of state bloat.
Zero-Knowledge Rollups (ZK-Rollups)
ZK-Rollups move computation off the primary layer entirely while preserving security. A dedicated execution environment processes thousands of transactions off-chain, compresses the state transitions into a single batch, and generates a cryptographic proof (such as a SNARK or STARK). This proof is then submitted to and verified by the foundational Layer-1 contract.
By validating a mathematical proof rather than re-executing each individual transaction, the underlying network can significantly lower its consensus latency and scale its processing capacity.
Parallel Execution Engines
Traditional execution environments, such as the standard Ethereum Virtual Machine (EVM), process transactions sequentially. If Transaction A and Transaction B are entirely independent (e.g., two unrelated peer-to-peer asset transfers), they must still wait in line behind one another.
Modern high-performance execution environments use directed acyclic graphs (DAGs) and explicit memory-access mapping to process non-conflicting transactions in parallel. This design allows networks to maximize multi-core hardware efficiency and maintain high throughput during periods of intense congestion.

4. Architectural Trade-offs and Systemic Risks
Optimizing a protocol involves managing fundamental trade-offs. Improving performance metrics often introduces new technical risks and architectural trade-offs across the system.
The Structural Trade-Off Matrix
| Architectural Vector | Throughput / Latency Impact | Decentralization Implications | Principal Systemic Risks |
| Monolithic Block Expansion | Moderate TPS expansion; introduces significant block propagation delays. | Severe degradation; escalates hardware demands for full nodes. | Network forks; state bloat; centralization around industrial data centers. |
| State & Transaction Sharding | Exponential throughput growth via parallel processing paths. | Moderate dispersion; relies heavily on specialized cross-shard communication lines. | Data availability failures; shard-takeover vulnerabilities; cross-shard security vulnerabilities. |
| Off-Chain Rollup Scaling | High execution throughput; shifts settlement burdens off-chain. | Shifts execution responsibilities to specialized sequencer architectures. | Sequencer censorship; complex liquidity fragmentation; smart contract bugs. |
| Parallel Execution Engines | Maximizes multi-core hardware processing efficiency. | Limits validation to nodes equipped with high-throughput hardware profiles. | State access conflicts; state-transition bugs; increased infrastructure costs. |
Key Insight: The Centralization Cost of State Bloat
When a network processes thousands of transactions per second, its ledger state grows rapidly. If state storage requirements surpass typical consumer hardware limits, validation inevitably concentrates within centralized data centers. Consequently, mitigating state bloat through active database pruning and history expiry protocols is just as critical to long-term scalability as increasing raw transaction speeds.
5. Strategic Directives for Enterprise and Capital Architects
For institutional investors, enterprise tokenization architects, and infrastructure engineers, navigating these performance trade-offs requires an objective, analytical framework:
- Match Architecture to Application Needs: High-frequency applications like derivatives trading require execution environments featuring low latency and parallel execution. Conversely, high-value asset settlements are better suited for robust, highly decentralized settlement layers, even if they feature lower native throughput.
- Mitigate Liquidity Fragmentation: Deploying smart contracts across multiple isolated execution layers can fragment capital. Enterprises should build on modular execution layers that feature secure, trustless interoperability protocols to avoid isolating asset pools.
- Factor In Long-Term Operating Costs: While low layer-2 transaction fees are appealing, infrastructure teams must account for auxiliary operational overhead, including data availability costs, RPC access fees, and proof-generation compute costs.
FAQ SECTION
– What was the core conclusion of the 2016 systematic review on blockchain research?
- The study titled Where Is Current Research on Blockchain Technology? A Systematic Review concluded that early scientific research focused primarily on Bitcoin’s Proof of Work mechanics. Crucial performance metrics, specifically blockchain scalability limitations like latency and throughput, were left unstudied and lacked rigorous empirical testing.
– What is the difference between blockchain throughput and transaction latency?
- Transaction throughput refers to the total volume of transactions a network can process per second (TPS). Latency represents the time delay between a user submitting a transaction and that transaction receiving final, irreversible confirmation on the ledger.
– How do zero-knowledge rollups improve blockchain scalability?
- ZK-Rollups scale networks by shifting computation off the primary layer. They bundle thousands of transactions off-chain, compress them, and generate a succinct cryptographic proof. The underlying Layer-1 network only needs to verify this proof, bypassing the resource-intensive process of executing each individual transaction.
– Why does increasing block size pose a threat to blockchain decentralization?
- Larger block sizes accommodate more transaction data, but they increase block propagation delays across global nodes. This requires validators to operate higher-bandwidth networks and more expensive storage hardware, which can marginalize smaller nodes and centralize validation power within large data centers.
– What is state bloat, and how does it impact high-throughput networks?
- State bloat occurs as a blockchain’s historical ledger and account data grow over time. In high-performance networks, this accumulation can exceed normal hardware storage capacities, making it difficult for independent validators to maintain full nodes and preserve network decentralization.
FINANCIAL DISCLAIMER
Regulatory and Financial Risk Notice: This analysis is presented strictly for educational, informational, and search engine optimization diagnostic purposes. It does not constitute formal financial, investment, legal, or specialized technical engineering advice. The digital asset infrastructure market undergoes rapid technological evolution and remains subject to high volatility, systemic smart contract risks, and changing regulatory environments. Readers should consult qualified financial analysts and infrastructure architects before committing capital or deploying mission-critical enterprise systems. The author and publication maintain neutral positions and hold no promotional allocations in the specific cryptographic architectures reviewed within this text.




