pub trait Config: Config + Config {
type Event: From<Event<Self>> + IsType<<Self as Config>::Event>;
type SovereignOrigin: EnsureOrigin<<Self as Config>::Origin>;
}
Expand description
Configuration trait of this pallet.
Implement this type for a runtime in order to customize this pallet.
Required Associated Types§
type Event: From<Event<Self>> + IsType<<Self as Config>::Event>
sourcetype SovereignOrigin: EnsureOrigin<<Self as Config>::Origin>
type SovereignOrigin: EnsureOrigin<<Self as Config>::Origin>
The required origin for sending XCM as parachain sovereign.
Typically root or the majority of collective.