Post
Topic
Board Mining (Altcoins)
Re: excavator by NiceHash - multi-algorithm NVIDIA GPU miner [1.4.4a]
by
EvgeniyKorepov
on 15/05/2018, 07:26:03 UTC
SKIP
Or you can try my application. It will help you much more than this JSON :
https://github.com/EvgeniyKorepov/MinerPro-for-NiceHash

@EvgeniyKorepov This json file is incorrect. You forgot the algorithm.add method, the first parameter in worker.add has to be the name of the algorithm, also M=0 is not the fastest option for equihash. If you're using M=0 parameter you should definitely use two workers per device to get better results. FYI, we added worker.print.speeds method, you might find it useful Wink

@dimytr Here is the correct example (without overclocking):
Quote
[
   {"time":0,"commands":[
      {"id":1,"method":"subscribe","params":["nhmp.eu.nicehash.com:3200","btc_address.worker_name"]}
   ]},
   {"time":2,"commands":[
        {"id":1,"method":"algorithm.add","params":["equihash"]}
    ]},
   {"time":3,"commands":[
             {"id":1,"method":"worker.add","params":["equihash","0"]},
             {"id":1,"method":"worker.add","params":["equihash","1"]},
             {"id":1,"method":"worker.add","params":["equihash","2"]},
             {"id":1,"method":"worker.add","params":["equihash","3"]},
             {"id":1,"method":"worker.add","params":["equihash","4"]},
             {"id":1,"method":"worker.add","params":["equihash","5"]}
   ]},
   {"time":10,"loop":10,"commands":[
      {"id":1,"method":"algorithm.print.speeds","params":[]}
   ]}
]


Fixed, thanks! I'm just confused in the versions of API and copy-paste from my configs. :-)