package keys import ( "fmt" "io" yaml "gopkg.in/yaml.v2" "github.com/cosmos/cosmos-sdk/client/keys" cryptokeyring "github.com/cosmos/cosmos-sdk/crypto/keyring" ) // available output formats. const ( OutputFormatText = "text" OutputFormatJSON = "json" // defaultKeyDBName is the client's subdirectory where keys are stored. defaultKeyDBName = "keys" ) type bechKeyOutFn func(keyInfo *cryptokeyring.Record) (cryptokeyring.KeyOutput, error) func printKeyInfo(w io.Writer, keyInfo *cryptokeyring.Record, bechKeyOut bechKeyOutFn, output string) { ko, err := bechKeyOut(keyInfo) if err != nil { panic(err) } switch output { case OutputFormatText: printTextInfos(w, []cryptokeyring.KeyOutput{ko}) case OutputFormatJSON: out, err := keys.KeysCdc.MarshalJSON(ko) if err != nil { panic(err) } fmt.Fprintln(w, string(out)) } } func printTextInfos(w io.Writer, kos []cryptokeyring.KeyOutput) { out, err := yaml.Marshal(&kos) if err != nil { panic(err) } fmt.Fprintln(w, string(out)) } func validateMultisigThreshold(k, nKeys int) error { if k <= 0 { return fmt.Errorf("threshold must be a positive integer") } if nKeys < k { return fmt.Errorf( "threshold k of n multisignature: %d < %d", nKeys, k) } return nil }