cosmos-sdk/cmd/commands/init.go

142 lines
3.2 KiB
Go
Raw Normal View History

package commands
import (
"io/ioutil"
2017-03-29 22:30:55 -07:00
"os"
"path"
"github.com/spf13/cobra"
2017-04-25 22:08:31 -07:00
cmn "github.com/tendermint/tmlibs/common"
)
//commands
var (
InitCmd = &cobra.Command{
Use: "init",
Short: "Initialize a basecoin blockchain",
2017-04-15 09:07:27 -07:00
RunE: initCmd,
}
)
// returns 1 iff it set a file, otherwise 0 (so we can add them)
2017-04-15 09:07:27 -07:00
func setupFile(path, data string, perm os.FileMode) (int, error) {
_, err := os.Stat(path)
2017-04-17 23:50:23 -07:00
if !os.IsNotExist(err) { //note, os.IsExist(err) != !os.IsNotExist(err)
2017-04-15 09:07:27 -07:00
return 0, nil
}
err = ioutil.WriteFile(path, []byte(data), perm)
if err != nil {
2017-04-15 09:07:27 -07:00
return 0, err
}
2017-04-15 09:07:27 -07:00
return 1, nil
}
2017-04-15 09:07:27 -07:00
func initCmd(cmd *cobra.Command, args []string) error {
2017-03-14 00:11:49 -07:00
rootDir := BasecoinRoot("")
2017-03-14 00:11:49 -07:00
cmn.EnsureDir(rootDir, 0777)
// initalize basecoin
2017-03-14 00:11:49 -07:00
genesisFile := path.Join(rootDir, "genesis.json")
privValFile := path.Join(rootDir, "priv_validator.json")
key1File := path.Join(rootDir, "key.json")
key2File := path.Join(rootDir, "key2.json")
2017-04-15 09:07:27 -07:00
mod1, err := setupFile(genesisFile, GenesisJSON, 0644)
if err != nil {
return err
}
mod2, err := setupFile(privValFile, PrivValJSON, 0400)
if err != nil {
return err
}
mod3, err := setupFile(key1File, Key1JSON, 0400)
if err != nil {
return err
}
mod4, err := setupFile(key2File, Key2JSON, 0400)
if err != nil {
return err
}
2017-03-29 22:30:55 -07:00
2017-04-15 09:07:27 -07:00
if (mod1 + mod2 + mod3 + mod4) > 0 {
2017-03-29 22:30:55 -07:00
log.Notice("Initialized Basecoin", "genesis", genesisFile, "key", key1File)
} else {
log.Notice("Already initialized", "priv_validator", privValFile)
}
2017-04-15 09:07:27 -07:00
return nil
}
var PrivValJSON = `{
2017-03-14 00:11:49 -07:00
"address": "7A956FADD20D3A5B2375042B2959F8AB172A058F",
"last_height": 0,
"last_round": 0,
"last_signature": null,
"last_signbytes": "",
"last_step": 0,
"priv_key": [
1,
"D07ABE82A8B15559A983B2DB5D4842B2B6E4D6AF58B080005662F424F17D68C17B90EA87E7DC0C7145C8C48C08992BE271C7234134343E8A8E8008E617DE7B30"
],
"pub_key": [
1,
"7B90EA87E7DC0C7145C8C48C08992BE271C7234134343E8A8E8008E617DE7B30"
]
}`
var GenesisJSON = `{
2017-03-14 00:11:49 -07:00
"app_hash": "",
2017-03-14 10:55:46 -07:00
"chain_id": "test_chain_id",
2017-03-14 00:11:49 -07:00
"genesis_time": "0001-01-01T00:00:00.000Z",
"validators": [
{
"amount": 10,
"name": "",
"pub_key": [
1,
"7B90EA87E7DC0C7145C8C48C08992BE271C7234134343E8A8E8008E617DE7B30"
]
}
],
"app_options": {
"accounts": [{
"pub_key": {
"type": "ed25519",
"data": "619D3678599971ED29C7529DDD4DA537B97129893598A17C82E3AC9A8BA95279"
},
"coins": [
{
"denom": "mycoin",
"amount": 9007199254740992
}
]
}]
}
2017-03-14 00:11:49 -07:00
}`
var Key1JSON = `{
"address": "1B1BE55F969F54064628A63B9559E7C21C925165",
2017-03-14 14:28:49 -07:00
"priv_key": {
"type": "ed25519",
"data": "C70D6934B4F55F1B7BC33B56B9CA8A2061384AFC19E91E44B40C4BBA182953D1619D3678599971ED29C7529DDD4DA537B97129893598A17C82E3AC9A8BA95279"
},
"pub_key": {
"type": "ed25519",
"data": "619D3678599971ED29C7529DDD4DA537B97129893598A17C82E3AC9A8BA95279"
}
}`
var Key2JSON = `{
"address": "1DA7C74F9C219229FD54CC9F7386D5A3839F0090",
2017-03-14 14:28:49 -07:00
"priv_key": {
"type": "ed25519",
"data": "34BAE9E65CE8245FAD035A0E3EED9401BDE8785FFB3199ACCF8F5B5DDF7486A8352195DA90CB0B90C24295B90AEBA25A5A71BC61BAB2FE2387241D439698B7B8"
},
"pub_key": {
"type": "ed25519",
"data": "352195DA90CB0B90C24295B90AEBA25A5A71BC61BAB2FE2387241D439698B7B8"
}
}`