Trait polkadot_runtime_parachains::coretime::pallet::Config
source · pub trait Config: Config + Config + Config {
type RuntimeOrigin: From<<Self as Config>::RuntimeOrigin> + Into<Result<Origin, <Self as Config>::RuntimeOrigin>>;
type RuntimeEvent: From<Event<Self>> + IsType<<Self as Config>::RuntimeEvent>;
type Currency: Currency<Self::AccountId>;
type BrokerId: Get<u32>;
type BrokerPotLocation: Get<InteriorLocation>;
type WeightInfo: WeightInfo;
type SendXcm: SendXcm;
type AssetTransactor: TransactAsset;
type AccountToLocation: for<'a> TryConvert<&'a Self::AccountId, Location>;
}
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§
type RuntimeOrigin: From<<Self as Config>::RuntimeOrigin> + Into<Result<Origin, <Self as Config>::RuntimeOrigin>>
type RuntimeEvent: From<Event<Self>> + IsType<<Self as Config>::RuntimeEvent>
sourcetype BrokerPotLocation: Get<InteriorLocation>
type BrokerPotLocation: Get<InteriorLocation>
The coretime chain pot location.
sourcetype WeightInfo: WeightInfo
type WeightInfo: WeightInfo
Something that provides the weight of this pallet.
sourcetype AssetTransactor: TransactAsset
type AssetTransactor: TransactAsset
The asset transactor.
sourcetype AccountToLocation: for<'a> TryConvert<&'a Self::AccountId, Location>
type AccountToLocation: for<'a> TryConvert<&'a Self::AccountId, Location>
AccountId to Location converter
Object Safety§
This trait is not object safe.