FBAS analyzer

Library and tools for analyzing the quorum structure of Federated Byzantine Agreement Systems (FBASs) like Stellar. Related research paper here.

Among other things, the implementation here can:

Powers our Stellar Network Analysis.

Usage as tools

  1. Install Rust
  2. (optional) Run unit tests and functional tests: scripts/tests.py
  3. Build: cargo build --release
  4. Try tool using older data from stellarbeat: target/release/fbas_analyzer test_data/stellarbeat_nodes_2019-09-17.json -m test_data/stellarbeat_organizations_2019-09-17.json -a -p
  5. Get some new data from stellarbeat: scripts/get_latest_stellarbeat_data.sh
  6. Play around some more: target/release/fbas_analyzer -h target/release/bulk_fbas_analyzer -h target/release/qsc_simulator -h target/release/graph_generator -h

Usage as Rust library

Add this to your Cargo.toml: [dependencies] fbas_analyzer = { version = "0.3", default-features = false } Or this, if you need simulation functionality: [dependencies] fbas_analyzer = { version = "0.3", default-features = false, features = ["qsc_simulation"] }

Check out the API Reference and how the API is used by the tools src/bin/.

See also / Acknowledgements

...and of course the awesome stellarbeat.io :)