Settings Team Red Miner
Teamredminer Command Parameters:
Algorithm (
-a
or--algo
):- Specifies the mining algorithm. Teamredminer supports several algorithms like Ethash, KAWPOW, ProgPOW, etc.
- Example:
teamredminer -a ethash -o stratum+tcp://eth.pool.com:3333 -u wallet_address.worker_name
Pool URL (
-o
or--url
):- Sets the pool URL and port.
- Example:
teamredminer -a kawpow -o stratum+tcp://rvn.pool.com:6060 -u wallet_address.worker_name
Wallet Address (
-u
or--user
):- Specifies the wallet or login for the mining pool.
- Example:
teamredminer -a ethash -o stratum+tcp://eth.pool.com:3333 -u 0xYourEthWallet.worker_name
Intensity (
--intensity
):- Sets the mining intensity for each GPU. The values range from 0 to 100, where 100 is the maximum load.
- Example:
teamredminer -a ethash --intensity 95 -o stratum+tcp://eth.pool.com:3333 -u wallet_address.worker_name
Developer Fee Configuration (
--eth_config
):- This parameter adjusts the developer fee configuration.
- Example:
teamredminer -a ethash --eth_config B512 -o stratum+tcp://eth.pool.com:3333 -u wallet_address.worker_name
Automatic Restart on Errors (
--watchdog
):- Enables automatic restart of the miner in case of crashes or performance drops.
- Example:
teamredminer -a ethash --watchdog -o stratum+tcp://eth.pool.com:3333 -u wallet_address.worker_name
Memory Timings Optimization for AMD GPUs (
--mem_tweak
):- Optimizes the memory timings for AMD cards. Values range from 0 to 6, where 6 is the maximum tweak.
- Example:
teamredminer -a ethash --mem_tweak 3 -o stratum+tcp://eth.pool.com:3333 -u wallet_address.worker_name
GPU Selection for Mining (
--devices
):- Allows you to select which GPUs to use for mining. GPUs are numbered starting from 0.
- Example:
teamredminer -a ethash --devices 0,1,2 -o stratum+tcp://eth.pool.com:3333 -u wallet_address.worker_name
Example of a Full Command:
teamredminer -a ethash --devices 0,1 --intensity 95 --mem_tweak 3 -o stratum+tcp://eth.pool.com:3333 -u 0xYourEthWallet.worker_name --watchdog
These are the main parameters commonly used when configuring Teamredminer. You can also add examples for specific algorithms or pools if it’s relevant for your audience.
Specific Settings for Different Coins
Ethereum Classic (ETC) (Algorithm: Ethash)
- Algorithm:
ethash
- Example Configuration:
teamredminer -a ethash -o stratum+tcp://etc.pool.com:3333 -u 0xYourEtcWallet.worker_name --eth_config B512 --mem_tweak 3 --intensity 95
- Details:
- Use the
--mem_tweak
parameter to improve the memory timings of your GPU. - It’s important to optimize memory performance for maximum efficiency.
- Use the
2. Ravencoin (RVN) (Algorithm: KAWPOW)
- Algorithm:
kawpow
- Example Configuration:
teamredminer -a kawpow -o stratum+tcp://rvn.pool.com:6060 -u RWVZYourRVNWallet.worker_name --intensity 95 --devices 0,1 --watchdog
- Details:
- It’s recommended to set a high GPU intensity for KAWPOW.
- If you’re using multiple GPUs, the
--devices
parameter helps you specify which cards to use.
3. Firo (FIRO) (Algorithm: ProgPOW)
- Algorithm:
progpow_firo
- Example Configuration:
teamredminer -a progpow_firo -o stratum+tcp://firo.pool.com:7777 -u YourFiroWallet.worker_name --intensity 90 --mem_tweak 2 --devices 0,2,3
- Details:
- For mining Firo, it’s recommended to experiment with memory and intensity settings, as this algorithm is demanding on GPUs.
4. Vertcoin (VTC) (Algorithm: Verthash)
- Algorithm:
verthash
- Example Configuration:
teamredminer -a verthash -o stratum+tcp://vtc.pool.com:8888 -u YourVtcWallet.worker_name --devices 0,1 --intensity 100 --verthash_file /path/to/verthash.dat
- Details:
- The
--verthash_file
parameter specifies the path to the Verthash cache file. Ensure the path is correct. - You can set the intensity to the maximum (100) for the best performance.
- The
5. Conflux (CFX) (Algorithm: Octopus)
- Algorithm:
octopus
- Example Configuration:
teamredminer -a octopus -o stratum+tcp://cfx.pool.com:9999 -u YourCfxWallet.worker_name --intensity 95 --mem_tweak 4
- Details:
- For the Octopus algorithm, memory performance is key, so using the
--mem_tweak
parameter can boost your hashrate.
- For the Octopus algorithm, memory performance is key, so using the
6. Ergo (ERG) (Algorithm: Autolykos v2)
- Algorithm:
autolykos2
- Example Configuration:
teamredminer -a autolykos2 -o stratum+tcp://erg.pool.com:9999 -u YourErgWallet.worker_name --intensity 95 --mem_tweak 3
- Details:
- The Autolykos v2 algorithm requires good memory optimization. Using
--mem_tweak
can improve performance. - Ensure your GPU is compatible with this algorithm, as not all models support it.
- The Autolykos v2 algorithm requires good memory optimization. Using
General Recommendations:
- For each coin, it’s worth checking the latest updates for Teamredminer, as new versions often include optimizations for different algorithms.
- Experiment with the
--intensity
and--mem_tweak
parameters, as settings can vary significantly depending on the specific hardware (GPU) and pool.