mithril_aggregator/services/
mod.rs

1//! # Services
2//!
3//! This module regroups services. Services are adapters in charge of the different  bounded contexts of the application:
4//!
5//! * Ticker: provides the time of the blockchain
6//! * StakeEntity: fetches Cardano stake distribution information
7//! * Certifier: registers signers and create certificates once ready
8//! * SignedEntity: provides information about signed entities.
9//!
10//! Each service is defined by a public API (a trait) that is used in the controllers (runtimes).
11
12mod aggregator_client;
13mod cardano_transactions_importer;
14mod certifier;
15mod epoch_service;
16mod message;
17mod prover;
18mod signable_builder;
19mod signed_entity;
20mod signer_registration;
21mod snapshotter;
22mod stake_distribution;
23mod upkeep;
24mod usage_reporter;
25
26pub use aggregator_client::*;
27pub use cardano_transactions_importer::*;
28pub use certifier::*;
29pub use epoch_service::*;
30pub use message::*;
31pub use prover::*;
32pub use signable_builder::*;
33pub use signed_entity::*;
34pub use signer_registration::*;
35pub use snapshotter::*;
36pub use stake_distribution::*;
37pub use upkeep::*;
38pub use usage_reporter::*;