interface ConsInstance {
    data: any;
    data_decoded: Cons<any, any>;
    guid: EventGuid;
    sequence_number: string;
    type: string;
    type_arguments: [string, string];
}

Hierarchy

  • TypedEventInstance<Cons<any, any>>
    • ConsInstance

Properties

data: any

The JSON representation of the event

data_decoded: Cons<any, any>

decoded data using ABI, undefined if there is decoding error, usually because the ABI/data mismatch

guid: EventGuid
sequence_number: string
type: string
type_arguments: [string, string]