nice


SUBMITTED BY: juninho472

DATE: July 1, 2022, 1:35 a.m.

UPDATED: July 1, 2022, 1:36 a.m.

FORMAT: Text only

SIZE: 1.5 kB

HITS: 260

  1. - Open a nicehash account
  2. - Enable 2FA
  3. - Get a bitcoin deposit address
  4. - List of nicehash algorithms is here: https://www.nicehash.com/algorithm
  5. - Profitability calculator that lets you determine which crypto to mine based on hardware / currency / electricity cost is here: https://www.nicehash.com/profitability-calculator
  6. - Use this to determine the most profitable algorithm for the upcoming day
  7. - Select stratum based on algorithm and location from here: https://www.nicehash.com/farm-mining
  8. - Set up a configuration file as follows:
  9. https://github.com/nicehash/ccminer-nanashi/blob/master/README.txt
  10. https://github.com/nicehash/ccminer-nanashi/blob/master/ccminer.conf
  11. ```
  12. {
  13. "_comment1" : "Possible keys are the long options (ccminer --help)",
  14. "_comment2" : "todo: support /* comments */",
  15. "algo" : "blake",
  16. "intensity": 19,
  17. "api-bind": "127.0.0.1:4068",
  18. "statsavg": 20,
  19. "quiet" : false,
  20. "debug" : false,
  21. "protocol" : false,
  22. "cpu-priority" : 3,
  23. "url" : "stratum+tcp://stratum.eu.miners-pool.eu:8421",
  24. "user" : "ShGCAFrspnLDo414EzUyJm4k5Qr2Kkrmvh",
  25. "pass" : "x"
  26. }
  27. ```
  28. ```
  29. sudo apt-get install build-essential libcurl4-openssl-dev git automake
  30. git clone https://github.com/tpruvot/ccminer.git
  31. cd ccminer
  32. ./autogen.sh
  33. ./configure CFLAGS="-O3 -Wall -march=native"
  34. make
  35. ./ccminer -o stratum+tcp://blake2s.usa.nicehash.com:3361 --userpass=<your-bitcoin-address>:x -a blake2s -i 25
  36. ```

comments powered by Disqus