interface ACLInstance {
    data: any;
    data_decoded: ACL;
    guid: EventGuid;
    sequence_number: string;
    type: string;
    type_arguments: [];
}

Hierarchy

  • TypedEventInstance<ACL>
    • ACLInstance

Properties

data: any

The JSON representation of the event

data_decoded: ACL

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: []