pub type Event = Event;

Aliased Type§

enum Event {
    AccountLinked {
        who: AccountId32,
        identity: u32,
    },
    AccountUnlinked(AccountId32),
}

Variants§

§

AccountLinked

Fields

§who: AccountId32
§identity: u32
§

AccountUnlinked(AccountId32)