ABCIMessageLog defines a structure containing an indexed tx ABCI message log.

interface ABCIMessageLog {
    events: StringEvent[];
    log: string;
    msgIndex: number;
}

Properties

Properties

events: StringEvent[]

Events contains a slice of Event objects that were emitted during some execution.

log: string
msgIndex: number