Result is the union of ResponseFormat and ResponseCheckTx.

interface ResultAmino {
    data?: string;
    events?: EventAmino[];
    log?: string;
}

Properties

Properties

data?: string

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

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.