referrerpolicy=no-referrer-when-downgrade
snowbridge_pallet_system_frontend::pallet

Trait Config

Source
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§

Source

type RuntimeEvent: From<Event<Self>> + IsType<<Self as Config>::RuntimeEvent>

Source

type RegisterTokenOrigin: EnsureOriginWithArg<Self::RuntimeOrigin, Location, Success = Location>

Origin check for XCM locations that can register token

Source

type XcmSender: SendXcm

XCM message sender

Source

type AssetTransactor: TransactAsset

To withdraw and deposit an asset.

Source

type XcmExecutor: ExecuteXcm<Self::RuntimeCall> + FeeManager

To charge XCM delivery fees

Source

type EthereumLocation: Get<Location>

Fee asset for the execution cost on ethereum

Source

type BridgeHubLocation: Get<Location>

Location of bridge hub

Source

type UniversalLocation: Get<InteriorLocation>

Universal location of this runtime.

Source

type PalletLocation: Get<InteriorLocation>

InteriorLocation of this pallet.

Source

type BackendWeightInfo: BackendWeightInfo

Weights for dispatching XCM to backend implementation of register_token

Source

type WeightInfo: WeightInfo

Weights for pallet dispatchables

Source

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.

Implementors§

impl Config for Runtime