pub trait Config: Config {
type RuntimeEvent: From<Event<Self>> + IsType<<Self as Config>::RuntimeEvent>;
type RegisterTokenOrigin: EnsureOriginWithArg<Self::RuntimeOrigin, Location, Success = Location>;
type XcmSender: SendXcm;
type AssetTransactor: TransactAsset;
type XcmExecutor: ExecuteXcm<Self::RuntimeCall> + FeeManager;
type EthereumLocation: Get<Location>;
type BridgeHubLocation: Get<Location>;
type UniversalLocation: Get<InteriorLocation>;
type PalletLocation: Get<InteriorLocation>;
type BackendWeightInfo: BackendWeightInfo;
type WeightInfo: WeightInfo;
type Helper: BenchmarkHelper<Self::RuntimeOrigin>;
}
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 RuntimeEvent: From<Event<Self>> + IsType<<Self as Config>::RuntimeEvent>
Sourcetype RegisterTokenOrigin: EnsureOriginWithArg<Self::RuntimeOrigin, Location, Success = Location>
type RegisterTokenOrigin: EnsureOriginWithArg<Self::RuntimeOrigin, Location, Success = Location>
Origin check for XCM locations that can register token
Sourcetype AssetTransactor: TransactAsset
type AssetTransactor: TransactAsset
To withdraw and deposit an asset.
Sourcetype XcmExecutor: ExecuteXcm<Self::RuntimeCall> + FeeManager
type XcmExecutor: ExecuteXcm<Self::RuntimeCall> + FeeManager
To charge XCM delivery fees
Sourcetype EthereumLocation: Get<Location>
type EthereumLocation: Get<Location>
Fee asset for the execution cost on ethereum
Sourcetype BridgeHubLocation: Get<Location>
type BridgeHubLocation: Get<Location>
Location of bridge hub
Sourcetype UniversalLocation: Get<InteriorLocation>
type UniversalLocation: Get<InteriorLocation>
Universal location of this runtime.
Sourcetype PalletLocation: Get<InteriorLocation>
type PalletLocation: Get<InteriorLocation>
InteriorLocation of this pallet.
Sourcetype BackendWeightInfo: BackendWeightInfo
type BackendWeightInfo: BackendWeightInfo
Weights for dispatching XCM to backend implementation of register_token
Sourcetype WeightInfo: WeightInfo
type WeightInfo: WeightInfo
Weights for pallet dispatchables
Sourcetype Helper: BenchmarkHelper<Self::RuntimeOrigin>
type Helper: BenchmarkHelper<Self::RuntimeOrigin>
A set of helper functions for benchmarking.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.