package cosmos.tx.v1beta1

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

message AuthInfo

tx.proto:97

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

Used in: Tx

message Fee

tx.proto:163

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:130

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

Used in: ModeInfo.Multi, SignerInfo

message ModeInfo.Multi

tx.proto:150

Multi is the mode info for a multisig public key

Used in: ModeInfo

message ModeInfo.Single

tx.proto:144

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

message SignDoc

tx.proto:48

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

message SignerInfo

tx.proto:113

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: base.simulate.v1beta1.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.