1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
//! Contains Reputation Token Contract definition and related abstractions.
//!
//! New reputation is minted as a result of engagement in the DAO - voting or doing jobs.

mod agg;
mod balances;
mod stakes;
pub mod token;

// #[cfg(feature = "test-support")]
// pub use token::ReputationContractTest;
// pub use token::{
//     add_event_schemas,
//     event_schemas,
//     events::*,
//     ReputationContract,
//     ReputationContractCaller,
//     ReputationContractInterface,
// };

// /// Building blocks of Reputation Token.
// pub mod submodules {
//     pub use super::{agg::*, balances::BalanceStorage, stakes::StakesStorage};
// }