Trait pallet_ethereum_checked::pallet::Config
source · 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§
sourcetype ReservedXcmpWeight: Get<Weight>
type ReservedXcmpWeight: Get<Weight>
Reserved Xcmp weight for block gas limit calculation.
sourcetype InvalidEvmTransactionError: From<TransactionValidationError>
type InvalidEvmTransactionError: From<TransactionValidationError>
Invalid tx error.
sourcetype ValidatedTransaction: ValidatedTransaction
type ValidatedTransaction: ValidatedTransaction
Validated tx execution.
sourcetype AddressMapper: UnifiedAddressMapper<Self::AccountId>
type AddressMapper: UnifiedAddressMapper<Self::AccountId>
Account mapping.
sourcetype XcmTransactOrigin: EnsureOrigin<Self::RuntimeOrigin, Success = Self::AccountId>
type XcmTransactOrigin: EnsureOrigin<Self::RuntimeOrigin, Success = Self::AccountId>
Origin for transact
call.
sourcetype WeightInfo: WeightInfo
type WeightInfo: WeightInfo
Weight information for extrinsics in this pallet.
Object Safety§
This trait is not object safe.