Versions in this module Expand all Collapse all v1 v1.137.2 Nov 5, 2024 v1.137.1 Oct 24, 2024 Changes in this version + func BroadcastTxRequest(clientCtx client.Context) http.HandlerFunc + func ConvertAndEncodeStdTx(txConfig client.TxConfig, stdTx StdTx) ([]byte, error) + func CopyTx(tx signing.Tx, builder client.TxBuilder, ignoreSignatureError bool) error + func RegisterRoutes(cliCtx client.Context, r *mux.Router, storeName string) + func StdSignatureToSignatureV2(cdc *codec.LegacyAmino, sig StdSignature) (signing.SignatureV2, error) + type BroadcastReq struct + Mode string + Tx StdTx + func (m BroadcastReq) UnpackInterfaces(unpacker codectypes.AnyUnpacker) error + type StdFee struct + Amount sdk.Coins + Gas uint64 + func (fee StdFee) Bytes() []byte + func (fee StdFee) GasPrices() sdk.DecCoins + func (fee StdFee) GetAmount() sdk.Coins + func (fee StdFee) GetGas() uint64 + type StdSignature struct + Sequence uint64 + Signature []byte + func (ss StdSignature) GetPubKey() cryptotypes.PubKey + func (ss StdSignature) GetSignature() []byte + func (ss StdSignature) MarshalYAML() (interface{}, error) + func (ss StdSignature) UnpackInterfaces(unpacker codectypes.AnyUnpacker) error + type StdTx struct + Fee StdFee + Memo string + Msgs []sdk.Msg + Signatures []StdSignature + TimeoutHeight uint64 + func (tx *StdTx) AsAny() *codectypes.Any + func (tx StdTx) FeeGranter() sdk.AccAddress + func (tx StdTx) FeePayer() sdk.AccAddress + func (tx StdTx) GetFee() sdk.Coins + func (tx StdTx) GetGas() uint64 + func (tx StdTx) GetMemo() string + func (tx StdTx) GetMsgs() []sdk.Msg + func (tx StdTx) GetPubKeys() ([]cryptotypes.PubKey, error) + func (tx StdTx) GetSignatures() [][]byte + func (tx StdTx) GetSignaturesV2() ([]signing.SignatureV2, error) + func (tx StdTx) GetSigners() []sdk.AccAddress + func (tx StdTx) GetTimeoutHeight() uint64 + func (tx StdTx) UnpackInterfaces(unpacker codectypes.AnyUnpacker) error + func (tx StdTx) ValidateBasic() error