github.com/ava-labs/subnet-evm@v0.6.4/internal/flags/categories.go (about)

     1  // (c) 2023, Ava Labs, Inc.
     2  //
     3  // This file is a derived work, based on the go-ethereum library whose original
     4  // notices appear below.
     5  //
     6  // It is distributed under a license compatible with the licensing terms of the
     7  // original code from which it is derived.
     8  //
     9  // Much love to the original authors for their work.
    10  // **********
    11  // Copyright 2022 The go-ethereum Authors
    12  // This file is part of the go-ethereum library.
    13  //
    14  // The go-ethereum library is free software: you can redistribute it and/or modify
    15  // it under the terms of the GNU Lesser General Public License as published by
    16  // the Free Software Foundation, either version 3 of the License, or
    17  // (at your option) any later version.
    18  //
    19  // The go-ethereum library is distributed in the hope that it will be useful,
    20  // but WITHOUT ANY WARRANTY; without even the implied warranty of
    21  // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
    22  // GNU Lesser General Public License for more details.
    23  //
    24  // You should have received a copy of the GNU Lesser General Public License
    25  // along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
    26  
    27  package flags
    28  
    29  import "github.com/urfave/cli/v2"
    30  
    31  const (
    32  	EthCategory        = "ETHEREUM"
    33  	LightCategory      = "LIGHT CLIENT"
    34  	DevCategory        = "DEVELOPER CHAIN"
    35  	StateCategory      = "STATE HISTORY MANAGEMENT"
    36  	TxPoolCategory     = "TRANSACTION POOL (EVM)"
    37  	BlobPoolCategory   = "TRANSACTION POOL (BLOB)"
    38  	PerfCategory       = "PERFORMANCE TUNING"
    39  	AccountCategory    = "ACCOUNT"
    40  	APICategory        = "API AND CONSOLE"
    41  	NetworkingCategory = "NETWORKING"
    42  	MinerCategory      = "MINER"
    43  	GasPriceCategory   = "GAS PRICE ORACLE"
    44  	VMCategory         = "VIRTUAL MACHINE"
    45  	LoggingCategory    = "LOGGING AND DEBUGGING"
    46  	MetricsCategory    = "METRICS AND STATS"
    47  	MiscCategory       = "MISC"
    48  	DeprecatedCategory = "ALIASED (deprecated)"
    49  )
    50  
    51  func init() {
    52  	cli.HelpFlag.(*cli.BoolFlag).Category = MiscCategory
    53  	cli.VersionFlag.(*cli.BoolFlag).Category = MiscCategory
    54  }