eigen_services_blsaggregation/lib.rs
1//! BLS Agreggation Service crate.
2//!
3//! This crate provides a BLS Aggregation Service that can be used to aggregate BLS signatures.
4
5#![doc(
6 html_logo_url = "https://github.com/Layr-Labs/eigensdk-rs/assets/91280922/bd13caec-3c00-4afc-839a-b83d2890beb5",
7 issue_tracker_base_url = "https://github.com/Layr-Labs/eigensdk-rs/issues/"
8)]
9
10pub mod bls_agg;
11mod bls_agg_test;
12pub mod bls_aggregation_service_error;
13pub mod bls_aggregation_service_response;