Post
Topic
Board Mining (Altcoins)
Re: [OS] nvOC easy-to-use Linux Nvidia Mining vBASIC || Community Edition 2.0
by
papampi
on 28/03/2018, 10:02:01 UTC
Does anyone know how I can dual mine Ethereum with verge(xvg). I am currently running nvoc 19.2

There is a new dual mining introduced for 19-2.1 (Not released yet), you can try it

in 1bash add this after all the other coins :

Code:
###################################################
# Claymore_Dual Mining                            #
# Set COIN="Claymore_Dual"                        #  
###################################################

###You can use variables like this:
#DUAL_ECOIN="ETH"
#DUAL_EPOOL="$ETH_POOL"        
#DUAL_EPORT="$ETH_PORT"            
#DUAL_EWAL="$ETH_ADDRESS"      
#DUAL_EPSW="$MINER_PWD"                      
#DUAL_EWORKER="$ETH_WORKER"  

DUAL_ECOIN="MAIN COIN"                      #Main Coin, Ethereum or any Ethash Coin
DUAL_EPOOL="MAIN COIN POOL ADDREES"         #Main Coin pool address, no need to add stratum+tcp://
DUAL_EPORT="MAIN COIN POOL PORT"            #Main Coin Port Number
DUAL_EWAL="MAIN COIN WALLET ADDRESS"        #Main Coin Wallet address or pool username
DUAL_EPSW="$MINER_PWD"                      #Main Coin worker password on pool
DUAL_EWORKER="$WORKER"                      #Main Coin Worker Name
DUAL_EWAL_FORMAT="."                        #Set your main pool wallet address format ".", "/", "-"

DUAL_DCOIN="DUAL COIN"                      #select second coin to mine in dual mode. Possible options are "dcr", "sc", "lbc", "pasc", "blake2s", "keccak". Default value is "dcr".
DUAL_DPOOL="DUAL COIN POOL ADDRESS"         #2nd coin pool address
DUAL_DPORT="DUAL COIN POOL PORT"             #2nd coin pool address
DUAL_DWAL="DUAL COIN WALLET ADDRESS"        #2nd coin wallet address or worker name, it depends on pool.
DUAL_DPSW="$MINER_PWD"                      #Password for 2nd coin .
DUAL_DWORKER="$WORKER"                      #Worker name for 2nd coin
DUAL_DWAL_FORMAT="."                        #Set your dual pool wallet address format ".", "/", "-"

DCRI="40"                                   #2nd coin intensity.
ALL_POOLS="1"                               #Specify "-allpools 1" if miner does not want to mine on specified pool (because it cannot mine devfee on that pool), but you agree to use some default pools for devfee mining.
MPORT="-3333"                               #remote monitoring/management port. Default value is -3333 (read-only mode), specify "-mport 0" to disable remote monitoring/management feature.
MPSW=""                                     #remote monitoring/management password.
DUAL_ADDITIONAL_ARGUMENTS=""                #add "-allcoins 1" if you mine Ethereum forks or other Ethash coins

in 0miner add :

Code:
if [[ $COIN == CLAYMORE_DUAL ]]
then
  HCD=/home/m1/eth/claymore/$CLAYMORE_VERSION/ethdcrminer64
  E_ADDR="$DUAL_EWAL$DUAL_EWAL_FORMAT$DUAL_EWORKER"
  D_ADDR="$DUAL_DWAL$DUAL_DWAL_FORMAT$DUAL_DWORKER"
  screen -dmSL miner $HCD -epool $DUAL_EPOOL:$DUAL_EPORT -ewal $E_ADDR -epsw  $DUAL_EPSW -dpool stratum+tcp://$DUAL_DPOOL:$DUAL_DPORT -dwal $D_ADDR -dpsw $DUAL_DPSW -dcoin $DUAL_DCOIN -allpools $ALL_POOLS -dbg -1 -mport $MPORT -mpsw $MPSW $DUAL_ADDITIONAL_ARGUMENTS
fi

in 1bash set :

Code:
COIN="CLAYMORE_DUAL"

With this new setting you can mine any eth combo you like.
Keep calm and carry on mining ...


P.S: Let me know how it works.