Trait pallet_bridge_relayers::pallet::Config
source · pub trait Config<I: 'static = ()>: Config {
type RuntimeEvent: From<Event<Self, I>> + IsType<<Self as Config>::RuntimeEvent>;
type Reward: AtLeast32BitUnsigned + Copy + Member + Parameter + MaxEncodedLen;
type PaymentProcedure: PaymentProcedure<Self::AccountId, Self::Reward, LaneId = Self::LaneId>;
type StakeAndSlash: StakeAndSlash<Self::AccountId, BlockNumberFor<Self>, Self::Reward>;
type WeightInfo: WeightInfoExt;
type LaneId: LaneIdType + Send + Sync;
}
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 RuntimeEvent: From<Event<Self, I>> + IsType<<Self as Config>::RuntimeEvent>
type RuntimeEvent: From<Event<Self, I>> + IsType<<Self as Config>::RuntimeEvent>
The overarching event type.
sourcetype Reward: AtLeast32BitUnsigned + Copy + Member + Parameter + MaxEncodedLen
type Reward: AtLeast32BitUnsigned + Copy + Member + Parameter + MaxEncodedLen
Type of relayer reward.
sourcetype PaymentProcedure: PaymentProcedure<Self::AccountId, Self::Reward, LaneId = Self::LaneId>
type PaymentProcedure: PaymentProcedure<Self::AccountId, Self::Reward, LaneId = Self::LaneId>
Pay rewards scheme.
sourcetype StakeAndSlash: StakeAndSlash<Self::AccountId, BlockNumberFor<Self>, Self::Reward>
type StakeAndSlash: StakeAndSlash<Self::AccountId, BlockNumberFor<Self>, Self::Reward>
Stake and slash scheme.
sourcetype WeightInfo: WeightInfoExt
type WeightInfo: WeightInfoExt
Pallet call weights.
Object Safety§
This trait is not object safe.