eigen_services_blsaggregation/
lib.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
//! BLS Agreggation Service crate.
//!
//! This crate provides a BLS Aggregation Service that can be used to aggregate BLS signatures.

#![doc(
    html_logo_url = "https://github.com/Layr-Labs/eigensdk-rs/assets/91280922/bd13caec-3c00-4afc-839a-b83d2890beb5",
    issue_tracker_base_url = "https://github.com/Layr-Labs/eigensdk-rs/issues/"
)]

pub mod bls_agg;
mod bls_agg_test;
pub mod bls_aggregation_service_error;
pub mod bls_aggregation_service_response;