package cosmos.tx.v1beta1

Mouse Melon logoGet desktop application:
View/edit binary Protocol Buffers messages

service Service

service.proto:16

Service defines a gRPC service for interacting with transactions.

message AuthInfo

tx.proto:99

AuthInfo describes the fee and signer modes that are used to sign a transaction.

Used in: Tx

enum BroadcastMode

service.proto:87

BroadcastMode specifies the broadcast mode for the TxService.Broadcast RPC method.

Used in: BroadcastTxRequest

message Fee

tx.proto:165

Fee includes the amount of coins paid in fees and the maximum gas to be used by the transaction. The ratio yields an effective "gasprice", which must be above some miminum to be accepted into the mempool.

Used in: AuthInfo

message ModeInfo

tx.proto:132

ModeInfo describes the signing mode of a single or nested multisig signer.

Used in: ModeInfo.Multi, SignerInfo

message ModeInfo.Multi

tx.proto:152

Multi is the mode info for a multisig public key

Used in: ModeInfo

message ModeInfo.Single

tx.proto:146

Single is the mode info for a single signer. It is structured as a message to allow for additional fields such as locale for SIGN_MODE_TEXTUAL in the future

Used in: ModeInfo

enum OrderBy

service.proto:58

OrderBy defines the sorting order

Used in: GetTxsEventRequest

message SignDoc

tx.proto:48

SignDoc is the type used for generating sign bytes for SIGN_MODE_DIRECT.

message SignerInfo

tx.proto:115

SignerInfo describes the public key and signing mode of a single top-level signer.

Used in: AuthInfo

message Tx

tx.proto:13

Tx is the standard type used for broadcasting transactions.

Used in: GetBlockWithTxsResponse, GetTxResponse, GetTxsEventResponse, SimulateRequest

message TxBody

tx.proto:67

TxBody is the body of a transaction that all signers sign over.

Used in: Tx

message TxRaw

tx.proto:32

TxRaw is a variant of Tx that pins the signer's exact binary representation of body and auth_info. This is used for signing, broadcasting and verification. The binary `serialize(tx: TxRaw)` is stored in Tendermint and the hash `sha256(serialize(tx: TxRaw))` becomes the "txhash", commonly used as the transaction ID.