Trait pallet_indices::pallet::Config[][src]

pub trait Config: Config {
    type AccountIndex: Parameter + Member + MaybeSerializeDeserialize + Codec + Default + AtLeast32Bit + Copy;
    type Currency: ReservableCurrency<Self::AccountId>;
    type Deposit: Get<<<Self as Config>::Currency as Currency<<Self as Config>::AccountId>>::Balance>;
    type Event: From<Event<Self>> + IsType<<Self as Config>::Event>;
    type WeightInfo: WeightInfo;
}
Expand description

The module’s config trait.

Associated Types

Type used for storing an account’s index; implies the maximum number of accounts the system can hold.

The currency trait.

The deposit needed for reserving an index.

The overarching event type.

Weight information for extrinsics in this pallet.

Implementors