| 
									
										
										
										
											2014-12-04 10:28:02 +01:00
										 |  |  | package core | 
					
						
							| 
									
										
										
										
											2014-02-14 23:56:09 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | import ( | 
					
						
							| 
									
										
										
										
											2015-02-20 18:05:46 +01:00
										 |  |  | 	"encoding/json" | 
					
						
							|  |  |  | 	"fmt" | 
					
						
							|  |  |  | 	"os" | 
					
						
							| 
									
										
										
										
											2014-08-21 14:47:58 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-03-17 11:19:23 +01:00
										 |  |  | 	"github.com/ethereum/go-ethereum/common" | 
					
						
							| 
									
										
										
										
											2015-03-23 16:59:09 +01:00
										 |  |  | 	"github.com/ethereum/go-ethereum/core/state" | 
					
						
							| 
									
										
										
										
											2015-03-31 15:30:55 +02:00
										 |  |  | 	"github.com/ethereum/go-ethereum/core/types" | 
					
						
							| 
									
										
										
										
											2015-04-02 05:17:15 +02:00
										 |  |  | 	"github.com/ethereum/go-ethereum/params" | 
					
						
							| 
									
										
										
										
											2014-02-14 23:56:09 +01:00
										 |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* | 
					
						
							|  |  |  |  * This is the special genesis block. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | var ZeroHash256 = make([]byte, 32) | 
					
						
							|  |  |  | var ZeroHash160 = make([]byte, 20) | 
					
						
							| 
									
										
										
										
											2014-10-29 10:34:40 +01:00
										 |  |  | var ZeroHash512 = make([]byte, 64) | 
					
						
							| 
									
										
										
										
											2015-03-05 09:14:58 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-03-16 11:27:38 +01:00
										 |  |  | func GenesisBlock(db common.Database) *types.Block { | 
					
						
							| 
									
										
										
										
											2015-04-05 18:57:03 +02:00
										 |  |  | 	genesis := types.NewBlock(common.Hash{}, common.Address{}, common.Hash{}, params.GenesisDifficulty, 42, nil) | 
					
						
							| 
									
										
										
										
											2015-03-16 11:27:38 +01:00
										 |  |  | 	genesis.Header().Number = common.Big0 | 
					
						
							| 
									
										
										
										
											2015-04-02 05:17:15 +02:00
										 |  |  | 	genesis.Header().GasLimit = params.GenesisGasLimit | 
					
						
							| 
									
										
										
										
											2015-03-16 11:27:38 +01:00
										 |  |  | 	genesis.Header().GasUsed = common.Big0 | 
					
						
							| 
									
										
										
										
											2014-12-23 13:48:44 +01:00
										 |  |  | 	genesis.Header().Time = 0 | 
					
						
							| 
									
										
										
										
											2015-03-03 21:09:29 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-03-16 11:27:38 +01:00
										 |  |  | 	genesis.Td = common.Big0 | 
					
						
							| 
									
										
										
										
											2014-12-23 13:48:44 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	genesis.SetUncles([]*types.Header{}) | 
					
						
							|  |  |  | 	genesis.SetTransactions(types.Transactions{}) | 
					
						
							|  |  |  | 	genesis.SetReceipts(types.Receipts{}) | 
					
						
							| 
									
										
										
										
											2014-02-14 23:56:09 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-03-31 15:30:55 +02:00
										 |  |  | 	var accounts map[string]struct { | 
					
						
							|  |  |  | 		Balance string | 
					
						
							|  |  |  | 		Code    string | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2015-04-14 16:01:25 +02:00
										 |  |  | 	err := json.Unmarshal(GenesisData, &accounts) | 
					
						
							| 
									
										
										
										
											2015-02-20 18:05:46 +01:00
										 |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		fmt.Println("enable to decode genesis json data:", err) | 
					
						
							|  |  |  | 		os.Exit(1) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-07 13:17:48 +01:00
										 |  |  | 	statedb := state.New(genesis.Root(), db) | 
					
						
							| 
									
										
										
										
											2015-02-20 18:05:46 +01:00
										 |  |  | 	for addr, account := range accounts { | 
					
						
							| 
									
										
										
										
											2015-03-16 11:27:38 +01:00
										 |  |  | 		codedAddr := common.Hex2Bytes(addr) | 
					
						
							| 
									
										
										
										
											2015-04-01 10:53:32 +02:00
										 |  |  | 		accountState := statedb.CreateAccount(common.BytesToAddress(codedAddr)) | 
					
						
							| 
									
										
										
										
											2015-03-16 11:27:38 +01:00
										 |  |  | 		accountState.SetBalance(common.Big(account.Balance)) | 
					
						
							| 
									
										
										
										
											2015-03-31 15:30:55 +02:00
										 |  |  | 		accountState.SetCode(common.FromHex(account.Code)) | 
					
						
							| 
									
										
										
										
											2015-02-20 18:05:46 +01:00
										 |  |  | 		statedb.UpdateStateObject(accountState) | 
					
						
							| 
									
										
										
										
											2014-12-23 13:48:44 +01:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	statedb.Sync() | 
					
						
							|  |  |  | 	genesis.Header().Root = statedb.Root() | 
					
						
							| 
									
										
										
										
											2015-04-20 12:01:20 +02:00
										 |  |  | 	genesis.Td = params.GenesisDifficulty | 
					
						
							| 
									
										
										
										
											2014-12-23 13:48:44 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	return genesis | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2015-02-20 18:05:46 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-04-14 16:01:25 +02:00
										 |  |  | var GenesisData = []byte(`{ | 
					
						
							| 
									
										
										
										
											2015-03-03 21:48:05 +01:00
										 |  |  | 	"0000000000000000000000000000000000000001": {"balance": "1"}, | 
					
						
							|  |  |  | 	"0000000000000000000000000000000000000002": {"balance": "1"}, | 
					
						
							|  |  |  | 	"0000000000000000000000000000000000000003": {"balance": "1"}, | 
					
						
							|  |  |  | 	"0000000000000000000000000000000000000004": {"balance": "1"}, | 
					
						
							| 
									
										
										
										
											2015-02-20 18:05:46 +01:00
										 |  |  | 	"dbdbdb2cbd23b783741e8d7fcf51e459b497e4a6": {"balance": "1606938044258990275541962092341162602522202993782792835301376"}, | 
					
						
							|  |  |  | 	"e4157b34ea9615cfbde6b4fda419828124b70c78": {"balance": "1606938044258990275541962092341162602522202993782792835301376"}, | 
					
						
							|  |  |  | 	"b9c015918bdaba24b4ff057a92a3873d6eb201be": {"balance": "1606938044258990275541962092341162602522202993782792835301376"}, | 
					
						
							|  |  |  | 	"6c386a4b26f73c802f34673f7248bb118f97424a": {"balance": "1606938044258990275541962092341162602522202993782792835301376"}, | 
					
						
							|  |  |  | 	"cd2a3d9f938e13cd947ec05abc7fe734df8dd826": {"balance": "1606938044258990275541962092341162602522202993782792835301376"}, | 
					
						
							|  |  |  | 	"2ef47100e0787b915105fd5e3f4ff6752079d5cb": {"balance": "1606938044258990275541962092341162602522202993782792835301376"}, | 
					
						
							|  |  |  | 	"e6716f9544a56c530d868e4bfbacb172315bdead": {"balance": "1606938044258990275541962092341162602522202993782792835301376"}, | 
					
						
							| 
									
										
										
										
											2015-03-03 21:48:05 +01:00
										 |  |  | 	"1a26338f0d905e295fccb71fa9ea849ffa12aaf4": {"balance": "1606938044258990275541962092341162602522202993782792835301376"} | 
					
						
							| 
									
										
										
										
											2015-02-20 18:05:46 +01:00
										 |  |  | }`) |