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