Type Alias IndicesEvent

Source
pub type IndicesEvent = IndicesEvent;

Aliased Type§

enum IndicesEvent {
    IndexAssigned {
        who: AccountId,
        index: u32,
    },
    IndexFreed {
        index: u32,
    },
    IndexFrozen {
        index: u32,
        who: AccountId,
    },
}

Variants§

§

IndexAssigned

A account index was assigned.

Fields

§index: u32
§

IndexFreed

A account index has been freed up (unassigned).

Fields

§index: u32
§

IndexFrozen

A account index has been frozen to its current account ID.

Fields

§index: u32