From: https://gemini.google.com/u/3/app/42f0b4f0f00e576c?pageId=none
now as an alternative to Kegan's arbiter-driven resolution, is there a more true peer-to-peer or decentralized solution to finality?
like bounding frontier by a quorum of online nodes (ones with PL > 0, if seeking to trivially avoid 51% attacks). Would this be a viable alternative or complementary solution?
it seems the methods and theories used in blockchain and cryptocurrencies may be relevant, although they require some adaptation to work with fully decentralized, appendable and non-POW based DAGs. I'm sure some researchers have looked into precisely this kind of problem before, tho. So let's dig up the gold waiting out there and find out all there is to know!
Kegan's paper:
[2601.22963] ERA: Epoch-Resolved Arbitration for Duelling Admins in Group Management CRDTs ERA: Epoch-Resolved Arbitration for Duelling Admins in Group Management CRDTs Kegan Dougal https://arxiv.org/abs/2601.22963
Here's my plan to tackle that topic. Let me know if you need to make changes. http://googleusercontent.com/deep_research_confirmation_content/0
Start research
I've completed your research. Feel free to ask me follow-up questions or request changes.
Decentralized Finality In Non-PoW DAGs
Decentralized Finality in Group Management CRDTs: Overcoming the Duelling Admins Problem Through Quorum-Bounded Frontiers and DAG Consensus
Conflict-Free Replicated Data Types (CRDTs) allow decentralized distributed systems to achieve high availability and partition tolerance by guaranteeing Strong Eventual Consistency (SEC) without requiring active coordination or global consensus protocols [cite: 1, 2, 3]. In fundamentally benign environments, CRDTs provide an elegant solution to the CAP theorem's constraints by prioritizing wait-freedom; replicas can serve requests immediately and merge their local states asynchronously using reconciliation functions that are strictly associative, commutative, and idempotent [cite: 3, 4]. However, the evolution of local-first software from small-scale, trusted collaboration tools to large-scale, adversarial networks—such as the Matrix messaging protocol, the Keyhive authorization system, and the p2panda peer-to-peer framework—has exposed severe theoretical and practical vulnerabilities in pure SEC models [cite: 1, 5, 6].
The primary vulnerability arises when CRDTs are applied to group management and access control, domains characterized by inherently non-commutative operations [cite: 4, 7]. While text editing or counter increments can safely commute, the act of granting or revoking administrative privileges cannot. This fundamental mismatch manifests most acutely in the "Duelling Admins" problem, an access control paradox where two administrators concurrently attempt to revoke each other's privileges [cite: 4, 8]. Because the operations occur concurrently in the system's underlying causal history, traditional CRDT merge functions must rely on arbitrary, deterministic fallback algorithms—such as sorting by event hash or timestamp—to select a prevailing state [cite: 2, 4].
In a Byzantine network, these deterministic tie-breakers introduce catastrophic security flaws, including equivocation and undetectable backdating [cite: 4]. To prevent malicious actors from rewriting access control histories, recent research, most notably Kegan Dougal's 2026 proposition of Epoch-Resolved Arbitration (ERA), argues for the necessity of finality—a bounded total order imposed on the CRDT's Directed Acyclic Graph (DAG) [cite: 4]. While ERA relies on a centralized "finality arbiter" to resolve these conflicts, this report conducts an exhaustive exploration of fully decentralized, peer-to-peer alternatives. By bounding the causal frontier through a dynamic quorum of online nodes weighted by a Sybil-resistant Power Level (
To fully conceptualize the necessity of finality, it is critical to deconstruct the mechanics of state rollbacks in causal histories. Decentralized applications utilizing CRDTs for access control, such as Matrix and Keyhive, manage state through a partial ordering known as a hash chronicle, a blocklace, or a MerkleDAG [cite: 2, 6]. Every new event recursively hashes its direct causal precursors, creating an immutable, append-only history that binds operations to their specific context [cite: 4, 6].
Problems arise when the system attempts to materialize a total execution order from this partial storage order [cite: 11]. The Duelling Admins scenario introduces two events,
If Alice successfully disseminates a concurrent event that overrides Bob's event based on the deterministic sorting rules, the materialised view will violently shift, effectively rolling back the previously accepted state. Formalized mathematically, an event
To mitigate rollbacks, distributed systems theory differentiates between causal stability and finality. Causal stability, as defined by Almeida, occurs when an event with timestamp
Finality, however, is a stronger property. Finality encapsulates the guarantee that an event cannot be rolled back, regardless of whether unknown concurrent events eventually arrive [cite: 4]. It is defined as the absolute absence of any concurrent event that could trigger a rollback:
Without finality, a group management CRDT remains in a state of perpetual vulnerability, where an offline or partitioned Byzantine node could theoretically return to the network and invalidate months of subsequent access control changes by providing a mathematically valid, backdated causal branch [cite: 4, 12].
Recognizing the inadequacy of pure eventual consistency for access control, the ERA model proposes overlaying a centralized arbitration mechanism onto the decentralized CRDT [cite: 4, 11].
The ERA framework introduces a specific, mutually trusted peer designated as the "finality arbiter." This arbiter participates in standard CRDT event gossiping but is uniquely authorized to periodically broadcast an "epoch event" [cite: 4]. An epoch event is a compressed representation of the arbiter's current DAG sources—the most recent events at the causal frontier of the arbiter's local graph [cite: 4].
By publishing this epoch event, the arbiter defines a closed past, essentially drawing a hard cryptographic boundary across the DAG [cite: 4]. When peers execute the merge function, they first sort all events by their respective epochs before applying secondary deterministic sorting (such as timestamp or hash). If a Byzantine node attempts to backdate a revocation event that points to causal predecessors within a closed epoch, the protocol automatically relegates the late-arriving event to a "pending epoch." Pending epochs always execute after closed epochs, neutralizing the backdated event's ability to roll back the finalized history [cite: 4].
While ERA mathematically resolves the Duelling Admins paradox, it introduces an existential architectural flaw: a single point of failure and trust [cite: 4, 13]. The consistency of the finalized events relies entirely on the monotonic, honest creation of epochs by the finality arbiter. If the finality arbiter's private keys are compromised, or if the arbiter acts maliciously, it can broadcast concurrent epoch events to different network partitions [cite: 4, 14].
Although Dougal categorizes this as "detectable backdating"—meaning the network can mathematically prove the arbiter equivocated—the damage is already done. The CRDT loses its ability to safely finalize new non-monotonic operations, and the network must coordinate an out-of-band social consensus to replace the arbiter [cite: 4, 14]. Furthermore, a centralized arbiter fundamentally contradicts the objectives of offline-first and capability-based access control systems like Meadowcap, Willow, and the p2panda protocol, which seek to empower local communities without reliance on centralized infrastructural chokepoints [cite: 7, 15].
Before exploring quorum-bounded finality, it is necessary to examine alternative decentralized approaches that attempt to solve Byzantine behavior entirely through data structure design, without introducing consensus or finality.
A prominent example is The Blocklace, a directed acyclic graph architecture designed to act as a universal Byzantine-repelling CRDT [cite: 16, 17]. The Blocklace abandons global consensus in favor of self-authenticating evidence. In this model, an update is only replicated locally by honest nodes if it is valid, or if it provides cryptographic proof that a specific node has behaved arbitrarily (e.g., proof of equivocation) [cite: 18, 19]. Upon detecting Byzantine behavior, the protocol natively excludes the faulty identity from the causal history, theoretically ensuring that adversaries can only harm a finite prefix of the computation [cite: 16, 19].
However, the assumption that Byzantine exclusion in a pure peer-to-peer network is safe has been systematically dismantled. Erick Lavoie's research on the Blocklace demonstrates a catastrophic vulnerability known as the Memory-Exhaustion Attack [cite: 11, 20, 21]. Lavoie illustrates this through an analogy where a malicious actor ("Eve") continuously creates fictive online accounts to publish incriminating evidence, forcing the honest node ("Alice") to continuously archive this evidence "just in case" [cite: 19, 20].
Because the Blocklace mandates the local replication of all causal histories containing Byzantine evidence, a malicious actor can automate the generation of infinite, disposable cryptographic identities that do nothing but equivocate. The honest nodes are mathematically forced to ingest, validate, and store these invalid histories, expanding the finite limit of replication up to the theoretical maximum of the identifier space [cite: 11, 20]. The honest nodes subsequently fail due to local storage and memory exhaustion, resulting in a network-wide denial of service [cite: 11, 20].
An alternative approach is found in the Melda protocol, which utilizes deterministic reconstruction to separate identity-based trust from content-based trust [cite: 12]. Melda acknowledges that excluding a compromised identity retroactively can invalidate all subsequent updates that depend on it, causing cascading failures in the causal history [cite: 12]. Instead of outright rejection, Melda accepts all updates but uses a deterministic projection to ignore malicious contributions during the materialisation of the view, preserving the causal dependencies of benign updates that were built on top of the compromised node's earlier, valid events [cite: 12].
While Melda prevents the cascading failure of pure exclusion, it does not solve the fundamental Duelling Admins problem. In a purely decentralized, offline-first setting without finality, timestamps remain untrustworthy, and deterministic projections still rely on arbitrary tie-breakers when evaluating concurrent, mutually exclusive administrative events [cite: 12].
| Approach / Protocol | Strategic Principle | Byzantine Handling Mechanism | Finality Mechanism | Centralization Profile |
|---|---|---|---|---|
| Validation (Kleppmann) | Accept or reject based on predicates | Identity-based filtering | None (Pure SEC) | Fully Decentralized |
| Equivocation-Tolerant (Jacob) | Accept equivocations as concurrent | Absorb and merge equivocation | None (Pure SEC) | Fully Decentralized |
| The Blocklace (Lavoie / Almeida) | Validate and detect malicious behavior | Exclude faulty identities via evidence | Self-authenticating evidence | Decentralized (Highly Vulnerable to Memory Exhaustion) |
| Melda (Brocco) | Content-aware trust decoupling | Forward-only exclusion via deterministic reconstruction | None (Pure SEC) | Fully Decentralized |
| ERA (Dougal) | External arbitration of concurrent events | Bounded total order overriding conflicts | Trusted Arbiter Epoch Events | Centralized (Single Point of Failure) |
To resolve the Duelling Admins problem without a centralized arbiter and without succumbing to the memory-exhaustion attacks of pure peer-to-peer exclusion, the network must adopt a hybrid model: bounding the CRDT's causal frontier using a Byzantine Quorum System (BQS) [cite: 10, 22].
In a BQS, finality is achieved when a supermajority of eligible, participating nodes witness and cryptographically attest to a specific state of the DAG [cite: 10, 23]. Instead of a single finality arbiter emitting an epoch event, a predefined quorum of nodes observes the concurrent events (the duel) and collaboratively signs a commitment.
To prevent the Sybil attacks that paralyze protocols like the Blocklace, the quorum must be weighted by an exogenous, Sybil-resistant metric. The original user query proposes bounding the frontier by a quorum of online nodes with a Power Level greater than zero (
By assigning a cryptographic weight to identities, the network trivially avoids 51% attacks, as an adversary would need to accumulate an overwhelming majority of the total network
Crucially, implementing a quorum-bounded frontier does not mean the CRDT must abandon its wait-free, asynchronous advantages for every operation. Decentralized systems can utilize dynamic concurrency [cite: 25]. Standard operations, such as exchanging text messages or editing non-critical data fields, continue to operate with pure SEC, requiring zero communication overhead for consensus. The system only invokes strong synchronization primitives (requesting a quorum signature to bound the frontier) when it must arbitrate highly contentious, non-commutative operations, such as a change to the access control list or a token transfer [cite: 25].
The theoretical methods for achieving quorum-based finality over a directed acyclic graph already exist within the blockchain and cryptocurrency domains, specifically within asynchronous BFT (aBFT) protocols. Adapting these protocols to fully decentralized, non-PoW CRDTs requires synthesizing the separation of data dissemination from transaction ordering [cite: 3, 26].
The Hedera Hashgraph protocol provides the earliest template for quorum-derived finality in a DAG [cite: 9]. In Hashgraph, nodes do not achieve consensus by transmitting distinct voting messages across the network. Instead, the consensus algorithm relies on the topological structure of the DAG itself. Every new event references two previous events: one generated by the node itself, and one received via gossip from a peer [cite: 9].
This creates a complete, cryptographically secure map of the communication history. Through a process called virtual voting, every node can independently analyze this shared hashgraph to calculate exactly when a specific event achieved visibility across a supermajority (a quorum) of nodes weighted by their staked HBAR (their
Adapted for a group management CRDT, virtual voting offers an elegant solution to the Duelling Admins problem. If Alice and Bob issue concurrent revocations, the underlying CRDT gossip protocol distributes these events. Because the CRDT's causal history already forms a DAG, nodes can execute virtual voting algorithms locally to mathematically prove which revocation event reached a stake-weighted quorum first. The network reaches deterministic finality without a single arbiter, and without sending any additional consensus voting messages [cite: 9, 28].
Recent advancements have formalized this approach into "structured DAGs," characterized by protocols such as DAG-Rider, Tusk, and Bullshark [cite: 23, 29, 30]. These frameworks formulate the problem as "eventual state-machine replication," separating the reliable broadcast of data from the consensus logic that orders it [cite: 3].
In a structured DAG, nodes broadcast events in logical rounds. To advance from round
- DAG-Rider ensures zero-overhead consensus by iteratively selecting certain "leader" vertices in the DAG and appending their causal past to the finalized sequence [cite: 3, 31].
- Bullshark builds on this by drastically reducing latency, allowing the DAG to efficiently finalize transactions during periods of network synchrony while automatically falling back to robust asynchronous safety when the network degrades or partitions [cite: 23, 29, 31].
When applied to CRDTs, these protocols introduce a "collapse policy" [cite: 23]. The DAG preserves the highly concurrent, branching structure necessary for local-first operations. However, once a specific topological wave of quorum evidence is established, the collapse policy dictates that preserved distinctions (such as conflicting concurrent branches) stop mattering [cite: 23]. The causal frontier is bounded mathematically by the structure of the DAG itself, providing stable throughput and fast finality without a central leader [cite: 3, 29].
While virtual voting and structured DAGs provide the theoretical mechanism for decentralized finality, directly exposing the complex DAG consensus proofs to every lightweight client in a peer-to-peer network is highly inefficient [cite: 24, 32]. To a thin client or an offline node rejoining the network, parsing thousands of historical DAG rounds to verify finality is computationally prohibitive [cite: 24, 32].
To make a quorum-bounded frontier viable, the infrastructure must synthesize the decentralized consensus of the quorum into a single, easily verifiable cryptographic artifact. This is achieved through Threshold Signature Schemes (TSS), specifically FROST (Flexible Round-Optimized Schnorr Threshold Signatures), ROAST, or BLS signatures [cite: 24, 33].
Threshold signatures allow a decentralized quorum of nodes to collaboratively generate a single digital signature that represents the collective authorization of the group [cite: 33, 34].
In Dougal's ERA, the centralized finality arbiter creates an epoch by signing a batch of events. In a decentralized architecture, this process is emulated through multiparty computation:
- The CRDT network experiences a conflict (e.g., Duelling Admins).
- The network's core nodes (those with
$PL > 0$ ) execute a structured DAG consensus protocol (like Bullshark or FastHotStuff) to achieve distributed agreement on the resolution [cite: 29, 35]. - Upon reaching agreement, the nodes do not simply output the DAG state. Instead, each node in the quorum uses its individual secret key to generate a "signature share" corresponding to the agreed-upon epoch boundary [cite: 33, 34].
- Once a predefined threshold (
$t$ out of$n$ nodes) of signature shares is broadcast, any node can mathematically aggregate them into a unique, unforgeable threshold signature [cite: 34, 36].
The resulting artifact is cryptographically identical to a signature generated by a single entity [cite: 34]. To a standard CRDT peer, the threshold-signed epoch event looks and behaves exactly like an epoch event emitted by Kegan Dougal's centralized finality arbiter [cite: 4, 32]. This provides an extraordinary architectural advantage: the underlying CRDT logic does not need to be rewritten to understand complex DAG consensus mechanisms. It merely verifies the single threshold signature and accepts the epoch boundary, allowing for clean decoupling between the application state (the CRDT) and the security layer (the consensus quorum) [cite: 4, 24, 33].
Protocols like the Arch Network successfully utilize this exact stack—layering a DAG structure for concurrent pre-confirmations and partial rollbacks, followed by FROST/ROAST threshold signatures to commit finalized states to a base layer [cite: 24].
| Network / Architecture | Consensus Mechanism | Finality Type | Time to Finality | Scalability Profile |
|---|---|---|---|---|
| Pure CRDT (Matrix/Keyhive) [cite: 2, 5] | None (Eventual Consistency) | None (Vulnerable) | N/A | Extremely High (Wait-free) |
| Ethereum L1 [cite: 37] | Gasper (Casper FFG) | Deterministic | ~13 minutes | Low (Global ordering) |
| Solana [cite: 37] | Tower BFT | Deterministic | ~12.8 seconds | High (Hardware constrained) |
| BNB Chain (Fermi) [cite: 37] | Parlia (Modified PoSA) | Deterministic | ~1 second | High |
| ERA (Central Arbiter) [cite: 4] | Centralized Checkpointing | Arbiter-Defined | Latency to Arbiter | High (Single node bottleneck) |
| Quorum-Bounded CRDT [cite: 29, 33] | Structured DAG + FROST | Threshold Deterministic | Network dependent | High (Asynchronous BFT) |
A critical requirement of the proposed decentralized solution is that the frontier must be bounded by a quorum of online nodes. In decentralized, peer-to-peer networks, participation is fluid; devices lose power, experience network partitions, or deliberately drop offline [cite: 1, 38]. If a threshold signature scheme requires 67 signatures from a static list of 100 administrators, the system will permanently halt if 34 administrators go offline [cite: 10, 39].
To maintain liveness, the system must employ Dynamic Reconfiguration—the ability for the network to spontaneously adjust its own rule for time evolution and membership [cite: 38].
Protocols such as Pastro, FastPay, and BeauForT illustrate how to securely implement dynamic reconfiguration in Byzantine environments [cite: 10, 40, 41]. BeauForT, for instance, specifically optimizes BFT consensus for client-centric, browser-based applications with unstable network connections and high churn [cite: 40].
In a dynamic quorum-bounded CRDT, the epoch boundary serves dual purposes: it finalizes the causal history of the data, and it finalizes the active validator set for the next epoch [cite: 32].
-
Liveness Monitoring: Nodes continuously track the participation of their peers. If a node holding high
$PL$ fails to contribute signature shares or DAG vertices over multiple rounds, it is flagged as offline [cite: 32, 39]. -
Transaction-Driven Reconfiguration: The network utilizes the consensus mechanism to agree on a reconfiguration transaction. This transaction ejects the offline node from the active set and dynamically recalculates the threshold (
$t$ ) required for the next FROST signature based solely on the remaining online nodes holding$PL > 0$ [cite: 33, 41]. - Proactive Secret Sharing: To prevent a scenario where ejected or offline administrators collude to generate valid threshold signatures for past epochs, the system must utilize forward-secure digital signatures [cite: 10]. Protocols like CHURP and D-FROST (Dynamic FROST) utilize proactive secret sharing to automatically rotate the underlying cryptographic key shares among the new quorum without changing the aggregate public key [cite: 33, 42, 43].
This guarantees that the active quorum accurately reflects the present state of the network, preventing halting failures while maintaining stringent Byzantine fault tolerance [cite: 10, 33].
Evaluating whether a quorum-bounded frontier is a viable alternative or a complementary solution to Kegan Dougal's ERA requires analyzing the desired architectural complexity of the target application.
From a theoretical standpoint, a quorum-bounded structured DAG (e.g., Bullshark) entirely supersedes the need for Dougal's finality arbiter. By separating data dissemination (the CRDT) from ordering (the DAG consensus), the network organically establishes epochs without requiring an external party [cite: 29, 31]. This represents a "true peer-to-peer" alternative. Duelling admins are mathematically resolved by the wave structure of the DAG, providing deterministic finality while preserving the system's resilience against targeted denial-of-service attacks or centralized compromise [cite: 13, 23].
However, from an engineering and implementation standpoint, utilizing the quorum as a complementary solution to the ERA framework offers the most pragmatic path forward. Completely rewriting the local-first merge semantics of a CRDT framework like p2panda or Matrix to natively interpret complex DAG wave consensus is computationally heavy and difficult to implement on resource-constrained edge devices [cite: 6, 15].
In a complementary hybrid architecture:
- Application Layer: The CRDT logic remains exactly as proposed in Dougal's ERA paper. The local node simply executes wait-free event generation and expects to periodically receive an "epoch event" to close the past and finalize group management changes [cite: 4].
-
Infrastructure Layer: Instead of a single finality arbiter, an underlying sub-network of highly available "support peers" (nodes with
$PL > 0$ ) form a decentralized oracle [cite: 15]. This mirrors the architecture of projects like Willow and Pillow, which provide permissioned, highly available storage support to p2panda apps [cite: 15]. - Cryptographic Bridge: This oracle sub-network utilizes DAG-Rider or FastHotStuff to quickly achieve consensus on the state of the CRDT, and uses FROST to aggregate their consensus into a single threshold signature [cite: 33, 35].
The resulting artifact is fed back into the CRDT application layer. The application layer remains entirely unaware of the complex asynchronous BFT protocols happening beneath it; it only sees a perfectly valid ERA epoch event signed by the aggregate network public key [cite: 4, 34]. This provides the best of both worlds: the simplicity and high performance of ERA's merge semantics, secured by the robust, trustless, and fully decentralized properties of a reconfigurable BFT quorum.
The application of Conflict-Free Replicated Data Types to access control and group management exposes a critical threshold where eventual consistency is no longer sufficient. Non-commutative operations, exemplified by the Duelling Admins problem, require definitive finality to prevent Byzantine actors from manipulating causal histories through equivocation or undetectable backdating [cite: 4]. While Kegan Dougal’s ERA proposal elegantly resolves this through epoch checkpointing, its reliance on a centralized arbiter introduces vulnerabilities fundamentally at odds with decentralized computing paradigms [cite: 4, 13].
Bounding the CRDT's causal frontier utilizing a dynamically reconfigurable quorum of online nodes weighted by Power Levels (
Crucially, the integration of threshold cryptography, such as FROST and forward-secure dynamic reconfiguration, allows this decentralized quorum to synthesize its consensus into a single cryptographic artifact [cite: 33, 34]. This artifact serves as a drop-in replacement for the ERA epoch event, allowing the quorum-bounded frontier to function as a highly complementary infrastructure layer to existing CRDT applications. Ultimately, combining these cryptographic consensus primitives with CRDT data structures paves the way for highly scalable, local-first applications that maintain uncompromising Byzantine fault tolerance without sacrificing the resilience of true peer-to-peer networks.
1.
researchgate.net
Approaches to Conflict-free Replicated Data Types | Request PDF
publikationen.bibliothek.kit.edu
Analysis of the Matrix Event Graph Replicated Data Type - KIT
arxiv.org
Wait-free Replicated Data Types and Fair Reconciliation - arXiv
arxiv.org
ERA: Epoch-Resolved Arbitration for Duelling Admins in Group
inkandswitch.com
Keyhive: Local-first access control - Ink & Switch
arxiv.org
Towards System-Oriented Formal Verification of Local-First Access
p2panda.org
Access Control in Decentralised Systems - p2panda
semanticscholar.org
To the Best of Knowledge and Belief: On Eventually Consistent
changelly.com
What Is Hedera? Hashgraph, HBAR and Network Explained
10.
arxiv.org
Permissionless and Asynchronous Asset Transfer - arXiv
semanticscholar.org
Matrix Decomposition: Analysis of an Access Control Approach on
researchgate.net
Fine-grained Post-Compromise Handling without Breaking Causality
emerald.com
Consensus in Data Management: From Distributed Commit to
researchgate.net
Concurrent epochs can cause history to deterministically re-order
worm-blossom.org
worm-blossom
github.com
GitHub - hellas-ai/awesome-consensus: A bibliography for protocol
researchgate.net
Byzantine Accountability Without Consensus: Strong Eventual
arxiv.org
Strong Eventual Consistency for Non-Associative, Stochastic ... - arXiv
arxiv.org
Memory-Exhaustion Attack on the Blocklace Byzantine-Repelling
20.
arxiv.org
Memory-Exhaustion Attack on the Blocklace Byzantine-Repelling
arxiv.org
Computer Science - arXiv
schmiste.github.io
The Distributed Computing Column - Stefan Schmid
arxiv.org
Communication Evidence, Horizons, and Prefix Decisions - arXiv
research.4pillars.io
Why Use a Bridge To Work With Bitcoin When You Can Just Use
researchgate.net
The Consensus Number of a Cryptocurrency | Request PDF
alphaxiv.org
State-based Conflict-Free Replicated Ledger from Grow-Only
blockeden.xyz
Directed Acyclic Graph (DAG) in Blockchain
pmc.ncbi.nlm.nih.gov
Semantic decentralized authentication for IoT-based e-learning
arxiv.org
SoK: DAG-based Consensus Protocols - arXiv
30.
arxiv.org
A Comprehensive Review of BFT Consensus Algorithms - arXiv
researchgate.net
Communication pattern of Chain. - ResearchGate
docs.bsquared.network
B² Network: Put Bitcoin in Every AI's Wallet
github.com
luxfi/threshold: LUX multiparty CGGMP21, FROST, LSS protocol and
medium.com
noxed part 1: Overview (Byzantine agreement) | by DEXON - Medium
mdpi.com
RVR Blockchain Consensus: A Verifiable, Weighted-Random
arxiv.org
HotStuff-1: Linear Consensus with One-Phase Speculation - arXiv
spark.money
Stablecoin Settlement Speed by Chain: Finality Compared - Spark
gist.github.com
citeseerx.40000 - GitHub Gist
dokumen.pub
Dependability Benchmarking for Computer Systems (Practitioners) 1
40.
heydari.be
BeauForT: Robust Byzantine Fault Tolerance for Client-centric
researchgate.net
FastPay: High-Performance Byzantine Fault Tolerant Settlement
researchgate.net
Practical Asynchronous Byzantine Agreement Using Cryptography
matteonardelli.it
Matteo Nardelli | Bank of Italy - University of Rome Tor Vergata