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

Hierarchy

  • TypedEventInstance<SimpleMap<any, any>>
    • SimpleMapInstance

Properties

data: any

The JSON representation of the event

data_decoded: SimpleMap<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]