github.com/ethxdao/go-ethereum@v0.0.0-20221218102228-5ae34a9cc189/cmd/puppeth/puppeth.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 // puppeth is a command to assemble and maintain private networks. 18 package main 19 20 import ( 21 "math/rand" 22 "os" 23 "strings" 24 "time" 25 26 "github.com/ethxdao/go-ethereum/log" 27 ) 28 29 // main is just a boring entry point to set up the CLI app. 30 func main() { 31 app := cli.NewApp() 32 app.Name = "puppeth" 33 app.Usage = "assemble and maintain private Ethereum networks" 34 app.Flags = []cli.Flag{ 35 &cli.StringFlag{ 36 Name: "network", 37 Usage: "name of the network to administer (no spaces or hyphens, please)", 38 }, 39 &cli.IntFlag{ 40 Name: "loglevel", 41 Value: 3, 42 Usage: "log level to emit to the screen", 43 }, 44 } 45 app.Before = func(c *cli.Context) error { 46 // Set up the logger to print everything and the random generator 47 log.Root().SetHandler(log.LvlFilterHandler(log.Lvl(c.Int("loglevel")), log.StreamHandler(os.Stdout, log.TerminalFormat(true)))) 48 rand.Seed(time.Now().UnixNano()) 49 50 return nil 51 } 52 app.Action = runWizard 53 app.Run(os.Args) 54 } 55 56 // runWizard start the wizard and relinquish control to it. 57 func runWizard(c *cli.Context) error { 58 network := c.String("network") 59 if strings.Contains(network, " ") || strings.Contains(network, "-") || strings.ToLower(network) != network { 60 log.Crit("No spaces, hyphens or capital letters allowed in network name") 61 } 62 makeWizard(c.String("network")).run() 63 return nil 64 }