Is any way we can dual mine NICE_ETHASH and SIA ?
Probably you can try, I mine DUAL with NICE_ETHASH and NICE_DECRED using claymore.
Haven't tried with SIA + NICE ETHASH
How did you setup you 1bash? can you share it please?
Yeah mate, why not!
COIN="DUAL_NICEHASH"
Define your worker pool and worker details etc;
make sure you add your own BTC address; can use same address for both coins;
DUAL_WORKER="$IP_AS_WORKER"
DUAL_BTC_ADDRESS=$BTC_ADDRESS
DUAL_ETHASH_POOL="stratum+tcp://daggerhashimoto.eu.nicehash.com:3353"
DUAL_DCR_POOL="stratum+tcp://decred.eu.nicehash.com:3354"
DUAL_EXTENTION_ARGUMENTS="-dcoin dcr -dcri 40 -esm 3 -allpools 1 -allcoins 1 -estale 0 -dbg -1"
In the bottom paste it in the right place;
if [ $COIN == "DUAL_NICEHASH" ]
then
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 -allpools 1 -dpool $DUAL_DCR_POOL -dwal $DCR_ADDR -dpsw x $DUAL_EXTENTION_ARGUMENTS
if [ $LOCALorREMOTE == "LOCAL" ]
then
screen -r miner
fi
BITCOIN="theGROUND"
while [ $BITCOIN == "theGROUND" ]
do
sleep 60
done
fi
This should work as is if you just make sure you add your own BTC address in the BTC_ADDRESS variable
Hope it helps, let me know if you still have any questions?
EDIT:
You can tweak it to add SC by changing as following
DUAL_SC_POOL="xxxxxxxx"
DUAL_SC_ADDRESS="xxxxxxxx"
DUAL_EXTENTION_ARGUMENTS="-dcoin sc -dcri 40 -esm 3 -allpools 1 -allcoins 1 -estale 0 -dbg -1"
In the bottom;
ETHASH_ADDR="$DUAL_BTC_ADDRESS.$DUAL_WORKER"
#can use any, depending on the pool you use
#ADDR="$DUAL_SC_ADDRESS/$DUAL_WORKER"
ADDR="$DUAL_SC_ADDRESS.$DUAL_WORKER"
screen -dmS miner $HCD -epool $DUAL_ETHASH_POOL -ewal $ETHASH_ADDR -epsw x -allpools 1 -dpool $DUAL_SC_POOL -dwal $ADDR -dpsw x $DUAL_EXTENTION_ARGUMENTS