Newer
Older
"github.com/eris-ltd/eris-db/genesis"
"github.com/spf13/cobra"
)
// TODO refactor these vars into a struct?
var (
AccountsPathFlag string
ValidatorsPathFlag string
)
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",
genesisFile, err := genesis.GenerateKnown(args[0], AccountsPathFlag, ValidatorsPathFlag)
if err != nil {
panic(err)
}
fmt.Println(genesisFile) // may want to save somewhere instead
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")
}