Get desktop application:
View/edit binary Protocol Buffers messages
ABCIMessageLog defines a structure containing an indexed tx ABCI message log.
Used in:
Events contains a slice of Event objects that were emitted during some execution.
Attribute defines an attribute wrapper where the key and value are strings instead of raw bytes.
Used in:
GasInfo defines tx execution gas context.
Used in:
GasWanted is the maximum units of work we allow this tx to perform.
GasUsed is the amount of gas actually consumed.
MsgData defines the data returned in a Result object during message execution.
Used in:
Result is the union of ResponseFormat and ResponseCheckTx.
Used in:
Data is any data returned from message or handler execution. It MUST be length prefixed in order to separate data from multiple message executions. Deprecated. This field is still populated, but prefer msg_response instead because it also contains the Msg response typeURL.
Log contains the log information from message or handler execution.
Events contains a slice of Event objects that were emitted during message or handler execution.
msg_responses contains the Msg handler responses type packed in Anys. Since: cosmos-sdk 0.46
SearchTxsResult defines a structure for querying txs pageable
Count of all txs
Count of txs in current page
Index of current page, start from 1
Count of total pages
Max count txs per page
List of txs in current page
SimulationResponse defines the response generated when a transaction is successfully simulated.
StringEvent defines en Event object wrapper where all the attributes contain key/value pairs that are strings instead of raw bytes.
Used in:
TxMsgData defines a list of MsgData. A transaction will have a MsgData object for each message.
data field is deprecated and not populated.
msg_responses contains the Msg handler responses packed into Anys. Since: cosmos-sdk 0.46
TxResponse defines a structure containing relevant tx data and metadata. The tags are stringified and the log is JSON decoded.
Used in:
The block height
The transaction hash.
Namespace for the Code
Response code.
Result bytes, if any.
The output of the application's logger (raw string). May be non-deterministic.
The output of the application's logger (typed). May be non-deterministic.
Additional information. May be non-deterministic.
Amount of gas requested for transaction.
Amount of gas consumed by transaction.
The request transaction bytes.
Time of the previous block. For heights > 1, it's the weighted median of the timestamps of the valid votes in the block.LastCommit. For height == 1, it's genesis time.
Events defines all the events emitted by processing a transaction. Note, these events include those emitted by processing all the messages and those emitted from the ante handler. Whereas Logs contains the events, with additional metadata, emitted only by processing the messages. Since: cosmos-sdk 0.42.11, 0.44.5, 0.45