2.1 Sequential vs. Parallel Proof-of-Work
The fundamental architectural difference lies in the structure of the blockchain. Sequential PoW (Bitcoin) forms a single chain where each block's puzzle cryptographically references exactly one previous block (a linked list). Parallel PoW (proposed) forms a directed acyclic graph (DAG)-like structure where a block contains $k$ independent puzzle solutions, each potentially referencing different prior states, culminating in a single state update.
Schematic Comparison (Referencing Fig. 1):
- Bitcoin (Sequential): Block → Puzzle Solution → Hash Reference → Next Block (Linear Chain).
- Proposed (Parallel): Block → {Puzzle Solution 1, ..., Puzzle Solution k} → Multiple Hash References → Aggregated State Update.
This parallelism increases the rate of "proof generation" within a fixed time window, providing more statistical samples for agreement.