github.com/vantum/vantum@v0.0.0-20180815184342-fe37d5f7a990/cmd/ethkey/main.go (about)

     1  // Copyright 2017 The go-ethereum Authors
     2  // This file is part of go-ethereum.
     3  //
     4  // go-ethereum is free software: you can redistribute it and/or modify
     5  // it under the terms of the GNU General Public License as published by
     6  // the Free Software Foundation, either version 3 of the License, or
     7  // (at your option) any later version.
     8  //
     9  // go-ethereum is distributed in the hope that it will be useful,
    10  // but WITHOUT ANY WARRANTY; without even the implied warranty of
    11  // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
    12  // GNU General Public License for more details.
    13  //
    14  // You should have received a copy of the GNU General Public License
    15  // along with go-ethereum. If not, see <http://www.gnu.org/licenses/>.
    16  
    17  package main
    18  
    19  import (
    20  	"fmt"
    21  	"os"
    22  
    23  	"github.com/vantum/vantum/cmd/utils"
    24  	"gopkg.in/urfave/cli.v1"
    25  )
    26  
    27  const (
    28  	defaultKeyfileName = "keyfile.json"
    29  )
    30  
    31  // Git SHA1 commit hash of the release (set via linker flags)
    32  var gitCommit = ""
    33  
    34  var app *cli.App
    35  
    36  func init() {
    37  	app = utils.NewApp(gitCommit, "an Ethereum key manager")
    38  	app.Commands = []cli.Command{
    39  		commandGenerate,
    40  		commandInspect,
    41  		commandSignMessage,
    42  		commandVerifyMessage,
    43  	}
    44  }
    45  
    46  // Commonly used command line flags.
    47  var (
    48  	passphraseFlag = cli.StringFlag{
    49  		Name:  "passwordfile",
    50  		Usage: "the file that contains the passphrase for the keyfile",
    51  	}
    52  	jsonFlag = cli.BoolFlag{
    53  		Name:  "json",
    54  		Usage: "output JSON instead of human-readable format",
    55  	}
    56  	messageFlag = cli.StringFlag{
    57  		Name:  "message",
    58  		Usage: "the file that contains the message to sign/verify",
    59  	}
    60  )
    61  
    62  func main() {
    63  	if err := app.Run(os.Args); err != nil {
    64  		fmt.Fprintln(os.Stderr, err)
    65  		os.Exit(1)
    66  	}
    67  }