pub trait Config: Config + Config {
    type ReservedXcmpWeight: Get<Weight>;
    type InvalidEvmTransactionError: From<TransactionValidationError>;
    type ValidatedTransaction: ValidatedTransaction;
    type AddressMapper: UnifiedAddressMapper<Self::AccountId>;
    type XcmTransactOrigin: EnsureOrigin<Self::RuntimeOrigin, Success = Self::AccountId>;
    type WeightInfo: WeightInfo;
}
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 ReservedXcmpWeight: Get<Weight>

Reserved Xcmp weight for block gas limit calculation.

source

type InvalidEvmTransactionError: From<TransactionValidationError>

Invalid tx error.

source

type ValidatedTransaction: ValidatedTransaction

Validated tx execution.

source

type AddressMapper: UnifiedAddressMapper<Self::AccountId>

Account mapping.

source

type XcmTransactOrigin: EnsureOrigin<Self::RuntimeOrigin, Success = Self::AccountId>

Origin for transact call.

source

type WeightInfo: WeightInfo

Weight information for extrinsics in this pallet.

Object Safety§

This trait is not object safe.

Implementors§