pub trait Config: Config {
    type WeightInfo: WeightInfo;
    type PalletId: Get<PalletId>;
    type RingCurrency: Currency<AccountId<Self>>;
    type KtonCurrency: Currency<AccountId<Self>>;
}
Expand description

Configuration trait of this pallet.

Implement this type for a runtime in order to customize this pallet.

Required Associated Types

Implementors