Post
Topic
Board Mining (Altcoins)
Re: [OS] nvOC easy-to-use Linux Nvidia Mining v0019-1.4
by
CryptAtomeTrader44
on 26/11/2017, 01:36:15 UTC
I added the nicehash stuff to the wtm autoswitch coins if someone is interested.

1. ADD
NICE_SKUNKHASH;NICE_EQUIHASH;NICE_ETHASH;NICE_NEOSCRYPT;NICE_X11GOST;NICE_CRYPTONIGHT;NICE_LYRA2REV2
to the WTM coins in 1bash.

2. in WTM_AUTO_SWITCH Change
# filter WTM coins by user selection only
for i in reversed(data):
    if i["tag"] not in includedCoins:
        data.remove(i)

to

# filter WTM coins by user selection only
for i in reversed(data):
    if i["tag"] == "NICEHASH":
       i["tag"] = "NICE_" + i["algorithm"].upper()

for i in reversed(data):
    if i["tag"] not in includedCoins:
       data.remove(i)

3. in PAPAMPI_WTM change the TOP_COIN= line to TOP_COIN=$(cat WTM_top_coin | grep : | sed 's/:[0-9]*//')

4. ADD

NICEHASH_BTC_ADDRESS="Your nicehash BTC address here"

and

#NICE_LYRA2REV2
NICE_WORKER="$WORKERNAME"
NICE_ADDRESS=$NICEHASH_BTC_ADDRESS
NICE_LYRA2REV2_POOL="stratum+tcp://lyra2rev2.eu.nicehash.com:3347"
NICE_LYRA2REV2_INTENSITY="21"

#NICE_NEOSCRYPT
NICE_WORKER="$WORKERNAME"
NICE_ADDRESS="$NICEHASH_BTC_ADDRESS"
NICE_NEOSCRYPT_POOL="stratum+tcp://neoscrypt.eu.nicehash.com:3341"
NICE_NEOSCRYPT_INTENSITY="21"

#NICE_CRYPTONIGHT
NICE_WORKER="$WORKERNAME"
NICE_ADDRESS="$NICEHASH_BTC_ADDRESS"
NICE_CRYPTONIGHT_POOL="stratum+tcp://cryptonight.eu.nicehash.com:3355"
NICE_CRYPTONIGHT_INTENSITY="21"

#NICE_X11GOST
NICE_WORKER="$WORKERNAME"
NICE_ADDRESS="$NICEHASH_BTC_ADDRESS"
NICE_X11GOST_POOL="stratum+tcp://x11gost.eu.nicehash.com:3359"
NICE_X11GOST_INTENSITY="21"

#NICE_SKUNKHASH
NICE_WORKER="$WORKERNAME"
NICE_ADDRESS="$NICEHASH_BTC_ADDRESS"
NICE_SKUNKHASH_POOL="stratum+tcp://skunk.eu.nicehash.com:3362"
NICE_SKUNKHASH_INTENSITY="21"

to your coins in 1bash

5. ADD

########################################################## Nicehash ###############################################
########################################################## Nicehash ###############################################
########################################################## Nicehash ###############################################

if [ $COIN == "DUAL_NICEHASH" ]
then

HCD=/home/m1/eth/$CLAYMORE_VERSION/ethdcrminer64

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

screen -dmSL 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

if [ $COIN == "NICE_NEOSCRYPT" ]
then
HCD='/home/m1/SPccminer/ccminer'
ADDR="$NICE_ADDRESS.$NICE_WORKER"

screen -dmSLL miner $HCD -a neoscrypt -o $NICE_NEOSCRYPT_POOL -u $ADDR -p x -i $PXC_INTENSITY

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

BITCOIN="theGROUND"

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

if [ $COIN == "NICE_LYRA2REV2" ]
then
HCD='/home/m1/SPccminer/ccminer'
ADDR="$NICE_ADDRESS.$NICE_WORKER"

screen -dmSLL miner $HCD -a lyra2v2 -o $NICE_LYRA2REV2_POOL -u $ADDR -p x -i $NICE_LYRA2REV2_INTENSITY

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

BITCOIN="theGROUND"

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

if [ $COIN == "NICE_X11GOST" ]
then
HCD='/home/m1/SPccminer/ccminer'
ADDR="$NICE_ADDRESS.$NICE_WORKER"

screen -dmSLL miner $HCD -a sib -o $NICE_X11GOST_POOL -u $ADDR -p x -i $NICE_X11GOST_INTENSITY

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

BITCOIN="theGROUND"

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

if [ $COIN == "NICE_SKUNKHASH" ]
then
HCD='/home/m1/TPccminer/ccminer'
ADDR="$NICE_ADDRESS.$NICE_WORKER"

screen -dmSLL miner $HCD -a skunk -o $NICE_SKUNKHASH_POOL -u $ADDR -p x -i $NICE_SKUNKHASH_INTENSITY

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

BITCOIN="theGROUND"

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

if [ $COIN == "NICE_CRYPTONIGHT" ]
then
HCD='/home/m1/TPccminer/ccminer'
ADDR="$NICE_ADDRESS.$NICE_WORKER"

screen -dmSLL miner $HCD -a cryptonight -o $NICE_CRYPTONIGHT_POOL -u $ADDR -p x -i $NICE_CRYPTONIGHT_INTENSITY

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

BITCOIN="theGROUND"

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

########################################################## Nicehash ###############################################
########################################################## Nicehash ###############################################
########################################################## Nicehash ###############################################

to 3main

Hope this helps

regards

Matze

I tried your adaptations in the scripts as explained, but when I restart 3main, I do not see the occurrences nicehash provided by the site WTM appear in the list displayed by the papampi script.

I noted that WTma changed the "_" to "-" between the word nicehash and the word of each algorithm. So I modified your code as well in the WTM_AUTO_SWITCH file:

Code:
# filter WTM coins by user selection only

for i in reversed (data):
     if i ["tag"] == "NICEHASH":
        i ["tag"] = "NICE-" + i ["algorithm"]. upper ()

for i in reversed (data):
     if i ["tag"] not in includedCoins:
        data.remove (i)

Do you have any idea why I do not see the nicehash lines in the list of corners sorted by the papampi script?

EDIT : I also modified

NICE_SKUNKHASH;NICE_EQUIHASH;NICE_ETHASH;NICE_NEOSCRYPT;NICE_X11GOST;NICE_CRYPTONIGHT;NICE_LYRA2REV2

into

NICE-SKUNKHASH;NICE-EQUIHASH;NICE-ETHASH;NICE-NEOSCRYPT;NICE-X11GOST;NICE-CRYPTONIGHT;NICE-LYRA2REV2

in replacing the uderscores by hyphen/dash in WTM coin selection to the WTM coins in 1bash, i did the same replacements in the 3main associated launching minner's softwares comamnd lines. (what i placed at the end of file).

I don't know why fredeq changed "_" to "-"

EDIT : Evrything looks functionnal except for NICE_X11, algo that is not in the specific OC parameters.

something that is not in the specific OC parameters and so if the WTM_AUTO SWitch switches on this algo (X11), then it keeps the parameters of OC of  previous algo which for me crashes the mining softwarefor X11 algo. I did not check but I think it also depends on the OC settings of the previous algo it was minning before. If the OC is weak, I think there is no problem, but if the OC is higher than normal or adapted for X11, then the software crashes.

So I removed NICE_X11 from my WTM selection. Anyway, I think it's mostly Neoscrypt and Equihash that are interesting at the moment.
I note FTC has made some peaks in recent days and has even exceeded 3500 satochis recently. Which has increased the value of my bittrex account.