github.com/ethereumproject/go-ethereum@v5.5.2+incompatible/core/data_gastable.go (about)

     1  // Copyright 2017 The go-ethereum Authors
     2  // This file is part of the go-ethereum library.
     3  //
     4  // The go-ethereum library is free software: you can redistribute it and/or modify
     5  // it under the terms of the GNU Lesser General Public License as published by
     6  // the Free Software Foundation, either version 3 of the License, or
     7  // (at your option) any later version.
     8  //
     9  // The go-ethereum library is distributed in the hope that it will be useful,
    10  // but WITHOUT ANY WARRANTY; without even the implied warranty of
    11  // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
    12  // GNU Lesser General Public License for more details.
    13  //
    14  // 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/>.
    16  
    17  // This file contains configuration literals.
    18  
    19  package core
    20  
    21  import (
    22  	"math/big"
    23  
    24  	"github.com/ethereumproject/go-ethereum/core/vm"
    25  )
    26  
    27  var DefaultHomeSteadGasTable = &vm.GasTable{
    28  	ExtcodeSize:     big.NewInt(20),
    29  	ExtcodeCopy:     big.NewInt(20),
    30  	Balance:         big.NewInt(20),
    31  	SLoad:           big.NewInt(50),
    32  	Calls:           big.NewInt(40),
    33  	Suicide:         big.NewInt(0),
    34  	ExpByte:         big.NewInt(10),
    35  	CreateBySuicide: nil,
    36  }
    37  
    38  var DefaultGasRepriceGasTable = &vm.GasTable{
    39  	ExtcodeSize:     big.NewInt(700),
    40  	ExtcodeCopy:     big.NewInt(700),
    41  	Balance:         big.NewInt(400),
    42  	SLoad:           big.NewInt(200),
    43  	Calls:           big.NewInt(700),
    44  	Suicide:         big.NewInt(5000),
    45  	ExpByte:         big.NewInt(10),
    46  	CreateBySuicide: big.NewInt(25000),
    47  }
    48  
    49  var DefaultDiehardGasTable = &vm.GasTable{
    50  	ExtcodeSize:     big.NewInt(700),
    51  	ExtcodeCopy:     big.NewInt(700),
    52  	Balance:         big.NewInt(400),
    53  	SLoad:           big.NewInt(200),
    54  	Calls:           big.NewInt(700),
    55  	Suicide:         big.NewInt(5000),
    56  	ExpByte:         big.NewInt(50),
    57  	CreateBySuicide: big.NewInt(25000),
    58  }