aboutsummaryrefslogblamecommitdiffstats
path: root/ethchain/genesis.go
blob: 8a1219acb68b2016f594e9e3214cafe04e94d080 (plain) (tree)
1
2
3
4
5
6
7


                

                  
                                              
                                            







                                     
                                                                     
 
                                  
                               

                        
                                                           



                     
                 
           
                     
                                
                           







                                  
               
                     
                
            
                
                                                  

 
                                                                            
package ethchain

import (
    "math/big"

    "github.com/ethereum/eth-go/ethcrypto"
    "github.com/ethereum/eth-go/ethutil"
)

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

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

var GenesisHeader = []interface{}{
    // Previous hash (none)
    ZeroHash256,
    // Sha of uncles
    ethcrypto.Sha3Bin(ethutil.Encode([]interface{}{})),
    // Coinbase
    ZeroHash160,
    // Root state
    "",
    // tx sha
    "",
    // Difficulty
    //ethutil.BigPow(2, 22),
    big.NewInt(131072),
    // Number
    ethutil.Big0,
    // Block minimum gas price
    ethutil.Big0,
    // Block upper gas bound
    big.NewInt(1000000),
    // Block gas used
    ethutil.Big0,
    // Time
    ethutil.Big0,
    // Extra
    nil,
    // Nonce
    ethcrypto.Sha3Bin(big.NewInt(42).Bytes()),
}

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