puppeth.go 2.0 KB

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