Trait cumulus_pallet_xcmp_queue::pallet::Config[][src]

pub trait Config: Config {
    type Event: From<Event<Self>> + IsType<<Self as Config>::Event>;
    type XcmExecutor: ExecuteXcm<Self::Call>;
    type ChannelInfo: GetChannelInfo;
    type VersionWrapper: WrapVersion;
}
Expand description

Configuration trait of this pallet.

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

Associated Types

Something to execute an XCM message. We need this to service the XCMoXCMP queue.

Information on the avaialble XCMP channels.

Means of converting an Xcm into a VersionedXcm.

Implementors