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

from message cosmos.tx.v1beta1.AuthInfo

Hierarchy

Constructors

Properties

Fee is the fee and gas limit for the transaction. The first signer is the primary signer and the one which pays the fee. The fee can be calculated based on the cost of evaluating the body and doing signature verification of the signers. This can be estimated via simulation.

from field: cosmos.tx.v1beta1.Fee fee = 2;

signerInfos: SignerInfo[] = []

signer_infos defines the signing modes for the required signers. The number and order of elements must match the required signers from TxBody's messages. The first element is the primary signer and the one which pays the fee.

from field: repeated cosmos.tx.v1beta1.SignerInfo signer_infos = 1;

tip?: Tip

Tip is the optional tip used for transactions fees paid in another denom.

This field is ignored if the chain didn't enable tips, i.e. didn't add the TipDecorator in its posthandler.

Since: cosmos-sdk 0.46

from field: cosmos.tx.v1beta1.Tip tip = 3;

fields: FieldList = ...
runtime: ProtoRuntime = proto3
typeName: "cosmos.tx.v1beta1.AuthInfo" = "cosmos.tx.v1beta1.AuthInfo"

Methods