Result is the union of ResponseFormat and ResponseCheckTx.

interface Result {
    data: Uint8Array;
    events: Event[];
    log: string;
}

Properties

Properties

data: Uint8Array

Data is any data returned from message or handler execution. It MUST be length prefixed in order to separate data from multiple message executions.

events: Event[]

Events contains a slice of Event objects that were emitted during message or handler execution.

log: string

Log contains the log information from message or handler execution.