Post
Topic
Board Mining (Altcoins)
Re: [OS] nvOC easy-to-use Linux Nvidia Mining v0019-1.4
by
hashmasta83
on 16/02/2018, 22:54:26 UTC
I've noticed recently Verge (Lyra2rev2 algo) XVG coin shooting up to three times the profit of other coins on WTM auto switcher by papampi so i wanted to provide this short guide to add XVG coin to nvOC.  I am using v0019-2.0, so i apologize if it's already included in the latest build.

Firstly, when you setup WTM you must uncheck the "Groestl" algo, as Verge coin allows for multiple algo mining.  WTM will only report out current profits for Groestl algo and not Lyra2rev2, which we want to mine.  If you don't uncheck Groestl algo, XVG coin will always be at the bottom of the WTM profit checking list and will never auto switch.  Once you have your WTM configured correctly, hit calculate, and follow the instructions in 1bash to add it (add in .json after coins).  Then add "XVG" to the list of coins for WTM to profit check.

Add "XVG" to list of coins for WTM to profit check (example below)
Code:
WTM_AUTO_SWITCH_COINS="ZEC;ZEN;ZCL;ETH;ETC;MONA;VTC;ZCOIN;BTG;FTC;XVG;XMR" ### coins to check profit or make the switch with format "ZEC;ETH;ETC;XMR"

Next add the following code to 1bash
Code:
# XVG ## No Need to add stratum+tcp:// to server address
XVG_WORKER="$WORKERNAME"
XVG_ADDRESS="BTC wallet address"        
XVG_POOL="lyra2v2.mine.zpool.ca"      
XVG_PORT="4533"
XVG_INTENSITY="0"

Add "-o $COIN == XVG" to this portion of code if you are using algo specific OC settings (these are my settings for GTX 1070)
Code:
# lyra2vRev2
  if [ $COIN == "MONA" -o $COIN == "VTC" -o $COIN == "XVG" ]
  then
    ALGORITHM="LYRA2REV2"
    POWERLIMIT_WATTS=130
    __CORE_OVERCLOCK=125
    MEMORY_OVERCLOCK=600
  fi

Add the following code to 0miner
Code:
if [ $COIN == "XVG" ]
then
  HCD='/home/m1/ASccminer/ccminer'
  ADDR="$XVG_ADDRESS"
  screen -dmSL miner $HCD -a lyra2v2 -o stratum+tcp://$XVG_POOL:$XVG_PORT -u $ADDR -p c=XVG -i $XVG_INTENSITY
fi

I confirmed this works on Zpool as i was generating BTC (Zpool converts mined coins to BTC).

Thanks for such nice illustration on how to add this coin, I guess it was probably already there but with different algo, am not sure though.

Your presentation is pushing me to ask you if you can write up some tutorials on how to do things on nvOC (only if you up for it)  Smiley

Let me know if you are interested.

You can contact PM me here or on our official discord channel : https://discord.gg/8YDFEvY

Honestly damNmad you read my mind.  I like doing this kind of stuff (i'm an engineer) and i'm anal as hell about everything.  I'd like to put together a post on hardware setups for mining rigs and converting a trio rig to a 6 x card rig (this is what i did) as that was lacking information.  I'd like to do some testing to prove out some of my theories on things.  But let me see what i can put together in about a week or so regarding adding coins.

Also fyi, i revised the post you quoted because I learned later that Zpool doesn't actually mine that specific coin (XVG), it mines a group of Lrya2rev2 algo coins.  So i switched to suprnova pool and revised to code to utilize that server instead as it mines that coin directly.