Suggestion, could we make a tutorial on adding new coins especially going towards the end of ETH. I feel like there will be a lot of these newer coins that might just be great to hodl, however it would also allow you to outsource the addition of coins a little bit, and you can fork it over from GitHub if the coin tests to be stable on nvOC.
That's my BTG settings:
in 1bash add:
COIN="BTG"
PAPAMPI_WTM_AUTO_SWITCH="NO"
BTG_WORKER="$WORKERNAME"
BTG_ADDRESS="$SUPRNOVA_NAME"
BTG_POOL="btg.suprnova.cc"
BTG_PORT="8816"
and in 3main add:
if [ $COIN == "BTG" ]
then
if [ $EWBF_VERSION == "3_3" ]
then
HCD='/home/m1/zec/v3_3/miner'
fi
if [ $EWBF_VERSION == "3_4" ]
then
HCD='/home/m1/zec/v3_4/miner'
fi
BTGADDR="$BTG_ADDRESS.$BTG_WORKER"
if [ $ZM_or_EWBF == "ZM" ]
then
HCD='/home/m1/zec/zm/5_2/zm_miner'
screen -dmSL miner $HCD --server $BTG_POOL --user $BTGADDR --pass z --port $BTG_PORT;
fi
if [ $ZM_or_EWBF == "EWBF" ]
then
screen -dmSL miner $HCD --eexit 3 --fee $EWBF_PERCENT --pec --server $BTG_POOL --user $BTGADDR --pass z --port $BTG_PORT;
fi
if [ $LOCALorREMOTE == "LOCAL" ]
then
screen -r miner
fi
BITCOIN="theGROUND"
while [ $BITCOIN == "theGROUND" ]
do
sleep 60
done
fi
BTG is not on whattomine. So the switcher will not run.