cmd.Flags().String(server.FlagMinGasPrices,"","Minimum gas prices to accept for transactions; Any fee in a tx must meet this minimum (e.g. 0.01photon;0.0001stake)")//nolint:lll
cmd.Flags().Uint64(server.FlagPruningInterval,0,"Height interval at which pruned heights are removed from disk (ignored if pruning is not 'custom')")//nolint:lll
cmd.Flags().Uint64(srvflags.JSONRPCGasCap,config.DefaultGasCap,"Sets a cap on gas that can be used in eth_call/estimateGas unit is aphoton (0=infinite)")//nolint:lll
cmd.Flags().Float64(srvflags.JSONRPCTxFeeCap,config.DefaultTxFeeCap,"Sets a cap on transaction fee that can be sent via the RPC APIs (1 = default 1 photon)")//nolint:lll
cmd.Flags().Bool(srvflags.JSONRPCAllowUnprotectedTxs,config.DefaultAllowUnprotectedTxs,"Allow for unprotected (non EIP155 signed) transactions to be submitted via the node's RPC when the global parameter is disabled")//nolint:lll
cmd.Flags().Int(srvflags.JSONRPCMaxOpenConnections,config.DefaultMaxOpenConnections,"Sets the maximum number of simultaneous connections for the server listener")//nolint:lll
cmd.Flags().Bool(srvflags.JSONRPCEnableIndexer,false,"Enable the custom tx indexer for json-rpc")
cmd.Flags().String(srvflags.EVMTracer,config.DefaultEVMTracer,"the EVM tracer type to collect execution traces from the EVM transaction execution (json|struct|access_list|markdown)")//nolint:lll
cmd.Flags().Uint64(srvflags.EVMMaxTxGasWanted,config.DefaultMaxTxGasWanted,"the gas wanted for each eth tx returned in ante handler in check tx mode")//nolint:lll