Interface ValueChangedEvent

An interface for value-changed event (blockchain event handler).

interface ValueChangedEvent {
    auth: ValueChangedEventAuth;
    event_source: ValueChangedEventSource;
    filter_path: string;
    matched_path: string;
    params: any;
    transaction: Transaction;
    values: {
        after: any;
        before: any;
    };
}

Properties

filter_path: string
matched_path: string
params: any
transaction: Transaction
values: {
    after: any;
    before: any;
}

Type declaration

  • after: any
  • before: any