Comment
Author: Admin | 2025-04-28
Put arguments you would like to always be added in arguments.txt. See that file for more information.CoinsBy default it will do calculations for all known coins. This is slow and probably not what you want. Instead, you probably want to monitor a few specific coins or algorithms that you have wallets or pools setup for. Coin filtering rules allow you to do this:# Everything is case insensitive. 'bitcoin', 'bItCoIn', 'Bitcoin', and 'bITCOIN' all have the same effect.# Warnings will be printed if something you enter is not recognized.# The easiest filtering rule is to simply list the names of the coins you want to monitor.# To monitor only Bitcoin, Litecoin, and Ethereum you could do:node index bitcoin litecoin ethereum# A coin's ticker or abbreviation has the same effect as the name:node index btc ltc eth# You can also use the names of algorithms to monitor all coins of that algorithm.# To monitor all Scrypt coins you could do:node index scrypt# Coin names/tickers and algorithm names can be mixed together.# To monitor all Scrypt coins and Bitcoin you could do:node index scrypt bitcoin# You can prepend a single `-` to any filter (coin name, coin ticker, algorithm name, etc.) to disable that coin (or algorithm) instead of enabling it.# To run on all coins **except** Bitcoin you could do:node index -bitcoin# To monitor all coins **except** Scrypt coins you could do:node index -scypt# You can mix exclusion rules with regular rules. To monitor all Scrypt coins **except** Litecoin you could do:node index scrypt -litecoin# To monitor all Scrypt coins except Litecoin and also monitor Bitcoin you could do:node index scrypt -litecoin bitcoin# You can easily determine what your filters include using `--list-coins`$ node index bitcoin --list-coinsEnabled coins: * Bitcoin (BTC) (SHA-256)Supported coinsAs coins are added to What To Mine they should automatically be supported if they use an algorithm on NiceHash. As coins become inactive they will become unsupported. All supported coins (as of 2020-1-20)$ node index --list-coins...Enabled coins: * Bitcoin (BTC) (SHA-256) * Litecoin (LTC) (Scrypt) * Vertcoin (VTC) (Lyra2REv3) * Dogecoin (DOGE) (Scrypt) * Feathercoin (FTC) (NeoScrypt) * Einsteinium
Add Comment