cosmos-sdk/client/v2/autocli/keyring/interface.go
mergify[bot] 8334eefaaf
feat(client/v2): signing (backport #17913) (#17972)
Co-authored-by: Julien Robert <julien@rbrt.fr>
2023-10-05 15:41:50 +02:00

24 lines
768 B
Go

package keyring
import (
signingv1beta1 "cosmossdk.io/api/cosmos/tx/signing/v1beta1"
cryptotypes "github.com/cosmos/cosmos-sdk/crypto/types"
)
// Keyring is an interface used for signing transactions.
// It aims to be simplistic and easy to use.
type Keyring interface {
// List returns the names of all keys stored in the keyring.
List() ([]string, error)
// LookupAddressByKeyName returns the address of the key with the given name.
LookupAddressByKeyName(name string) ([]byte, error)
// GetPubKey returns the public key of the key with the given name.
GetPubKey(name string) (cryptotypes.PubKey, error)
// Sign signs the given bytes with the key with the given name.
Sign(name string, msg []byte, signMode signingv1beta1.SignMode) ([]byte, error)
}