aboutsummaryrefslogtreecommitdiffstats
path: root/ethchain/genesis.go
blob: 060d347e4231311a58ec5ce81bb754ec1eee67ab (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
package ethchain

import (
    "github.com/ethereum/eth-go/ethutil"
    "math/big"
)

/*
 * This is the special genesis block.
 */

var ZeroHash256 = make([]byte, 32)
var ZeroHash160 = make([]byte, 20)
var EmptyShaList = ethutil.Sha3Bin(ethutil.Encode([]interface{}{}))

var GenisisHeader = []interface{}{
    // Previous hash (none)
    //"",
    ZeroHash256,
    // Sha of uncles
    ethutil.Sha3Bin(ethutil.Encode([]interface{}{})),
    // Coinbase
    ZeroHash160,
    // Root state
    "",
    // Sha of transactions
    //EmptyShaList,
    ethutil.Sha3Bin(ethutil.Encode([]interface{}{})),
    // Difficulty
    ethutil.BigPow(2, 22),
    // Time
    int64(0),
    // Extra
    "",
    // Nonce
    ethutil.Sha3Bin(big.NewInt(42).Bytes()),
}

var Genesis = []interface{}{GenisisHeader, []interface{}{}, []interface{}{}}