
Briefing
The core research problem in Asynchronous Byzantine Fault Tolerant (BFT) consensus is the inherent high latency and instability caused by the sequential execution of the Asynchronous Common Sub-seQuence (ACSQ) protocol, specifically its mandatory agreement stage. The breakthrough is the Falcon protocol, which introduces a new primitive called Graded Broadcast (GBC) that allows blocks to be directly included in the Common Subset, effectively bypassing the costly agreement phase. This new architecture, complemented by an Asymmetrical Asynchronous Binary Agreement (AABA) for safety, fundamentally re-engineers the consensus pipeline, enabling continuous block committing and establishing a new benchmark for optimal latency and enhanced throughput in unpredictable network environments.

Context
Prior to this work, asynchronous BFT protocols relied on the Asynchronous Common Sub-seQuence (ACSQ) framework, which necessitated running multiple sequential instances of the Asynchronous Common Subset (ACS) protocol. The ACS itself is composed of a broadcast stage followed by a resource-intensive agreement stage, a design that inherently imposed high latency and instability due to the integral-sorting mechanism required for block finalization. This foundational structure created a hard limit on performance, leading to block discarding and reduced overall throughput in decentralized systems operating under asynchronous conditions.

Analysis
The Falcon protocol’s core mechanism is the decoupling of the broadcast and agreement components of the traditional ACSQ structure. It introduces the Graded Broadcast (GBC) primitive, which allows nodes to commit a block based on a graded level of certainty derived directly from the broadcast stage, rather than waiting for a full, network-wide binary agreement. The GBC mechanism ensures that a block is included in the final common subset as soon as a sufficient threshold of nodes have reliably received and processed it. Safety is maintained by the new Asymmetrical Asynchronous Binary Agreement (AABA), which only runs selectively to resolve potential conflicts, thereby transforming the consensus from a sequential, agreement-centric process into a parallel, broadcast-centric pipeline with superior efficiency.

Parameters
- Agreement Stage Bypass ∞ The removal of the mandatory, sequential agreement phase from the Asynchronous Common Subset protocol.
- Graded Broadcast (GBC) ∞ The novel broadcast protocol enabling direct block inclusion into the common subset.
- Asymmetrical Binary Agreement (AABA) ∞ The new protocol used selectively to resolve conflicts and ensure safety in the GBC-enabled system.

Outlook
This foundational shift from agreement-centric to broadcast-centric consensus opens new research avenues in distributed system design, particularly for modular blockchain architectures. In the next 3-5 years, this GBC-AABA framework could become the standard for high-performance decentralized sequencers and data availability layers operating in unpredictable network conditions. The ability to achieve continuous commitment without sacrificing safety fundamentally unlocks the potential for near-real-time finality in asynchronous settings, directly challenging the traditional latency trade-offs of the scalability trilemma.

Verdict
Falcon’s architectural decoupling of broadcast and agreement establishes a new, more efficient paradigm for asynchronous BFT, fundamentally redefining the achievable latency and throughput limits for decentralized state machine replication.
