pub trait Config: Config + Config {
type RuntimeEvent: From<Event<Self>> + IsType<<Self as Config>::RuntimeEvent>;
type Reaper: EnsureOrigin<Self::RuntimeOrigin>;
type ReapIdentityHandler: OnReapIdentity<Self::AccountId>;
type WeightInfo: WeightInfo;
}
Expand description
Configuration trait of this pallet.
The main purpose of this trait is to act as an interface between this pallet and the runtime in which it is embedded in. A type, function, or constant in this trait is essentially left to be configured by the runtime that includes this pallet.
Consequently, a runtime that wants to include this pallet must implement this trait.
Required Associated Types§
sourcetype RuntimeEvent: From<Event<Self>> + IsType<<Self as Config>::RuntimeEvent>
type RuntimeEvent: From<Event<Self>> + IsType<<Self as Config>::RuntimeEvent>
Overarching event type.
sourcetype Reaper: EnsureOrigin<Self::RuntimeOrigin>
type Reaper: EnsureOrigin<Self::RuntimeOrigin>
The origin that can reap identities. Expected to be EnsureSigned<AccountId>
on the
source chain such that anyone can all this function.
sourcetype ReapIdentityHandler: OnReapIdentity<Self::AccountId>
type ReapIdentityHandler: OnReapIdentity<Self::AccountId>
A handler for what to do when an identity is reaped.
sourcetype WeightInfo: WeightInfo
type WeightInfo: WeightInfo
Weight information for the extrinsics in the pallet.
Object Safety§
This trait is not object safe.