genesis.go 6.4 KB
Newer Older
F
Felix Lange 已提交
1
// Copyright 2014 The go-ethereum Authors
2
// This file is part of the go-ethereum library.
F
Felix Lange 已提交
3
//
4
// The go-ethereum library is free software: you can redistribute it and/or modify
F
Felix Lange 已提交
5 6 7 8
// it under the terms of the GNU Lesser General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
9
// The go-ethereum library is distributed in the hope that it will be useful,
F
Felix Lange 已提交
10
// but WITHOUT ANY WARRANTY; without even the implied warranty of
11
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
F
Felix Lange 已提交
12 13 14
// GNU Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License
15
// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
F
Felix Lange 已提交
16

O
obscuren 已提交
17
package core
O
obscuren 已提交
18 19

import (
O
obscuren 已提交
20 21
	"encoding/json"
	"fmt"
22 23
	"io"
	"io/ioutil"
24
	"math/big"
25
	"strings"
O
obscuren 已提交
26

O
obscuren 已提交
27
	"github.com/ethereum/go-ethereum/common"
O
obscuren 已提交
28
	"github.com/ethereum/go-ethereum/core/state"
O
obscuren 已提交
29
	"github.com/ethereum/go-ethereum/core/types"
30
	"github.com/ethereum/go-ethereum/ethdb"
31 32
	"github.com/ethereum/go-ethereum/logger"
	"github.com/ethereum/go-ethereum/logger/glog"
33
	"github.com/ethereum/go-ethereum/params"
O
obscuren 已提交
34 35
)

36
// WriteGenesisBlock writes the genesis block to the database as block number 0
37
func WriteGenesisBlock(chainDb ethdb.Database, reader io.Reader) (*types.Block, error) {
38
	contents, err := ioutil.ReadAll(reader)
O
obscuren 已提交
39
	if err != nil {
40
		return nil, err
O
obscuren 已提交
41
	}
42 43 44 45 46 47 48 49 50 51 52 53 54 55 56

	var genesis struct {
		Nonce      string
		Timestamp  string
		ParentHash string
		ExtraData  string
		GasLimit   string
		Difficulty string
		Mixhash    string
		Coinbase   string
		Alloc      map[string]struct {
			Code    string
			Storage map[string]string
			Balance string
		}
O
obscuren 已提交
57 58
	}

59 60 61 62
	if err := json.Unmarshal(contents, &genesis); err != nil {
		return nil, err
	}

63
	statedb := state.New(common.Hash{}, chainDb)
64 65 66 67 68 69 70 71
	for addr, account := range genesis.Alloc {
		address := common.HexToAddress(addr)
		statedb.AddBalance(address, common.String2Big(account.Balance))
		statedb.SetCode(address, common.Hex2Bytes(account.Code))
		for key, value := range account.Storage {
			statedb.SetState(address, common.HexToHash(key), common.HexToHash(value))
		}
	}
72
	root, stateBatch := statedb.CommitBatch()
73 74

	difficulty := common.String2Big(genesis.Difficulty)
F
Felix Lange 已提交
75
	block := types.NewBlock(&types.Header{
76
		Nonce:      types.EncodeNonce(common.String2Big(genesis.Nonce).Uint64()),
77
		Time:       common.String2Big(genesis.Timestamp),
78
		ParentHash: common.HexToHash(genesis.ParentHash),
79
		Extra:      common.FromHex(genesis.ExtraData),
80 81 82 83
		GasLimit:   common.String2Big(genesis.GasLimit),
		Difficulty: difficulty,
		MixDigest:  common.HexToHash(genesis.Mixhash),
		Coinbase:   common.HexToAddress(genesis.Coinbase),
84
		Root:       root,
F
Felix Lange 已提交
85
	}, nil, nil, nil)
O
obscuren 已提交
86

87
	if block := GetBlock(chainDb, block.Hash()); block != nil {
88
		glog.V(logger.Info).Infoln("Genesis block already in chain. Writing canonical number")
89
		err := WriteCanonicalHash(chainDb, block.Hash(), block.NumberU64())
90 91 92 93
		if err != nil {
			return nil, err
		}
		return block, nil
94
	}
95

96 97 98
	if err := stateBatch.Write(); err != nil {
		return nil, fmt.Errorf("cannot write state: %v", err)
	}
99
	if err := WriteTd(chainDb, block.Hash(), difficulty); err != nil {
100 101
		return nil, err
	}
102 103 104
	if err := WriteBlock(chainDb, block); err != nil {
		return nil, err
	}
105 106 107
	if err := PutBlockReceipts(chainDb, block, nil); err != nil {
		return nil, err
	}
108 109 110 111
	if err := WriteCanonicalHash(chainDb, block.Hash(), block.NumberU64()); err != nil {
		return nil, err
	}
	if err := WriteHeadBlockHash(chainDb, block.Hash()); err != nil {
112 113 114 115
		return nil, err
	}
	return block, nil
}
116 117 118

// GenesisBlockForTesting creates a block in which addr has the given wei balance.
// The state trie of the block is written to db.
119
func GenesisBlockForTesting(db ethdb.Database, addr common.Address, balance *big.Int) *types.Block {
120 121 122
	statedb := state.New(common.Hash{}, db)
	obj := statedb.GetOrNewStateObject(addr)
	obj.SetBalance(balance)
123 124 125 126
	root, err := statedb.Commit()
	if err != nil {
		panic(fmt.Sprintf("cannot write state: %v", err))
	}
127 128 129
	block := types.NewBlock(&types.Header{
		Difficulty: params.GenesisDifficulty,
		GasLimit:   params.GenesisGasLimit,
130
		Root:       root,
131 132 133
	}, nil, nil, nil)
	return block
}
134

135 136 137 138 139 140 141 142 143 144 145 146 147 148 149
type GenesisAccount struct {
	Address common.Address
	Balance *big.Int
}

func WriteGenesisBlockForTesting(db ethdb.Database, accounts ...GenesisAccount) *types.Block {
	accountJson := "{"
	for i, account := range accounts {
		if i != 0 {
			accountJson += ","
		}
		accountJson += fmt.Sprintf(`"0x%x":{"balance":"0x%x"}`, account.Address, account.Balance.Bytes())
	}
	accountJson += "}"

150 151 152 153
	testGenesis := fmt.Sprintf(`{
	"nonce":"0x%x",
	"gasLimit":"0x%x",
	"difficulty":"0x%x",
154 155
	"alloc": %s
}`, types.EncodeNonce(0), params.GenesisGasLimit.Bytes(), params.GenesisDifficulty.Bytes(), accountJson)
156
	block, _ := WriteGenesisBlock(db, strings.NewReader(testGenesis))
157 158 159
	return block
}

160
func WriteTestNetGenesisBlock(chainDb ethdb.Database, nonce uint64) (*types.Block, error) {
161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179
	testGenesis := fmt.Sprintf(`{
	"nonce":"0x%x",
	"gasLimit":"0x%x",
	"difficulty":"0x%x",
	"alloc": {
		"0000000000000000000000000000000000000001": {"balance": "1"},
		"0000000000000000000000000000000000000002": {"balance": "1"},
		"0000000000000000000000000000000000000003": {"balance": "1"},
		"0000000000000000000000000000000000000004": {"balance": "1"},
		"dbdbdb2cbd23b783741e8d7fcf51e459b497e4a6": {"balance": "1606938044258990275541962092341162602522202993782792835301376"},
		"e4157b34ea9615cfbde6b4fda419828124b70c78": {"balance": "1606938044258990275541962092341162602522202993782792835301376"},
		"b9c015918bdaba24b4ff057a92a3873d6eb201be": {"balance": "1606938044258990275541962092341162602522202993782792835301376"},
		"6c386a4b26f73c802f34673f7248bb118f97424a": {"balance": "1606938044258990275541962092341162602522202993782792835301376"},
		"cd2a3d9f938e13cd947ec05abc7fe734df8dd826": {"balance": "1606938044258990275541962092341162602522202993782792835301376"},
		"2ef47100e0787b915105fd5e3f4ff6752079d5cb": {"balance": "1606938044258990275541962092341162602522202993782792835301376"},
		"e6716f9544a56c530d868e4bfbacb172315bdead": {"balance": "1606938044258990275541962092341162602522202993782792835301376"},
		"1a26338f0d905e295fccb71fa9ea849ffa12aaf4": {"balance": "1606938044258990275541962092341162602522202993782792835301376"}
	}
}`, types.EncodeNonce(nonce), params.GenesisGasLimit.Bytes(), params.GenesisDifficulty.Bytes())
180
	return WriteGenesisBlock(chainDb, strings.NewReader(testGenesis))
181
}