pub trait Config: Config {
    type Event: From<Event<Self>> + Into<<Self as Config>::Event>;
    type Call: Parameter + UnfilteredDispatchable<Origin = Self::Origin> + GetDispatchInfo;
}

Associated Types

The overarching event type.

A sudo-able call.

Implementors