Type Alias distance_oracle::runtime::proxy::Event

source ·
pub type Event = Event;

Aliased Type§

enum Event {
    ProxyExecuted {
        result: Result<(), DispatchError>,
    },
    PureCreated {
        pure: AccountId32,
        who: AccountId32,
        proxy_type: ProxyType,
        disambiguation_index: u16,
    },
    Announced {
        real: AccountId32,
        proxy: AccountId32,
        call_hash: H256,
    },
    ProxyAdded {
        delegator: AccountId32,
        delegatee: AccountId32,
        proxy_type: ProxyType,
        delay: u32,
    },
    ProxyRemoved {
        delegator: AccountId32,
        delegatee: AccountId32,
        proxy_type: ProxyType,
        delay: u32,
    },
}

Variants§

§

ProxyExecuted

Fields

§

PureCreated

Fields

§pure: AccountId32
§who: AccountId32
§proxy_type: ProxyType
§disambiguation_index: u16
§

Announced

Fields

§real: AccountId32
§proxy: AccountId32
§call_hash: H256
§

ProxyAdded

Fields

§delegator: AccountId32
§delegatee: AccountId32
§proxy_type: ProxyType
§delay: u32
§

ProxyRemoved

Fields

§delegator: AccountId32
§delegatee: AccountId32
§proxy_type: ProxyType
§delay: u32