pub trait Config: Config {
    type Event: From<Event<Self>> + IsType<<Self as Config>::Event>;
    type Timekeeping: TimeValidating<Self::AccountId, Self::Hash>;
    type Projects: TeamsValidating<Self::AccountId, Self::Hash>;
    type Orders: OrderValidating<Self::AccountId, Self::Hash>;
    type BonsaiConverter: Convert<Self::BlockNumber, u32> + Convert<u32, Self::BlockNumber>;
}
Expand description

Configuration trait of this pallet.

Implement this type for a runtime in order to customize this pallet.

Associated Types

Implementors