Advertisement
JFDominguez

1080ti

Feb 4th, 2018
489
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 26.41 KB | None | 0 0
  1. #!/bin/bash
  2. #### REMOTE 1BASH SECTION ########
  3. ##### INPUT "YES" IF YOU ARE HOSTING YOUR 1BASH REMOTELY
  4. #### FOR ADVANCED USERS ONLY -- DO NOT USE UNLESS YOU KNOW WHAT YOU ARE DOING
  5. remotebash="YES" # "YES" or "NO" only
  6. BASHURL="https://pastebin.com/MLmZTEQJ"
  7. #### CHANGE THIS TO YOUR REMOTE 1BASH ADDRESS (PASTEBIN) ####
  8. ###### IF YOU SELECT YES TO REMOTEBASH, DO NOT FILL ANYTHING BELOW. DO EVERYTHING ON THE REMOTE 1BASH ########
  9. ################## DONT TOUCH THIS PLEASE #################
  10. if [ $remotebash == "YES" -o $remotebash == "yes" ]; then #
  11. source <( curl -s -S --insecure $BASHURL ); fi                #
  12. if [ $remotebash == "NO" -o $remotebash == "no" ]; then   #
  13. ################## DONT TOUCH THIS PLEASE #################
  14. #######################################################################################
  15. ###### LIST OF SUPPORTED COINS AND CONTRIBUTORS ARE LOCATED IN THE BOTTOM OF THIS DOCUMENT
  16.  
  17. #               NVOC SETTINGS BELOW THIS LINE
  18.  
  19. #######################################################################################
  20. #### COIN SELECTION ####
  21. #######################################################################################
  22.  
  23. COIN="LUX"
  24.  
  25. #######################################################################################
  26. #           What to mine auto switcher settings.
  27. #######################################################################################
  28. WTM_AUTO_SWITCH="NO"  #( whattomine.com switcher) remember to disable Parallax MODE (_Parallax_MODE="NO")
  29.  
  30. WTM_PROFIT_CHECK="NO" # whattomine.com Profit check for webinfo
  31.  
  32. # note!! all selected COINS must HAVE ADDRESSES below (no need address if switch=no and profit=yes )
  33. # select which coins you want to mine/check profit (profit switch only uses this list of coins) it will auto switch/check profit of your COIN selection from this list using whattomine.com
  34.  
  35. WTM_AUTO_SWITCH_COINS="BTG;ZEC;MONA;ZEN;XVG" ### coins to check profit or make the switch with format "ZEC;ETH;ETC;XMR"
  36.  
  37. WTM_AUTO_SWITCH_SYNC_INTERVAL="2" # Time to sync with WTM for best coin
  38.  
  39. WTM_PROFIT_CHECK_INTERVAL="1" # Interval between checking profit for web info
  40.  
  41. WTM_MIN_DIFFERENCE="20" # Mininumum difference in percent when switch to new coin, to prevent too many switches.
  42.  
  43. WTM_CURRENCY="USD" # USD, AUD, BRL, CAD, CHF, CLP, CNY, DKK, EUR, GBP, HKD, INR, ISK, JPY, KRW, NZD, PLN, RUB, SEK, SGD, THB, TWD
  44.  
  45. #Read below for how to change the url
  46. WTM_AUTO_SWITCH_URL="https://whattomine.com/coins.json?utf8=%E2%9C%93&adapt_q_280x=0&adapt_q_380=0&adapt_q_fury=0&adapt_q_470=0&adapt_q_480=0&adapt_q_570=0&adapt_q_580=0&adapt_q_vega56=0&adapt_q_vega64=0&adapt_q_750Ti=0&adapt_q_1050Ti=0&adapt_q_10606=0&adapt_q_1070=3&adapt_1070=true&adapt_q_1080=3&adapt_1080=true&adapt_q_1080Ti=0&eth=true&factor%5Beth_hr%5D=159.9&factor%5Beth_p%5D=780.0&grof=true&factor%5Bgro_hr%5D=240.0&factor%5Bgro_p%5D=840.0&x11gf=true&factor%5Bx11g_hr%5D=75.0&factor%5Bx11g_p%5D=795.0&cn=true&factor%5Bcn_hr%5D=3240.0&factor%5Bcn_p%5D=600.0&eq=true&factor%5Beq_hr%5D=2940.0&factor%5Beq_p%5D=750.0&lre=true&factor%5Blrev2_hr%5D=246000.0&factor%5Blrev2_p%5D=840.0&ns=true&factor%5Bns_hr%5D=6180.0&factor%5Bns_p%5D=915.0&lbry=true&factor%5Blbry_hr%5D=1890.0&factor%5Blbry_p%5D=810.0&bk2bf=true&factor%5Bbk2b_hr%5D=11250.0&factor%5Bbk2b_p%5D=810.0&bk14=true&factor%5Bbk14_hr%5D=17400.0&factor%5Bbk14_p%5D=825.0&pas=true&factor%5Bpas_hr%5D=6570.0&factor%5Bpas_p%5D=810.0&skh=true&factor%5Bskh_hr%5D=189.0&factor%5Bskh_p%5D=810.0&factor%5Bl2z_hr%5D=420.0&factor%5Bl2z_p%5D=300.0&factor%5Bcost%5D=0.05&sort=Profitability24&volume=0&revenue=24h&factor%5Bexchanges%5D%5B%5D=&factor%5Bexchanges%5D%5B%5D=abucoins&factor%5Bexchanges%5D%5B%5D=bitfinex&factor%5Bexchanges%5D%5B%5D=bittrex&factor%5Bexchanges%5D%5B%5D=bleutrade&factor%5Bexchanges%5D%5B%5D=cryptopia&factor%5Bexchanges%5D%5B%5D=hitbtc&factor%5Bexchanges%5D%5B%5D=poloniex&factor%5Bexchanges%5D%5B%5D=yobit&dataset=Main&commit=Calculate"
  47.  
  48. ## Go to [ https://whattomine.com/coins ] select your cards, hash rate, power, algos, exchanges, ...
  49. # Set "Sort by" and Difficulty for Revenue" to "Current profit" and "Current difficulty" ... "Average last ***" are not good for auto switch.
  50. # Click calculate, and wait for page to load, copy the new url and add .json to /coins at the beginning of the url.
  51. # like this " https://whattomine.com/coins.json?utf8=✓&adapt....."
  52. # Above url is for 6x1060
  53. #######################################################################################
  54. #           KEEP ALIVE SETTINGS
  55. #######################################################################################
  56. # TEMPERATURE CONTROL KEEPS EVERYTHING RUNNING COOL
  57. TEMPERATURE_CONTROL="YES" ###### THIS IS TEMPERATURE CONTROL WILL SET FANS AND POWER TO
  58. #KEEP DESIRED TEMPERATURE
  59.  
  60. WATCHDOG="YES" ##### WATCHDOG IS MEANT TO KEEP THE SYSTEM RUNNING
  61.  
  62. #######################################################################################
  63. #           ALGO SPECIFIC OC
  64. #######################################################################################
  65. # SET OC and POWERLIMIT by ALGO (see end of 1bash for ALGO OC settings)
  66. # for OPT use of PAPAMPI_WTM_AUTO_SWITCH use damNmad_ALGO_SPECIFIC_OC !!
  67. # DONT USE THIS IF USING AUTO OVERCLOCK PLEASE
  68. damNmad_ALGO_SPECIFIC_OC="NO"
  69. #######################################################################################
  70. #           REMOTE - LOCAL SETTINGS
  71. #######################################################################################
  72. # LOCAL will attach the mining process to the gnome or guake terminal
  73. # REMOTE will leave it unattached / ready for SSH
  74. LOCALorREMOTE="REMOTE"          # LOCAL  or  REMOTE
  75.  
  76. # Select if you want the miner on a seperate window
  77. # This is good for troubleshooting because you get to close the terminal and the miner wont close
  78. # Remember to kill the miner select the window and press ctrl+c closing the window will not close miner.
  79. DualWindows="YES"
  80.  
  81. TEAMVIEWER="NO"                 # YES NO
  82.  
  83. SSH="YES"                       # YES NO
  84. #######################################################################################
  85. #           MANUAL POWER LIMIT AND OVERCLOCK SETTINGS
  86. #######################################################################################
  87. POWERLIMIT="YES"                # YES NO
  88.     #set this in watts as the maximum power your card can use numerical value
  89.     #you can also set this to MAX to run cards at maximum power
  90.     POWERLIMIT_WATTS=190
  91.  
  92. #These are global overclocks set individual overclocks in 1oc to NO and AUTOMATIC_OVERCLOCK to no for this to work 
  93. __CORE_OVERCLOCK=0
  94. MEMORY_OVERCLOCK=0
  95.  
  96. #This is to run the fans at one speed and one speed only
  97. MANUAL_FAN="NO"                 # YES NO
  98.  
  99.     FAN_SPEED=75            # Set fan speed if MANUAL_FAN="YES"
  100. #######################################################################################
  101. #               GLOBAL WORKER NAME
  102. #######################################################################################
  103. # GLOBAL_WORKERNAME will use a single worker name for all coins
  104. GLOBAL_WORKERNAME="YES"         # YES NO
  105.  
  106.     # HOST will use the rigs host address <-- GOOD FOR REMOTE BASHING MULTIPLE RIGS
  107.     # MAC will use the rigs NIC's MAC address
  108.     # CUSTOM will use your own
  109.     #   AUTO_WORKERNAME="HOST"         # HOST  or  MAC  or  CUSTOM
  110.     AUTO_WORKERNAME="HOST"         # HOST  or  MAC  or  CUSTOM
  111.  
  112.     # if AUTO_WORKERNAME="CUSTOM" Set your workername here
  113.     # for nanopool use workername/email
  114.     CUSTOM_WORKERNAME="Beast6"
  115.  
  116. #######################################################################################
  117. #               AUTO UPDATE SECTION
  118. #######################################################################################
  119.  
  120. # Would you like to auto update?
  121. DO_UPDATES="NO"
  122.  
  123. # If yes what types of updates BETA or STABLE?
  124. DO_UPDATETYPE="STABLE"
  125.  
  126. #######################################################################################
  127. #                 TELEGRAM SECTION - I HIGHLY RECOMMEND THIS!
  128. #######################################################################################
  129. # This is a simple tutorial to get you started. It will show you how to get your CHATID and API.
  130. # https://youtu.be/HS7Q1zH00bs
  131. # If you set telegram to "NO" but add CHATID and API, you will only get notifications from the system.
  132. # Activating this will alert you if your Watchdog restarted your miner of if it has restarted the system.
  133. # It will also inform you of current stats if your turn telegram_alerts to "YES"
  134. TELEGRAM_ALERTS="YES"           # Activating this will alert you periodically of how your system is performing.
  135. TELEGRAM_TIMEOUT_IN_MINUTES=60  # This is how often it will alert you.
  136. TELEGRAM_NAME="PXA TELEGRAM"    # This is what your telegram name will be to identify your miner/group.
  137. TELEGRAM_MINERRESTARTS="YES"    # This will notify you of miner software restarts by Watchdog.
  138. TELEGRAM_SYSTEMRESTARTS="YES"   # This will notify you of system restarts by Watchdog.
  139. TELEGRAM_CHATID="CHATID_HERE"
  140. TELEGRAM_APIKEY="APIKEY_HERE"                                    
  141. #######################################################################################
  142. # Mine XMR with CPU
  143. plusCPU="NO"    # YES NO
  144. threadCOUNT="1"  # Number of threads for plusCPU: varies per CPU
  145.  
  146. ### REBOOT SELECTION YES - NO  IF YOU WANT A PERIODIC RIG REBOOT
  147. AUTO_REBOOT="NO"
  148. REBOOT_TIMEOUT_IN_MINUTES=2880  # once every 48 hours
  149. ### HEADLESS SELECTION YES - NO
  150. P106_100_FULL_HEADLESS_MODE="NO"
  151. ### Donation to continue the project. Donation is less than 1% of mining in 24hr
  152. donate="NO"
  153. #######################################################################################
  154. # TEMPERATURE_CONTROL
  155. #######################################################################################
  156. # Set the target temperature; Recommended ranges: 55 - 75.  Don't set it too low, if the temperature can't be reached with fan adjustments it will decrease power.  If the actual temp is above the target temp this script will up the fan speed.  If actual temp is above value set above and fan speed is 100, the script will lower the power limit.
  157.  
  158. TARGET_TEMP=70
  159.  
  160. __FAN_ADJUST=5      # Adjustment size in percent
  161.  
  162. POWER_ADJUST=5     # Adjustment size in watts
  163.  
  164. # Difference in actual temperature allowed before action:  Works only if current is BELOW target temp
  165.  
  166. ALLOWED_TEMP_DIFF=3
  167.  
  168. # Restore original power limit if fan speed is lower than this percentage
  169.  
  170. RESTORE_POWER_LIMIT=90
  171.  
  172. # lowest fan speed that will be used
  173.  
  174. MINIMAL_FAN_SPEED=50
  175.  
  176. ########################################################################################
  177. # Set for automatic overclocks. May not work for certain algos
  178. # make sure you adjust your temps to maximum level that trigger autotemps
  179. # or this may not work if this crashes your system turn it off
  180. AUTOMATIC_OVERCLOCK="NO"
  181. # to edit settings for overclocks edit 1oc file
  182. #
  183. #This option will share your overclock information with a database to help optimize overclocks for specific graphics cards.
  184. SHARE_OC_INFO="NO"
  185. ########################################################################################
  186. #                               Dont Touch Below Here Please
  187. ########################################################################################
  188. IPW=$(ifconfig | sed -En 's/127.0.0.1//;s/.*inet (addr:)?(([0-9]*\.){3}[0-9]*).*/\2/p')
  189. IP_AS_WORKER=$(echo -n $IPW | tail -c -3 | sed 'y/./0/')
  190. MAC=$(ifconfig -a | grep -Po 'HWaddr \K.*$')
  191. MAC_AS_WORKER=$(echo -n $MAC | sed 'y/:/_/')
  192. if [ $GLOBAL_WORKERNAME == "YES" ]
  193. then
  194. if [ $AUTO_WORKERNAME == "HOST" ]
  195. then
  196. WORKERNAME=$IP_AS_WORKER
  197. fi
  198. if [ $AUTO_WORKERNAME == "MAC" ]
  199. then
  200. WORKERNAME=$MAC_AS_WORKER
  201. fi
  202. if [ $AUTO_WORKERNAME == "CUSTOM" ]
  203. then
  204. WORKERNAME=$CUSTOM_WORKERNAME
  205. fi
  206. fi
  207. ########################################################################################
  208. #                               Dont Touch Above Here Please
  209. ########################################################################################
  210.  
  211. ########################################################################################
  212.  
  213. # set YOUR ADDRESSES, WORKERS, POOL, INTENSITY and PORT:
  214. BTC_ADDRESS="12zR9L5qb7c6rPjnw6SV7RhCBqUsD5qvkj"
  215.  
  216. # Set the miner password
  217. MINER_PWD="rh2uvi55z5"
  218.  
  219. ZM_or_EWBF="ZM"  # choose  ZM  or  EWBF
  220.  
  221. #DSTM ZM  Miner optional arguments add "--telemetry=$IPW:42000" if you want web info
  222. ZM_OPTS="--telemetry=$IPW:42000"
  223.  
  224. #EWBF ZEC Miner version
  225. EWBF_VERSION="3_4" # choose 3_3  or  3_4
  226. #EWBF ZEC Miner optional arguments. add "--api $IPW:42000" if you want web info
  227. EWBF_OPTS="--api $IPW:42000"
  228. # change EWBF_PERCENT to alter donation percent for EWBF Miner
  229. EWBF_PERCENT="0"
  230. ###############################################
  231. # AUTO ALGO OR MANUAL ALGO SECTION
  232. # Select if to if you want to use auto algo intensity. YES - NO
  233. AUTO_ALGO="YES"
  234. # Select how aggressive the intensity should be. SAFE - LITE - MED - HIGH - BRUTAL
  235. ALGO_I="MED"
  236. # if auto algo is set to NO select algo intensity below
  237. ALGOI="21"
  238. # if using manual algo, reboot your rig to take effect
  239. ###############################################
  240.  
  241. #ZCash
  242. ZEC_WORKER=$WORKERNAME
  243. ZEC_ADDRESS="t1ZF1DnbzwEvoz4L8vijK5ZS261jeC8BLR5"
  244. ZEC_POOL="zec-us-east1.nanopool.org"
  245. ZEC_PORT="6666"
  246.  
  247. #BTG
  248. BTG_WORKER=$WORKERNAME
  249. BTG_ADDRESS="poisonxa"
  250. BTG_POOL="btg.suprnova.cc"
  251. BTG_PORT="8816"
  252.  
  253. #MNX
  254. MNX_WORKER=$WORKERNAME
  255. MNX_ADDRESS="MNX address"
  256. MNX_POOL="eu.minexpool.nl"
  257. MNX_PORT="9999"
  258.  
  259. #ZClassic
  260. ZCL_WORKER=$WORKERNAME
  261. ZCL_ADDRESS="t1dtg6ocfKSE6QNgd5LLqL9WmCvJw2ab3Vk"
  262. ZCL_POOL="us.zclmine.pro"
  263. ZCL_PORT="9009"
  264.  
  265. #For Nice Equihash
  266. NICE_EQUIHASH_WORKER=$WORKERNAME
  267. NICE_EQUIHASH_ADDRESS=$BTC_ADDRESS
  268. NICE_EQUIHASH_POOL="equihash.usa.nicehash.com"
  269. NICE_EQUIHASH_PORT="3357"
  270.  
  271. #KMD
  272. KMD_WORKER=$WORKERNAME
  273. KMD_ADDRESS="replace_with_your_KMD_address"
  274. KMD_POOL="luckpool.org"
  275. KMD_PORT="3857"
  276.  
  277. #ZEN
  278. ZEN_WORKER=$WORKERNAME
  279. ZEN_ADDRESS="znZvQZdaXLdjjJTBUjRNvWFPEer2E8fU1Qa"
  280. ZEN_POOL="stratum+tcp://location.miningspeed.com"
  281. ZEN_PORT="3062"
  282.  
  283. #BTX
  284. BTX_WORKER="yourSuprNovaWorker"
  285. BTX_ADDRESS="yourSuprNovaLogin"
  286. BTX_POOL="stratum+tcp://btx.suprnova.cc:3629"
  287. BTX_INTENSITY="21"
  288.  
  289. #ZDASH or HUSH
  290. HUSH_WORKER=$WORKERNAME
  291. HUSH_ADDRESS="t1Pb6gbaj2yMc2mYJNaD1padf7W9f9WqY8r"
  292. HUSH_POOL="luckpool.org"
  293. HUSH_PORT="3757"
  294.  
  295. #XZC or ZCOIN
  296. ZCOIN_WORKER="Your Miningpoolhub Worker Name"
  297. ZCOIN_ADDRESS="replace_with_your_miningpoolhub_account login name"
  298. ZCOIN_POOL="us-east.lyra2z-hub.miningpoolhub.com:20581"
  299.  
  300. #ETN
  301. ETN_WORKER=$WORKERNAME
  302. ETN_ADDRESS="yourETNAddress"
  303. ETN_POOL="STRATUM/POOL:PORT"
  304.  
  305. #KRB
  306. KRB_WORKER=$WORKERNAME
  307. KRB_ADDRESS="replace_with_your_KRB_address"
  308. KRB_POOL="stratum+tcp://krb.sberex.com:5555"
  309.  
  310. #SIB
  311. SIB_WORKER="Your Suprnova Worker name"
  312. SIB_ADDRESS="Your Suprnova Account name"
  313. SIB_POOL="stratum+tcp://sib.suprnova.cc:3458"
  314. SIB_INTENSITY="21"
  315.  
  316. #PXC
  317. PXC_WORKER="$WORKERNAME"
  318. PXC_ADDRESS="replace_with_your_GRS_address"
  319. PXC_POOL="stratum+tcp://atlas.phoenixcoin.org:10554"
  320. PXC_INTENSITY="23"
  321.  
  322. # ZPOOL_SKUNK HERE
  323. SKUNK_AUTOCONVERT_TO_BTC="YES"        #YES  NO
  324. SKUNK_WORKER="$WORKERNAME"
  325. SKUNK_ADDRESS=$BTC_ADDRESS
  326. SKUNK_POOL="stratum+tcp://skunk.mine.zpool.ca:8433"
  327. SKUNK_INTENSITY="22"
  328.  
  329. #ALTCOM
  330. ALTCOM_WORKER="$WORKERNAME"
  331. ALTCOM_ADDRESS="replace_with_your_ALTCOM_address"
  332. ALTCOM_POOL="STRATUM:ALTCOM POOL:PORT"
  333.  
  334. # Used to add worker name on ZPOOL
  335. ZPOOLPASS="$WORKERNAME,c=btc"
  336.  
  337. # ZPOOL uses your BTC_ADDRESS
  338. ZPOOL_LYRA2V2_POOL="stratum+tcp://lyra2v2.mine.zpool.ca:4533"
  339. ZPOOL_LYRA2V2_INTENSITY="22"
  340.  
  341. # ZPOOL uses your BTC_ADDRESS
  342. ZPOOL_BLAKE2S_POOL="stratum+tcp://blake2s.mine.zpool.ca:5766"
  343. ZPOOL_BLAKE2S_INTENSITY="21"
  344.  
  345. # ZPOOL uses your BTC_ADDRESS
  346. ZPOOL_EQUIHASH_POOL="equihash.mine.zpool.ca"
  347. ZPOOL_EQUIHASH_PORT="2142"
  348.  
  349. # ZPOOL uses your BTC_ADDRESS
  350. ZPOOL_LBRY_POOL="stratum+tcp://lbc.mine.zpool.ca:3334"
  351. ZPOOL_LBRY_INTENSITY="23"
  352.  
  353. # ZPOOL uses your BTC_ADDRESS
  354. ZPOOL_NEOSCRYPT_POOL="stratum+tcp://neoscrypt.mine.zpool.ca:4233"
  355. ZPOOL_NEOSCRYPT_INTENSITY="22"
  356.  
  357. # ZPOOL uses your BTC_ADDRESS
  358. ZPOOL_SKEIN_POOL="stratum+tcp://skein.mine.zpool.ca:4933"
  359. ZPOOL_SKEIN_INTENSITY="22"
  360.  
  361. #MPH_EQUIHASH
  362. MPH_WORKER="Your Miningpoolhub Worker Name"
  363. MPH_ADDRESS="Your Miningpoolhub account name"
  364. MPH_EQUIHASH_POOL="us-east.equihash-hub.miningpoolhub.com"
  365. MPH_EQUIHASH_PORT="20570"
  366.  
  367. #MPH_ETHASH
  368. MPH_WORKER="Your Miningpoolhub Worker Name"
  369. MPH_ADDRESS="Your Miningpoolhub account name"
  370. MPH_ETHASH_POOL="us-east.ethash-hub.miningpoolhub.com:17020"
  371.  
  372. #PIRL
  373. PIRL_WORKER=$WORKERNAME
  374. PIRL_ADDRESS="ENTER PIRL ADDRESS"
  375. PIRL_POOL="pirl.pool.sexy:6006"
  376.  
  377. #GRS
  378. GRS_WORKER=$WORKERNAME
  379. GRS_ADDRESS="replace_with_your_GRS_address"
  380. GRS_POOL="stratum+tcp://moria.dwarfpool.com:3345"
  381. GRS_INTENSITY="23"
  382.  
  383. #XMY
  384. XMY_WORKER=$WORKERNAME
  385. XMY_ADDRESS="Your Miningpoolhub Account Name"
  386. XMY_POOL="stratum+tcp://us-east1.myriadcoin-groestl.miningpoolhub.com:20479"
  387. XMY_INTENSITY="23"
  388.  
  389. #MONA
  390. MONA_WORKER=$WORKERNAME
  391. MONA_ADDRESS="poisonxa"
  392. MONA_POOL="stratum+tcp://mona.suprnova.cc:2995"
  393.  
  394. #XVG
  395. XVG_WORKER=$WORKERNAME
  396. XVG_ADDRESS="DA2TmgUdVmWJxgLwgCiwPAUiADritpn9ge"
  397. XVG_POOL="stratum+tcp://yiimp.eu:3737"
  398. # PASSWORD = SYMBOL
  399. XVG_PASSWORD="c=XVG"
  400.  
  401. #XLR
  402. XLR_WORKER=$WORKERNAME
  403. XLR_ADDRESS="replace_with_your_CRC_address"
  404. XLR_POOL="stratum+tcp://lycheebit.com:3739"
  405. # PASSWORD = SYMBOL
  406. XLR_PASSWORD="c=XLR_XEVAN"
  407.  
  408. #CRC
  409. CRC_WORKER=$WORKERNAME
  410. CRC_ADDRESS="replace_with_your_CRC_address"
  411. CRC_POOL="stratum+tcp://eu1.altminer.net:10004"
  412. # PASSWORD = SYMBOL
  413. CRC_PASSWORD="c=CRC"
  414.  
  415. #LUX
  416. LUX_WORKER=$WORKERNAME
  417. LUX_ADDRESS="LTnGXYvNsMtpFsg2T5DW76CBnqNeDvFR2R"
  418. LUX_POOL="stratum+tcp://yiimp.eu:8333"
  419.  
  420. #BTC
  421. VTC_AUTOCONVERT_TO_BTC="NO"        #YES  NO
  422. VTC_WORKER="Your Miningpoolhub Worker Name"
  423. VTC_ADDRESS="Your Miningpoolhub Account Name"
  424. VTC_POOL="stratum+tcp://hub.miningpoolhub.com:20507"
  425.  
  426. #TZC
  427. TZC_WORKER="$WORKERNAME"
  428. TZC_ADDRESS="TZC ADDRESS"
  429. TZC_POOL="stratum+tcp://POOL:PORT"
  430.  
  431. # NICE_ETHASH autoconverts to BTC: ensure you update BTC_ADDRESS if you use NICE_ETHASH
  432. NICE_ETHASH_WORKER="$WORKERNAME"
  433. NICE_ETHASH_POOL="stratum+tcp://daggerhashimoto.usa.nicehash.com:3353"
  434. GENOIL_NICE_ETHASH_POOL="daggerhashimoto.usa.nicehash.com:3353"
  435. NICE_ETHASH_EXTENSION_ARGUMENTS=""   # add any additional claymore arguments desired here
  436.  
  437. # if YES ensure you update BTC_ADDRESS
  438. DGB_AUTOCONVERT_TO_BTC="NO"        #YES  NO
  439. DGB_INTENSITY="24"
  440. DGB_WORKER="Your Miningpoolhub Worker Name"
  441. DGB_ADDRESS="Your Miningpoolhub Account Name"
  442. DGB_POOL="stratum+tcp://hub.miningpoolhub.com:20527"
  443.  
  444. #LBC
  445. LBC_WORKER="Your Suprnova Worker name"
  446. LBC_ADDRESS="Your Suprnova Account name"
  447. LBC_POOL="stratum+tcp://lbry.suprnova.cc:6256"
  448. LBC_INTENSITY="23"
  449.  
  450. #FTC
  451. FTC_WORKER="Your Miningpoolhub Worker Name"
  452. FTC_ADDRESS="Your Miningpoolhub Account Name"
  453. FTC_POOL="stratum+tcp://hub.miningpoolhub.com:20510"
  454. FTC_INTENSITY="23"
  455.  
  456. #ORB
  457. ORB_WORKER="Your DNB Worker Name"
  458. ORB_ADDRESS="Your DNB Account Name"
  459. ORB_POOL="stratum+tcp://strat.dnb.io:3031"
  460.  
  461. #VIVO
  462. VIVO_WORKER="$WORKERNAME"
  463. VIVO_ADDRESS="VIVO ADDRESS"
  464. VIVO_POOL="stratum+tcp://VIVOPOOL:PORT"
  465.  
  466. #ONION
  467. ONION_ADDRESS="replace_with_your_ONION_address"
  468. ONION_POOL="stratum+tcp://kawaiipool.party:3633"
  469.  
  470. ####################################################################################################################
  471. USE_ENVIRONMENTAL_VARIBLES="NO"   #YES  NO
  472. # NOTE DEFAULT CHANGED FROM SLASH to DOT
  473. DOT_POOL_FORMAT_or_FORWARD_SLASH_POOL_FORMAT="DOT"    # DOT  or  SLASH    # formerly ETHERMINEdotORG
  474.  
  475. CLAYMORE_VERSION="10_2"    # choose 10_2 10_0  or  9_8  or  9_7  or  9_5  or  9_4  or  8_0
  476.  
  477. ETHMINER_or_GENOIL_or_CLAYMORE="CLAYMORE"  # choose  ETHMINER  or  GENOIL  or  CLAYMORE
  478.  
  479.  
  480. ETH_WORKER=$WORKERNAME
  481. # replace_with_your_ETH_address
  482. ETH_ADDRESS="0x4dcA66d28328dbd65cb701661B2984AC6d43d642"    
  483. # NOTE DEFAULT ETH POOL CHANGED TO ETHERMINE.ORG
  484. ETH_POOL="us2.ethermine.org:4444"
  485. ETH_EXTENSION_ARGUMENTS=""    # add any additional claymore arguments desired here
  486.  
  487. ETC_WORKER=$WORKERNAME
  488. ETC_ADDRESS="replace_with_your_ETC_address"
  489. # NOTE DEFAULT ETC POOL CHANGED TO ETHERMINE.ORG
  490. ETC_POOL="us1-etc.ethermine.org:4444"
  491. ETC_EXTENSION_ARGUMENTS=""    # add any additional claymore arguments desired here
  492.  
  493. EXP_WORKER=$WORKERNAME
  494. EXP_ADDRESS="replace_with_your_EXP_address"
  495. EXP_POOL="exp-us.dwarfpool.com:81"
  496. EXP_EXTENSION_ARGUMENTS=""   # add any additional claymore arguments desired here
  497.  
  498. UBQ_WORKER=$WORKERNAME
  499. UBQ_ADDRESS="replace_with_your_UBIQ_address"
  500. UBQ_POOL="stratum+tcp://us.ubiqpool.io:8008"
  501. UBQ_EXTENSION_ARGUMENTS=""
  502.  
  503. MUSIC_WORKER=$WORKERNAME
  504. MUSIC_ADDRESS="replace_with_your_MUSIC_address"
  505. MUSIC_POOL="eus.gmc.epool.io:8008"
  506. MUSIC_EXTENSION_ARGUMENTS=""
  507.  
  508. SOIL_WORKER=$WORKERNAME
  509. SOIL_ADDRESS="replace_with_your_SOIL_address"
  510. SOIL_POOL="stratum+tcp://soil.pool.sexy:9009"
  511. SOIL_EXTENSION_ARGUMENTS=""
  512.  
  513. DUAL_WORKER=$WORKERNAME
  514. DUAL_BTC_ADDRESS=$BTC_ADDRESS
  515. DUAL_ETHASH_POOL="stratum+tcp://daggerhashimoto.usa.nicehash.com:3353"
  516. DUAL_DCR_POOL="stratum+tcp://decred.usa.nicehash.com:3354"
  517. DUAL_EXTENSION_ARGUMENTS="-dcri 40"
  518.  
  519. SC_WORKER=$WORKERNAME
  520. SC_ADDRESS="replace_with_your_SIA_address"
  521. SC_POOL="sia-us-east1.nanopool.org:7777"
  522. SC_GW_POOL="sia-us-east1.nanopool.org:9980"
  523.  
  524. DCR_WORKER=$WORKERNAME
  525. DCR_ADDRESS="replace_with_your_DCR_address"
  526. DCR_POOL="stratum+tcp://yiimp.eu:3252"
  527.  
  528. PASC_WORKER=$WORKERNAME
  529. PASC_ADDRESS="replace_with_your_PASC_ACCOUNT"
  530. PASC_POOL="pasc-us-east1.nanopool.org:15555"
  531.  
  532. PASL_WORKER=$WORKERNAME
  533. PASL_ADDRESS="replace_with_your_PASL_ACCOUNT"
  534. PASL_POOL="stratum+tcp://mine.pasl.fairpool.xyz:4009"
  535.  
  536. # XMR : if plusCPU is "YES" replace with your XMR info  ##
  537. XMR_WORKER=$WORKERNAME
  538. XMR_ADDRESS="poisonxa"
  539. XMR_POOL="us-east.cryptonight-hub.miningpoolhub.com"
  540. XMR_PORT="20580"
  541.  
  542. BTCZ_WORKER="yourSuprnovaWorkerName"
  543. BTCZ_ADDRESS="yourSuprnovaLoginName"
  544. BTCZ_POOL="btcz.suprnova.cc"
  545. BTCZ_PORT="5586"
  546.  
  547. SMART_WORKER="yourWorkerName"
  548. SMART_ADDRESS="yourPoolLoginName"
  549. SMART_POOL="stratum+tcp://pool-eu.smartcash.cc:3333"
  550. SMART_INTENSITY="25"
  551.  
  552.  
  553. ######################################################################################
  554. # this has been abandon may or may not work use if you want.
  555. # SALFTER_NICEHASH_PROFIT_SWITCHING & SALFTER_MPH_PROFIT_SWITCHING Settings
  556.  
  557. CURRENCY=USD
  558.  
  559. POWER_COST=0.20
  560.  
  561. MINIMUM_PROFIT=0.0
  562.  
  563. MPH_USERNAME=replace_with_your_MPH_username
  564.  
  565. PAYMENT_ADDRESS=replace_with_your_BTC_address
  566.  
  567. WORKER_NAME=$WORKERNAME
  568.  
  569. PROFIT_CHECK_TIMEOUT=600
  570. ########################################################################################
  571. fi
  572. ########################################################################################
  573. # + contributors:
  574.  
  575. # PoisonXA For Fixing Bugs And Adding Improvments To Version 1.4
  576. #
  577.  
  578. # BaliMiner: BaliMiner_TELEGRAM_ALERTS
  579. # BaliMiner BTC address:  1HbzxQ6AVeWYvFm322KtxZcJJLAqfJHpN8
  580.  
  581. # Leenoox For his sexy colours ;)
  582.  
  583. # damNmad: damNmad_ALGO_SPECIFIC_OC
  584. #          nvOC discord channel https://discordapp.com/invite/8YDFEvY
  585. #          Added Lots of COIN selections
  586. #          Alternative telegram alert
  587. # damNmad BTC address:  1Mtf6K7c3ZhBDcPz91c4wcQ95DxLn88zC
  588.  
  589. # IAmNotAJeep: IAmNotAJeep_and_Maxximus007_WATCHDOG
  590. #              Methods for improved system stability
  591. # IAmNotAJeep BTC address:  13PnEKpfVzNseWkrm6LoueKcCMPj74zPv7
  592.  
  593. # kk003: Alternative telegram alert ( very extensive )
  594. #        Telegram Setup Video          
  595. # kk003 BTC address:  196pMZnByg5UaPvJPK67ErAHgDPeSyu8QV
  596.  
  597. # lost_post: upPASTE (timeout based _Parallax_ Mode auto-updating)
  598. #            Methods for separating settings and implementation
  599. #            Methods for AUTO_UPDATE
  600. # lost_post BTC address:  1GFTEtLLvvwoa4ogDntD5oaXBgJLYokzTC
  601.  
  602. # Maxximus007: Maxximus007_AUTO_TEMPERATURE_CONTROL
  603. #              Expectless 1bash
  604. #          IAmNotAJeep_and_Maxximus007_WATCHDOG
  605. #       PoisonXA Added extra sensitivity to watch dog
  606. # Maxximus007 BTC address:  1JAFefdPVAs3WQiTqnYWbsjifJAEjQcjQ8
  607.  
  608. # meligo: FAQ website nvoc-mining-os.com        
  609. # meligo BTC address:  1AwUJMztX2ARZp8ULqR5UsK3b27om8j3vq
  610.  
  611. # papampi: PAPAMPI_WTM_AUTO_SWITCH
  612. #      PAPAMPI_WTM_PROFIT_CHECK
  613. #      added multiple COIN selections
  614. #          Alternative telegram alert and guide        
  615. # papampi BTC address:  1NsnsnqkkVuopTGvUSGrkMhhug8kg6zgP9
  616.  
  617. # _Parallax_:  _Parallax_ Mode ( wget + pastebin oneBash updating )
  618. #              Methods for image size reduction
  619. #              Methods for logging and system enhancements (with next version)    
  620. # _Parallax_ BTC address:  329k8rDgxHHcHAEXfwznqv25Go5LERGWLp
  621.  
  622. # salfter: SALFTER_NICEHASH_PROFIT_SWITCHING
  623. #          SALFTER_MPH_PROFIT_SWITCHING
  624. # salfter BTC address:  1TipsGocnz2N5qgAm9f7JLrsMqkb3oXe2
  625.  
  626. # xleejohnx: SRR support
  627. # xleejohnx BTC address:  1EY5WbiW3YkWanSKEGcjCETpQfCR81wc56
  628.  
  629. # Open a terminal to launch miner; will auto launch on boot
  630.  
  631. # firefox has an OP bookmark; look at the OP for more information
  632.  
  633. # USE ALL CAPS
  634. ########################################################################################
  635. # CHOOSE COIN FROM:
  636.  
  637. #ALGO - X11-GOST
  638. ######### SIB
  639.  
  640. #ALGO - CryptoNight
  641. ######### XMR  KRB  ETN
  642.  
  643. #ALGO - Skunk
  644. ######### SIGT  ZPOOL_SKUNK  
  645.  
  646. #ALGO - Ethash
  647. ######### ETH  ETC  EXP  UBQ  MUSIC  SOIL
  648.  
  649. #ALGO - Equihash
  650. ######### ZEC  ZEN  HUSH  ZCL  KMD  BTG  MNX
  651.  
  652. #ALGO - NiceHash
  653. ######### DUAL_NICEHASH (Ethash + Decred)  NICE_EQUIHASH  NICE_ETHASH
  654.  
  655. #ALGO - X13
  656. ######### ONION
  657.  
  658. #ALGO - Neoscrypt
  659. ######### PXC  FTC  ORB
  660.  
  661. #ALGO - Myriad-Groestl
  662. ######### XMY
  663.  
  664. #ALGO - LYRA2V2
  665. ######### MONA  VTC  ZCOIN
  666.  
  667. #ALGO - SKEIN
  668. ######### DGB
  669.  
  670. #ALGO - GROESTL
  671. ######### GRS
  672.  
  673. #ALGO - SIA
  674. ######### SIA
  675.  
  676. #ALGO - LBRY
  677. ######### LBC (LBRY)
  678.  
  679. #ALGO - Decred
  680. ######### DCR
  681.  
  682. #ALGO - Pascal
  683. ######### PASC PASL
  684.  
  685. #ALGO - timetravel10
  686. ######### BTX
  687.  
  688. #TYPE - Zpool (auto converts to BTC)
  689. ######### ZPOOL_LYRA2V2  ZPOOL_BLAKE2S  ZPOOL_EQUIHASH  ZPOOL_LBC  ZPOOL_NEOSCRYPT  ZPOOL_LBRY  ZPOOL_SKEIN
  690.  
  691. #TYPE - DUAL Claymore (ETHASH + DCR/LBC/PASC/PASL/SC)
  692. ######### DUAL_ETH_DCR    DUAL_ETH_PASC    DUAL_ETH_PASL    DUAL_ETH_LBC    DUAL_ETH_SC
  693. ######### DUAL_ETC_DCR    DUAL_ETC_PASC    DUAL_ETC_PASL    DUAL_ETC_LBC    DUAL_ETC_SC
  694. ######### DUAL_EXP_DCR    DUAL_EXP_PASC    DUAL_EXP_PASL    DUAL_EXP_LBC    DUAL_EXP_SC
  695. ######### DUAL_MUSIC_DCR  DUAL_MUSIC_PASC  DUAL_MUSIC_PASL  DUAL_MUSIC_LBC  DUAL_MUSIC_SC
  696. ######### DUAL_UBQ_DCR    DUAL_UBQ_PASC    DUAL_UBQ_PASL    DUAL_UBQ_LBC    DUAL_UBQ_SC
  697. ######### DUAL_SOIL_DCR   DUAL_SOIL_PASC   DUAL_SOIL_PASL   DUAL_SOIL_LBC   DUAL_SOIL_SC
  698.  
  699. #TYPE - Miningpoolhub Auto Coin Switches based on Algo
  700. ######### MPH_ETHASH  MPH_EQUIHASH
  701.  
  702. #TYPE - Profit Switchers
  703. ######### SALFTER_NICEHASH_PROFIT_SWITCHING
  704. ######### SALFTER_MPH_PROFIT_SWITCHING
  705.  
  706. ### NEW COINS THIS VERSION:
  707.  
  708. ######### BTCZ
  709. ######### SMART
  710. ########################################################################################
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement