github.com/aaa256/atlantis@v0.0.0-20210707112435-42ee889287a2/cmd/ethkey/main.go (about) 1 // Copyright 2017 The go-athereum Authors 2 // This file is part of go-athereum. 3 // 4 // go-athereum 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-athereum 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-athereum. If not, see <http://www.gnu.org/licenses/>. 16 17 package main 18 19 import ( 20 "fmt" 21 "os" 22 23 "github.com/athereum/go-athereum/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 Atlantis key manager") 38 app.Commands = []cli.Command{ 39 commandGenerate, 40 commandInspect, 41 commandChangePassphrase, 42 commandSignMessage, 43 commandVerifyMessage, 44 } 45 } 46 47 // Commonly used command line flags. 48 var ( 49 passphraseFlag = cli.StringFlag{ 50 Name: "passwordfile", 51 Usage: "the file that contains the passphrase for the keyfile", 52 } 53 jsonFlag = cli.BoolFlag{ 54 Name: "json", 55 Usage: "output JSON instead of human-readable format", 56 } 57 ) 58 59 func main() { 60 if err := app.Run(os.Args); err != nil { 61 fmt.Fprintln(os.Stderr, err) 62 os.Exit(1) 63 } 64 }