ce8a94a98e
* Changes necessary for enforced custom account encoding/decoding and keyring keybase changes * updates cosmos dependency and fixes inconsistency in gas usage for simulated/real txs * Update PR changes * Remove unused password prompt when using OS keyring * Update from changes to sdk * Update to merged PR commit :the_horns: * updated code to handle keyring backend options * update documentation and replace cosmos-sdk with fork (temporarily) * update cosmos dependency from fork * update documentation
75 lines
1.9 KiB
Go
75 lines
1.9 KiB
Go
package main
|
|
|
|
import (
|
|
"bufio"
|
|
"io"
|
|
|
|
"github.com/cosmos/cosmos-sdk/client/flags"
|
|
clientkeys "github.com/cosmos/cosmos-sdk/client/keys"
|
|
"github.com/cosmos/cosmos-sdk/crypto/keys"
|
|
|
|
emintCrypto "github.com/cosmos/ethermint/crypto"
|
|
tmcrypto "github.com/tendermint/tendermint/crypto"
|
|
|
|
"github.com/spf13/cobra"
|
|
"github.com/spf13/viper"
|
|
)
|
|
|
|
const (
|
|
flagDryRun = "dry-run"
|
|
)
|
|
|
|
// keyCommands registers a sub-tree of commands to interact with
|
|
// local private key storage.
|
|
func keyCommands() *cobra.Command {
|
|
cmd := &cobra.Command{
|
|
Use: "keys",
|
|
Short: "Add or view local private keys",
|
|
Long: `Keys allows you to manage your local keystore for tendermint.
|
|
|
|
These keys may be in any format supported by go-crypto and can be
|
|
used by light-clients, full nodes, or any other application that
|
|
needs to sign with a private key.`,
|
|
}
|
|
addCmd := clientkeys.AddKeyCommand()
|
|
addCmd.RunE = runAddCmd
|
|
cmd.AddCommand(
|
|
clientkeys.MnemonicKeyCommand(),
|
|
addCmd,
|
|
clientkeys.ExportKeyCommand(),
|
|
clientkeys.ImportKeyCommand(),
|
|
clientkeys.ListKeysCmd(),
|
|
clientkeys.ShowKeysCmd(),
|
|
flags.LineBreak,
|
|
clientkeys.DeleteKeyCommand(),
|
|
clientkeys.UpdateKeyCommand(),
|
|
clientkeys.ParseKeyStringCommand(),
|
|
clientkeys.MigrateCommand(),
|
|
flags.LineBreak,
|
|
exportEthKeyCommand(),
|
|
)
|
|
return cmd
|
|
}
|
|
|
|
func getKeybase(cmd *cobra.Command, dryrun bool, buf io.Reader) (keys.Keybase, error) {
|
|
if dryrun {
|
|
return keys.NewInMemory(keys.WithKeygenFunc(ethermintKeygenFunc)), nil
|
|
}
|
|
|
|
return clientkeys.NewKeyringFromHomeFlag(buf, keys.WithKeygenFunc(ethermintKeygenFunc))
|
|
}
|
|
|
|
func runAddCmd(cmd *cobra.Command, args []string) error {
|
|
inBuf := bufio.NewReader(cmd.InOrStdin())
|
|
kb, err := getKeybase(cmd, viper.GetBool(flagDryRun), inBuf)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
return clientkeys.RunAddCmd(cmd, args, kb, inBuf)
|
|
}
|
|
|
|
func ethermintKeygenFunc(bz [32]byte) tmcrypto.PrivKey {
|
|
return emintCrypto.PrivKeySecp256k1(bz[:])
|
|
}
|