Trait serai_dex_pallet::pallet::Config

source ·
pub trait Config: Config<AccountId = Public> + CoinsConfig + Config<Instance1> {
    type RuntimeEvent: From<Event<Self>> + IsType<<Self as Config>::RuntimeEvent>;
    type LPFee: Get<u32>;
    type MintMinLiquidity: Get<SubstrateAmount>;
    type MaxSwapPathLength: Get<u32>;
    type MedianPriceWindowLength: Get<u16>;
    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 RuntimeEvent: From<Event<Self>> + IsType<<Self as Config>::RuntimeEvent>

Overarching event type.

source

type LPFee: Get<u32>

A % the liquidity providers will take of every swap. Represents 10ths of a percent.

source

type MintMinLiquidity: Get<SubstrateAmount>

The minimum LP token amount that could be minted. Ameliorates rounding errors.

source

type MaxSwapPathLength: Get<u32>

The max number of hops in a swap.

source

type MedianPriceWindowLength: Get<u16>

Last N number of blocks that oracle keeps track of the prices.

source

type WeightInfo: WeightInfo

Weight information for extrinsics in this pallet.

Object Safety§

This trait is not object safe.

Implementors§