
Briefing
The fundamental problem in high-performance asynchronous Byzantine Fault Tolerance (BFT) is the inherent throughput-latency tension, where maximizing transaction batch throughput dramatically sacrifices time-to-finality, simultaneously exposing transactions from slow nodes to censorship. The Dumbo-NG protocol resolves this by achieving completely concurrent execution of the bandwidth-intensive transaction dissemination and the bandwidth-oblivious agreement phases. This is accomplished through a non-trivial direct reduction from asynchronous atomic broadcast to a Multi-Valued Validated Byzantine Agreement (MVBA) that incorporates a quality property. This architectural decoupling and the inherent quality guarantee establish a new paradigm for BFT, enabling both peak throughput and minimal latency while provably eliminating the threat of transaction censorship at no additional communication cost.

Context
Prior to this research, performant asynchronous BFT protocols relied on batching transactions to achieve guaranteed linear amortized communication complexity, a necessity for high throughput. This design forced a direct tradeoff ∞ larger batches increased throughput but incurred a corresponding, substantial penalty in latency. Furthermore, the protocol structure often allowed a small number of slow or malicious nodes (the f slowest) to effectively censor their own broadcasted transactions, as these messages would be excluded from the final agreed-upon set without costly mitigation techniques like threshold cryptography.

Analysis
The core breakthrough is the architectural separation and concurrent operation of the two major BFT components ∞ the data distribution layer and the final agreement layer. Previous protocols executed these sequentially or semi-sequentially. Dumbo-NG introduces a mechanism where nodes continuously disseminate transactions (the bandwidth-intensive part) while simultaneously running the agreement protocol (the bandwidth-oblivious part).
The agreement phase, which uses a Multi-Valued Validated Byzantine Agreement (MVBA), is reduced directly from the atomic broadcast requirement. Crucially, the MVBA is augmented with a “quality property,” which ensures that the set of transactions chosen for finality is guaranteed to contain broadcasts from honest nodes with at least 1/2 probability, thereby making censorship structurally impossible for any honest participant.

Parameters
- Censorship Mitigation Cost ∞ Zero extra communication or computational overhead. Explanation: The protocol guarantees censorship resilience as an intrinsic property of its structure, not an add-on.
- Latency Resolution ∞ Throughput-Oblivious. Explanation: The protocol’s design resolves the tension, allowing it to approach peak throughput with minimal increase in latency.
- Communication Complexity ∞ Guaranteed Linear Amortized. Explanation: Like state-of-the-art protocols, it maintains linear amortized communication complexity for sufficiently large input batches.

Outlook
This foundational work redefines the performance ceiling for asynchronous BFT, establishing a new design target where latency is independent of throughput. The immediate application is in high-frequency, mission-critical decentralized systems, such as cross-chain bridges or decentralized exchanges, where both low latency and guaranteed transaction inclusion are paramount. In the next three to five years, this principle of concurrent dissemination and agreement is likely to be integrated into next-generation rollup sequencing layers and sharded execution environments, enabling a new class of highly responsive, censorship-resistant decentralized infrastructure.

Verdict
The Dumbo-NG protocol fundamentally breaks the classic throughput-latency trade-off, setting a new, higher standard for censorship-resistant security and performance in asynchronous Byzantine Fault Tolerance.