Post
Topic
Board Mining (Altcoins)
Re: [OS] nvOC easy-to-use Linux Nvidia Mining v0019
by
Razvan17
on 21/09/2017, 22:17:09 UTC
Is it possible to mine DUAL ETH+DCR with nvOC_V0019 on NiceHash. I mean to receive BTC instead of eth/dcr.

If yes, can someone help me how to set up oneBash?

Thx!

Yes you can, that is coming in the upcoming update.

It goes like this:

Coin Name :
Code:
COIN="DUAL_NICEHASH"

Coin Details:

Please change the region according to your location; added it as usa but it can be eu or something else
You can also edit the dcri according to your requirements

Code:
DUAL_WORKER="$WORKERNAME"
DUAL_BTC_ADDRESS=$BTC_ADDRESS
DUAL_ETHASH_POOL="stratum+tcp://daggerhashimoto.usa.nicehash.com:3353"
DUAL_DCR_POOL="stratum+tcp://decred.usa.nicehash.com:3354"
DUAL_EXTENSION_ARGUMENTS="-dcoin dcr -dcri 40 -esm 3 -allpools 1 -allcoins 1 -estale 0 -dbg -1"

Add this in 3main at appropriate place

Code:
if [ $COIN == "DUAL_NICEHASH" ]
then

if [ $CLAYMORE_VERSION == "10_0" ]
then
HCD='/home/m1/eth/10_0/ethdcrminer64'
fi

if [ $CLAYMORE_VERSION == "9_8" ]
then
HCD='/home/m1/eth/9_8/ethdcrminer64'
fi

if [ $CLAYMORE_VERSION == "9_7" ]
then
HCD='/home/m1/eth/9_7/ethdcrminer64'
fi

if [ $CLAYMORE_VERSION == "9_5" ]
then
HCD='/home/m1/eth/9_5/ethdcrminer64'
fi

if [ $CLAYMORE_VERSION == "9_4" ]
then
HCD='/home/m1/eth/9_4/ethdcrminer64'
fi

if [ $CLAYMORE_VERSION == "8_0" ]
then
HCD='/home/m1/eth/8_0/ethdcrminer64'
fi

ETHASH_ADDR="$DUAL_BTC_ADDRESS.$DUAL_WORKER"
DCR_ADDR="$DUAL_BTC_ADDRESS.$DUAL_WORKER"

screen -dmS miner $HCD -epool $DUAL_ETHASH_POOL -ewal $ETHASH_ADDR -epsw x -allcoins 1 -allpools 1 -dpool $DUAL_DCR_POOL -dwal $DCR_ADDR -dpsw x $DUAL_EXTENSION_ARGUMENTS

if [ $LOCALorREMOTE == "LOCAL" ]
then
screen -r miner
fi

BITCOIN="theGROUND"

while [ $BITCOIN == "theGROUND" ]
do
sleep 60
done
fi

Let me know if it works or not and ask me if you have any questions Smiley


Thx for the answer!

Meanwhile i sorted it out in a different way. I modified the 1Bash file like this:
I selected NICE_ETHASH and there bellow on NICE_ETHASH in added some Claymore arguments like this:

# NICE_ETHASH autoconverts to BTC: ensure you update BTC_ADDRESS if you use NICE_ETHASH
NICE_ETHASH_WORKER="$WORKERNAME"
NICE_ETHASH_POOL="stratum+tcp://daggerhashimoto.usa.nicehash.com:3353"
GENOIL_NICE_ETHASH_POOL="daggerhashimoto.usa.nicehash.com:3353"
NICE_ETHASH_EXTENSION_ARGUMENTS="-epool stratum+tcp://daggerhashimoto.usa.nicehash.com:3353 -ewal myNICEBTC adress.myWorker -epsw x -esm 3 -allpools 1 -estale 0 -dpool decred.eu.nicehash.com:3354 -dwal myNICEBTC adress.myWorker -dcoin dcr -dcri 95,40"   # add any additional claymore arguments desired here


It works well and until the next release i can go like this.