pub type Event = Event;

Aliased Type§

enum Event {
    NewUdCreated {
        amount: u64,
        index: u16,
        monetary_mass: u64,
        members_count: u64,
    },
    UdReevalued {
        new_ud_amount: u64,
        monetary_mass: u64,
        members_count: u64,
    },
    UdsAutoPaid {
        count: u16,
        total: u64,
        who: AccountId32,
    },
    UdsClaimed {
        count: u16,
        total: u64,
        who: AccountId32,
    },
}

Variants§

§

NewUdCreated

Fields

§amount: u64
§index: u16
§monetary_mass: u64
§members_count: u64
§

UdReevalued

Fields

§new_ud_amount: u64
§monetary_mass: u64
§members_count: u64
§

UdsAutoPaid

Fields

§count: u16
§total: u64
§who: AccountId32
§

UdsClaimed

Fields

§count: u16
§total: u64
§who: AccountId32