pub trait Config: Config {
    type WeightInfo: WeightInfo;

    const INDEXING_PREFIX: &'static [u8];
}
Expand description

Configuration trait of this pallet.

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

Required Associated Types

Required Associated Constants

The offchain-indexing prefix

Implementors