← index

Asynchronous Pipeline Consensus: Decoupling Mining from Full-Block Validation

An archive of delvingbitcoin.org · view original topic →

· user1 · #1 ·

I’d like to share a framework designed to scale L1 throughput under Nakamoto security by shifting propagation latency from a physical bottleneck to a configurable validation window.

Core Concept: Asynchronous Pipeline Consensus (k=6,i=2)

Block Structure: Extended Header and Compressed UTXO IDs

Logical Isolation and Invalidation Recovery

Security and Attack Vector Deterrence

Fork Convergence and Validation Rules

Key Discussion Points

  1. Declaration Incentives: The protocol relies on miners honestly declaring n_k_declaration based on local data availability. A miner could declare False even when the Full Block is available, hoping to orphan a competing block. The difficulty penalty η=1.2 is intended to deter this, but the upper bound is tight. Is there a more robust mechanism—perhaps a bond that is forfeited upon a verified false declaration—that could replace or supplement the penalty?

  2. Parameter Selection: The current configuration (k=6, i=2, η=1.2, 6-byte IDs, 10MB blocks, 600s interval) is conservative. Appendix A discusses alternative configurations (e.g., 1MB blocks with 100s interval for faster confirmation). What is the optimal parameter set for high-frequency use cases (e.g., DeFi) versus settlement use cases (e.g., large transfers)?

Additional discussion points:


**Proposal: Scaling L1 Throughput via Asynchronous Pipeline Consensus**
(Full paper: "Minimizing Mempool Dependency in PoW Mining...", IACR ePrint 2026/141)

** Paper PDF: ePrint 2026/141

GyuChol.Kim