Versions in this module Expand all Collapse all v0 v0.47.0 Feb 1, 2022 Changes in this version + func VerifySignature(pubKey cryptotypes.PubKey, signerData SignerData, ...) error + type SigVerifiableTx interface + GetPubKeys func() ([]cryptotypes.PubKey, error) + GetSignaturesV2 func() ([]signing.SignatureV2, error) + GetSigners func() []types.AccAddress + type SignModeHandler interface + DefaultMode func() signing.SignMode + GetSignBytes func(mode signing.SignMode, data SignerData, tx sdk.Tx) ([]byte, error) + Modes func() []signing.SignMode + type SignModeHandlerMap struct + func NewSignModeHandlerMap(defaultMode signing.SignMode, handlers []SignModeHandler) SignModeHandlerMap + func (h SignModeHandlerMap) DefaultMode() signing.SignMode + func (h SignModeHandlerMap) GetSignBytes(mode signing.SignMode, data SignerData, tx sdk.Tx) ([]byte, error) + func (h SignModeHandlerMap) Modes() []signing.SignMode + type SignerData struct + AccountNumber uint64 + Address string + ChainID string + PubKey cryptotypes.PubKey + Sequence uint64 + type Tx interface