Skip to content
Snippets Groups Projects
genesis.go 1.14 KiB
Newer Older
zramsay's avatar
zramsay committed
package commands

import (
zramsay's avatar
zramsay committed
	"github.com/eris-ltd/eris-db/genesis"

	"github.com/spf13/cobra"
)

// TODO refactor these vars into a struct?
var (
	AccountsPathFlag   string
	ValidatorsPathFlag string
)

zramsay's avatar
zramsay committed
var GenesisGenCmd = &cobra.Command{
zramsay's avatar
zramsay committed
	Use:   "make-genesis",
	Short: "eris-client make-genesis creates a genesis.json with known inputs",
	Long:  "eris-client make-genesis creates a genesis.json with known inputs",
zramsay's avatar
zramsay committed

	Run: func(cmd *cobra.Command, args []string) {
zramsay's avatar
zramsay committed
		// TODO refactor to not panic
		genesisFile, err := genesis.GenerateKnown(args[0], AccountsPathFlag, ValidatorsPathFlag)
		if err != nil {
			panic(err)
		}
		fmt.Println(genesisFile) // may want to save somewhere instead
zramsay's avatar
zramsay committed
	},
}

func buildGenesisGenCommand() {
	addGenesisPersistentFlags()
func addGenesisPersistentFlags() {
	GenesisGenCmd.Flags().StringVarP(&AccountsPathFlag, "accounts", "", "", "path to accounts.csv with the following params: (pubkey, starting balance, name, permissions, setbit")
	GenesisGenCmd.Flags().StringVarP(&ValidatorsPathFlag, "validators", "", "", "path to validators.csv with the following params: (pubkey, starting balance, name, permissions, setbit")
}