Aleph is an asynchronous and Byzantine fault tolerant consensus protocol aimed at ordering arbitrary messages (transactions). It has been designed to operate continuously under conditions where there is no bound on message-delivery delay and under the assumption that there is a significant probability of malicious behavior, making it an excellent fit for blockchain-related applications. For more information, check the paper
This repository contains a Rust implementation of AlephBFT that offers a convenient API enabling seamless application to various problems. The prime application of the repository is the consensus engine (sometimes called the "finality gadget") of the Aleph Zero blockchain.
If the crate's documentation seems to be not comprehensive enough, please refer to the detailed version.
parity-scale-codec
toml
[dependencies]
aleph-bft = "0.3.1"
DataIO
is
parametrized with a Data
generic type representing the type of items we would like to order.
rust
pub trait DataIO<Data> {
type Error: Debug + 'static;
fn get_data(&self) -> Data;
fn check_availability(
&self,
data: &Data,
) -> Option<Pin<Box<dyn Future<Output = Result<(), Self::Error>> + Send>>>;
fn send_ordered_batch(&mut self, data: OrderedBatch<Data>) -> Result<(), Self::Error>;
}
rust
pub trait KeyBox: Index + Clone + Send {
type Signature: Signature;
fn sign(&self, msg: &[u8]) -> Self::Signature;
fn verify(&self, msg: &[u8], sgn: &Self::Signature, index: NodeIndex) -> bool;
}
rust
pub trait Network<H: Hasher, D: Data, S: Encode + Decode>: Send {
type Error: Debug;
fn send(&self, data: NetworkData<H, D, S>, node: NodeIndex) -> Result<(), Self::Error>;
fn broadcast(&self, data: NetworkData<H, D, S>) -> Result<(), Self::Error>;
async fn next_event(&mut self) -> Option<NetworkData<H, D, S>>;
}
The repository is mainly self-contained. It is implemented using Rust's async features and depends only on the
futures
create from the standard library. Moreover, it has some usual dependencies like
log
and rand
and one bigger for encoding, namely parity-scale-codec
. In future work, we plan to get
rid of this dependency.
There is a basic implementation of an honest committee member that is not cryptographically secure and serves only as a working example of what has to be implemented and not how it should be implemented. The example may be run using:
cargo run --example dummy_honest my_id n_members n_finalized
my_id -- our index, 0-based
n_members -- size of the committee
n_finalized -- number of data to be finalized
There are many unit tests and several integration tests that may be run by standard command
cargo test --lib
or cargo test --lib --skip medium
if you want to run just small tests.
Alternatively, you may run the run_local_pipeline.sh
script.
You may generate the code coverage summary using the gen_cov_data.sh
script and then a detailed
raport for every file with cov_report.sh
. Make sure to first install all the required
tools with install_cov_tools.sh
.
AlephBFT is licensed under the terms of the the Apache License 2.0.
The implementation in this repository is founded by Aleph Zero Foundation.