gitlab.com/yannislg/go-pulse@v0.0.0-20210722055913-a3e24e95638d/eth/config.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  package eth
    18  
    19  import (
    20  	"math/big"
    21  	"os"
    22  	"os/user"
    23  	"path/filepath"
    24  	"runtime"
    25  	"time"
    26  
    27  	"github.com/ethereum/go-ethereum/common"
    28  	"github.com/ethereum/go-ethereum/consensus/ethash"
    29  	"github.com/ethereum/go-ethereum/core"
    30  	"github.com/ethereum/go-ethereum/eth/downloader"
    31  	"github.com/ethereum/go-ethereum/eth/gasprice"
    32  	"github.com/ethereum/go-ethereum/miner"
    33  	"github.com/ethereum/go-ethereum/params"
    34  )
    35  
    36  // DefaultConfig contains default settings for use on the Ethereum main net.
    37  var DefaultConfig = Config{
    38  	SyncMode: downloader.FastSync,
    39  	Ethash: ethash.Config{
    40  		CacheDir:         "ethash",
    41  		CachesInMem:      2,
    42  		CachesOnDisk:     3,
    43  		CachesLockMmap:   false,
    44  		DatasetsInMem:    1,
    45  		DatasetsOnDisk:   2,
    46  		DatasetsLockMmap: false,
    47  	},
    48  	NetworkId:          1,
    49  	LightPeers:         100,
    50  	UltraLightFraction: 75,
    51  	DatabaseCache:      512,
    52  	TrieCleanCache:     256,
    53  	TrieDirtyCache:     256,
    54  	TrieTimeout:        60 * time.Minute,
    55  	SnapshotCache:      256,
    56  	Miner: miner.Config{
    57  		GasFloor: 8000000,
    58  		GasCeil:  8000000,
    59  		GasPrice: big.NewInt(params.GWei),
    60  		Recommit: 3 * time.Second,
    61  	},
    62  	TxPool: core.DefaultTxPoolConfig,
    63  	GPO: gasprice.Config{
    64  		Blocks:          20,
    65  		Percentile:      60,
    66  		OracleThreshold: 1000,
    67  	},
    68  }
    69  
    70  func init() {
    71  	home := os.Getenv("HOME")
    72  	if home == "" {
    73  		if user, err := user.Current(); err == nil {
    74  			home = user.HomeDir
    75  		}
    76  	}
    77  	if runtime.GOOS == "darwin" {
    78  		DefaultConfig.Ethash.DatasetDir = filepath.Join(home, "Library", "Ethash")
    79  	} else if runtime.GOOS == "windows" {
    80  		localappdata := os.Getenv("LOCALAPPDATA")
    81  		if localappdata != "" {
    82  			DefaultConfig.Ethash.DatasetDir = filepath.Join(localappdata, "Ethash")
    83  		} else {
    84  			DefaultConfig.Ethash.DatasetDir = filepath.Join(home, "AppData", "Local", "Ethash")
    85  		}
    86  	} else {
    87  		DefaultConfig.Ethash.DatasetDir = filepath.Join(home, ".ethash")
    88  	}
    89  }
    90  
    91  //go:generate gencodec -type Config -formats toml -out gen_config.go
    92  
    93  type Config struct {
    94  	// The genesis block, which is inserted if the database is empty.
    95  	// If nil, the Ethereum main net block is used.
    96  	Genesis *core.Genesis `toml:",omitempty"`
    97  
    98  	// Protocol options
    99  	NetworkId uint64 // Network ID to use for selecting peers to connect to
   100  	SyncMode  downloader.SyncMode
   101  
   102  	// This can be set to list of enrtree:// URLs which will be queried for
   103  	// for nodes to connect to.
   104  	DiscoveryURLs []string
   105  
   106  	NoPruning       bool // Whether to disable pruning and flush everything to disk
   107  	NoPrefetch      bool // Whether to disable prefetching and only load state on demand
   108  	DirectBroadcast bool
   109  	RangeLimit      bool
   110  
   111  	// Whitelist of required block number -> hash values to accept
   112  	Whitelist map[uint64]common.Hash `toml:"-"`
   113  
   114  	// Light client options
   115  	LightServ    int `toml:",omitempty"` // Maximum percentage of time allowed for serving LES requests
   116  	LightIngress int `toml:",omitempty"` // Incoming bandwidth limit for light servers
   117  	LightEgress  int `toml:",omitempty"` // Outgoing bandwidth limit for light servers
   118  	LightPeers   int `toml:",omitempty"` // Maximum number of LES client peers
   119  
   120  	// Ultra Light client options
   121  	UltraLightServers      []string `toml:",omitempty"` // List of trusted ultra light servers
   122  	UltraLightFraction     int      `toml:",omitempty"` // Percentage of trusted servers to accept an announcement
   123  	UltraLightOnlyAnnounce bool     `toml:",omitempty"` // Whether to only announce headers, or also serve them
   124  
   125  	// Database options
   126  	SkipBcVersionCheck bool `toml:"-"`
   127  	DatabaseHandles    int  `toml:"-"`
   128  	DatabaseCache      int
   129  	DatabaseFreezer    string
   130  
   131  	TrieCleanCache int
   132  	TrieDirtyCache int
   133  	TrieTimeout    time.Duration
   134  	SnapshotCache  int
   135  
   136  	// Mining options
   137  	Miner miner.Config
   138  
   139  	// Ethash options
   140  	Ethash ethash.Config `toml:",omitempty"`
   141  
   142  	// Transaction pool options
   143  	TxPool core.TxPoolConfig
   144  
   145  	// Gas Price Oracle options
   146  	GPO gasprice.Config
   147  
   148  	// Enables tracking of SHA3 preimages in the VM
   149  	EnablePreimageRecording bool
   150  
   151  	// Miscellaneous options
   152  	DocRoot string `toml:"-"`
   153  
   154  	// Type of the EWASM interpreter ("" for default)
   155  	EWASMInterpreter string
   156  
   157  	// Type of the EVM interpreter ("" for default)
   158  	EVMInterpreter string
   159  
   160  	// RPCGasCap is the global gas cap for eth-call variants.
   161  	RPCGasCap *big.Int `toml:",omitempty"`
   162  
   163  	// Checkpoint is a hardcoded checkpoint which can be nil.
   164  	Checkpoint *params.TrustedCheckpoint `toml:",omitempty"`
   165  
   166  	// CheckpointOracle is the configuration for checkpoint oracle.
   167  	CheckpointOracle *params.CheckpointOracleConfig `toml:",omitempty"`
   168  
   169  	// Istanbul block override (TODO: remove after the fork)
   170  	OverrideIstanbul *big.Int `toml:",omitempty"`
   171  
   172  	// MuirGlacier block override (TODO: remove after the fork)
   173  	OverrideMuirGlacier *big.Int `toml:",omitempty"`
   174  }