referrerpolicy=no-referrer-when-downgrade

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§

source

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

The overarching event type.

source

type Reward: AtLeast32BitUnsigned + Copy + Member + Parameter + MaxEncodedLen

Type of relayer reward.

source

type PaymentProcedure: PaymentProcedure<Self::AccountId, Self::Reward, LaneId = Self::LaneId>

Pay rewards scheme.

source

type StakeAndSlash: StakeAndSlash<Self::AccountId, BlockNumberFor<Self>, Self::Reward>

Stake and slash scheme.

source

type WeightInfo: WeightInfoExt

Pallet call weights.

source

type LaneId: LaneIdType + Send + Sync

Lane identifier type.

Object Safety§

This trait is not object safe.

Implementors§