Result is the union of ResponseFormat and ResponseCheckTx.

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

Properties

data: Uint8Array
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.

msgResponses: Any[]

msg_responses contains the Msg handler responses type packed in Anys.

Since: cosmos-sdk 0.46