Advertisement
milobo

1bash

Jan 19th, 2018
255
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 21.65 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/crkWaVKN"
  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="ZEC"
  24.  
  25. #######################################################################################
  26. #           WebGui Settings -- This is not ready yet --
  27. #######################################################################################
  28. # Edit this section with your "DOMAINHERE" information to control your rig
  29. USE_WEBGUI="YES"    # This is to control your rig via a web control panel at "DOMAINHERE"
  30.  
  31. USERNAME="milobo198" # This is the username you created at "DOMAINHERE"
  32.  
  33. RIGNAME="milobo"    # This is the rigname you provided at "DOMAINHERE"
  34.  
  35. #######################################################################################
  36. #           What to mine auto switcher settings.
  37. #######################################################################################
  38. WTM_AUTO_SWITCH="NO"  #( whattomine.com switcher)
  39.  
  40. WTM_PROFIT_CHECK="NO" # whattomine.com Profit check for webinfo
  41.  
  42. # note!! all selected COINS must HAVE ADDRESSES below (no need address if switch=no and profit=yes )
  43. # 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
  44.  
  45. WTM_AUTO_SWITCH_COINS="BTG;ZEC;MONA;ZEN;XVG" ### coins to check profit or make the switch with format "ZEC;ETH;ETC;XMR"
  46.  
  47. WTM_AUTO_SWITCH_SYNC_INTERVAL="2" # Time to sync with WTM for best coin
  48.  
  49. WTM_PROFIT_CHECK_INTERVAL="1" # Interval between checking profit for web info
  50.  
  51. WTM_MIN_DIFFERENCE="20" # Mininumum difference in percent when switch to new coin, to prevent too many switches.
  52.  
  53. 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
  54.  
  55. #Read below for how to change the url
  56. 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"
  57.  
  58. ## Go to [ https://whattomine.com/coins ] select your cards, hash rate, power, algos, exchanges, ...
  59. # Set "Sort by" and Difficulty for Revenue" to "Current profit" and "Current difficulty" ... "Average last ***" are not good for auto switch.
  60. # Click calculate, and wait for page to load, copy the new url and add .json to /coins at the beginning of the url.
  61. # like this " https://whattomine.com/coins.json?utf8=✓&adapt....."
  62. # Above url is for 6x1060
  63. #######################################################################################
  64. #           KEEP ALIVE SETTINGS
  65. #######################################################################################
  66. # TEMPERATURE CONTROL KEEPS EVERYTHING RUNNING COOL
  67. TEMPERATURE_CONTROL="YES" ###### THIS IS TEMPERATURE CONTROL WILL SET FANS AND POWER TO
  68. #KEEP DESIRED TEMPERATURE
  69.  
  70. WATCHDOG="YES" ##### WATCHDOG IS MEANT TO KEEP THE SYSTEM RUNNING
  71.  
  72. #######################################################################################
  73. #           REMOTE - LOCAL SETTINGS
  74. #######################################################################################
  75. # LOCAL will attach the mining process to the gnome or guake terminal
  76. # REMOTE will leave it unattached / ready for SSH
  77. LOCALorREMOTE="LOCAL"          # LOCAL  or  REMOTE
  78.  
  79. # Select if you want the miner on a seperate window
  80. # This is good for troubleshooting because you get to close the terminal and the miner wont close
  81. # Remember to kill the miner select the window and press ctrl+c closing the window will not close miner.
  82. DualWindows="YES"
  83.  
  84. TEAMVIEWER="YES"                 # YES NO
  85.  
  86. SSH="YES"                       # YES NO
  87. #######################################################################################
  88. #           MANUAL POWER LIMIT AND OVERCLOCK SETTINGS
  89. #######################################################################################
  90. POWERLIMIT="NO"                 # YES NO
  91.     #set this in watts as the maximum power your card can use numerical value
  92.     #you can also set this to MAX to run cards at maximum power
  93.     POWERLIMIT_WATTS=150
  94.  
  95. #These are global overclocks set individual overclocks in 1oc to NO and AUTOMATIC_OVERCLOCK to no for this to work 
  96. __CORE_OVERCLOCK=0
  97. MEMORY_OVERCLOCK=0
  98.  
  99. #This is to run the fans at one speed and one speed only
  100. MANUAL_FAN="NO"                 # YES NO
  101.  
  102.     FAN_SPEED=75            # Set fan speed if MANUAL_FAN="YES"
  103. #######################################################################################
  104. #               GLOBAL WORKER NAME
  105. #######################################################################################
  106. # GLOBAL_WORKERNAME will use a single worker name for all coins
  107. GLOBAL_WORKERNAME="YES"         # YES NO
  108.  
  109.     # HOST will use the rigs host address <-- GOOD FOR REMOTE BASHING MULTIPLE RIGS
  110.     # MAC will use the rigs NIC's MAC address
  111.     # CUSTOM will use your own
  112.     #   AUTO_WORKERNAME="HOST"         # HOST  or  MAC  or  CUSTOM
  113.     AUTO_WORKERNAME="CUSTOM"         # HOST  or  MAC  or  CUSTOM
  114.  
  115.     # if AUTO_WORKERNAME="CUSTOM" Set your workername here
  116.     # for nanopool use workername/email
  117.     CUSTOM_WORKERNAME="milobo"
  118.  
  119. #######################################################################################
  120. #               AUTO UPDATE SECTION
  121. #######################################################################################
  122.  
  123. # Would you like to auto update?
  124. DO_UPDATES="YES"
  125.  
  126. # If yes what types of updates BETA or STABLE?
  127. DO_UPDATETYPE="STABLE"
  128.  
  129. #######################################################################################
  130. #                 TELEGRAM SECTION - I HIGHLY RECOMMEND THIS!
  131. #######################################################################################
  132. # This is a simple tutorial to get you started. It will show you  https://youtu.be/HS7Q1zH00bs
  133. # https://youtu.be/HS7Q1zH00bs
  134. # If you set telegram to "NO" but add CHATID and API, you will only get notifications from the system.
  135. # Activating this will alert you if your Watchdog restarted your miner of if it has restarted the system.
  136. # It will also inform you of current stats if your turn telegram_alerts to "YES"
  137. TELEGRAM_ALERTS="YES"           # Activating this will alert you periodically of how your system is performing.
  138. TELEGRAM_TIMEOUT_IN_MINUTES=60  # This is how often it will alert you.
  139. TELEGRAM_NAME="PXA TELEGRAM"    # This is what your telegram name will be to identify your miner/group.
  140. TELEGRAM_MINERRESTARTS="YES"    # This will notify you of miner software restarts by Watchdog.
  141. TELEGRAM_SYSTEMRESTARTS="YES"   # This will notify you of system restarts by Watchdog.
  142. TELEGRAM_CHATID="458998744"
  143. TELEGRAM_APIKEY="AAFJzU-LW0vabGy8bX2LeTP50wCXZoFtNw"                                  
  144. #######################################################################################
  145. # Mine XMR with CPU
  146. plusCPU="NO"    # YES NO
  147. threadCOUNT="1"  # Number of threads for plusCPU: varies per CPU
  148.  
  149. ### REBOOT SELECTION YES - NO  IF YOU WANT A PERIODIC RIG REBOOT
  150. AUTO_REBOOT="NO"
  151. REBOOT_TIMEOUT_IN_MINUTES=2880  # once every 48 hours
  152. ### HEADLESS SELECTION YES - NO
  153. P106_100_FULL_HEADLESS_MODE="NO"
  154. ### Donation to continue the project. Donation is less than 1% of mining in 24hr
  155. donate="NO"
  156. #######################################################################################
  157. # TEMPERATURE_CONTROL
  158. #######################################################################################
  159. # 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.
  160.  
  161. TARGET_TEMP=69
  162.  
  163. __FAN_ADJUST=5      # Adjustment size in percent
  164.  
  165. POWER_ADJUST=5     # Adjustment size in watts
  166.  
  167. # Difference in actual temperature allowed before action:  Works only if current is BELOW target temp
  168.  
  169. ALLOWED_TEMP_DIFF=3
  170.  
  171. # Restore original power limit if fan speed is lower than this percentage
  172.  
  173. RESTORE_POWER_LIMIT=90
  174.  
  175. # lowest fan speed that will be used
  176.  
  177. MINIMAL_FAN_SPEED=50
  178.  
  179. ########################################################################################
  180. # Set for automatic overclocks. May not work for certain algos
  181. # make sure you adjust your temps to maximum level that trigger autotemps
  182. # or this may not work if this crashes your system turn it off
  183. AUTOMATIC_OVERCLOCK="YES"
  184. # to edit settings for overclocks edit 1oc file
  185. #
  186. #This option will share your overclock information with a database to help optimize overclocks for specific graphics cards.
  187. SHARE_OC_INFO="YES"
  188. ########################################################################################
  189. #                               Dont Touch Below Here Please
  190. ########################################################################################
  191. IPW=$(ifconfig | sed -En 's/127.0.0.1//;s/.*inet (addr:)?(([0-9]*\.){3}[0-9]*).*/\2/p')
  192. IP_AS_WORKER=$(echo -n $IPW | tail -c -3 | sed 'y/./0/')
  193. MAC=$(ifconfig -a | grep -Po 'HWaddr \K.*$')
  194. MAC_AS_WORKER=$(echo -n $MAC | sed 'y/:/_/')
  195. if [ $GLOBAL_WORKERNAME == "YES" ]
  196. then
  197. if [ $AUTO_WORKERNAME == "HOST" ]
  198. then
  199. WORKERNAME=$IP_AS_WORKER
  200. fi
  201. if [ $AUTO_WORKERNAME == "MAC" ]
  202. then
  203. WORKERNAME=$MAC_AS_WORKER
  204. fi
  205. if [ $AUTO_WORKERNAME == "CUSTOM" ]
  206. then
  207. WORKERNAME=$CUSTOM_WORKERNAME
  208. fi
  209. fi
  210. ########################################################################################
  211. #                               Dont Touch Above Here Please
  212. ########################################################################################
  213.  
  214. ########################################################################################
  215.  
  216. # set YOUR ADDRESSES, WORKERS, POOL, INTENSITY and PORT:
  217. BTC_ADDRESS="replace_with_your_BTC_address"
  218.  
  219. # Set the miner password
  220. MINER_PWD="x"
  221.  
  222. ZM_or_EWBF="ZM"  # choose  ZM  or  EWBF
  223.  
  224. #DSTM ZM  Miner optional arguments add "--telemetry=$IPW:42000" if you want web info
  225. ZM_OPTS="--telemetry=$IPW:42000"
  226.  
  227. #EWBF ZEC Miner version
  228. EWBF_VERSION="3_4" # choose 3_3  or  3_4
  229. #EWBF ZEC Miner optional arguments. add "--api $IPW:42000" if you want web info
  230. EWBF_OPTS="--api $IPW:42000"
  231. # change EWBF_PERCENT to alter donation percent for EWBF Miner
  232. EWBF_PERCENT="0"
  233. ###############################################
  234. # AUTO ALGO OR MANUAL ALGO SECTION
  235. # Select if to if you want to use auto algo intensity. YES - NO
  236. AUTO_ALGO="YES"
  237. # Select how aggressive the intensity should be. SAFE - LITE - MED - HIGH - BRUTAL
  238. ALGO_I="MED"
  239. # if auto algo is set to NO select algo intensity below
  240. ALGOI="21"
  241. # if using manual algo, reboot your rig to take effect
  242. ###############################################
  243.  
  244. #ZCash
  245. ZEC_WORKER=$WORKERNAME
  246. ZEC_ADDRESS="t1cjdPNVE73MkarjhiWMdBxq8NL3UqMfR4q"
  247. ZEC_POOL="zec-us-east1.nanopool.org"
  248. ZEC_PORT="6666"
  249.  
  250. #BTG
  251. BTG_WORKER=$WORKERNAME
  252. BTG_ADDRESS="poisonxa"
  253. BTG_POOL="btg.suprnova.cc"
  254. BTG_PORT="8816"
  255.  
  256. #MNX
  257. MNX_WORKER=$WORKERNAME
  258. MNX_ADDRESS="MNX address"
  259. MNX_POOL="eu.minexpool.nl"
  260. MNX_PORT="9999"
  261.  
  262. #ZClassic
  263. ZCL_WORKER=$WORKERNAME
  264. ZCL_ADDRESS="replace_with_your_ZCL_address"
  265. ZCL_POOL="us.zclmine.pro"
  266. ZCL_PORT="9009"
  267.  
  268. #For Nice Equihash
  269. NICE_EQUIHASH_WORKER=$WORKERNAME
  270. NICE_EQUIHASH_ADDRESS=$BTC_ADDRESS
  271. NICE_EQUIHASH_POOL="equihash.usa.nicehash.com"
  272. NICE_EQUIHASH_PORT="3357"
  273.  
  274. #KMD
  275. KMD_WORKER=$WORKERNAME
  276. KMD_ADDRESS="replace_with_your_KMD_address"
  277. KMD_POOL="luckpool.org"
  278. KMD_PORT="3857"
  279.  
  280. #ZEN
  281. ZEN_WORKER=$WORKERNAME
  282. ZEN_ADDRESS="poisonxa"
  283. ZEN_POOL="zen.suprnova.cc"
  284. ZEN_PORT="3618"
  285.  
  286. #BTX
  287. BTX_WORKER="yourSuprNovaWorker"
  288. BTX_ADDRESS="yourSuprNovaLogin"
  289. BTX_POOL="stratum+tcp://btx.suprnova.cc:3629"
  290. BTX_INTENSITY="21"
  291.  
  292. #ZDASH or HUSH
  293. HUSH_WORKER=$WORKERNAME
  294. HUSH_ADDRESS="replace_with_your_HUSH_address"
  295. HUSH_POOL="luckpool.org"
  296. HUSH_PORT="3757"
  297.  
  298. #XZC or ZCOIN
  299. ZCOIN_WORKER="Your Miningpoolhub Worker Name"
  300. ZCOIN_ADDRESS="replace_with_your_miningpoolhub_account login name"
  301. ZCOIN_POOL="us-east.lyra2z-hub.miningpoolhub.com:20581"
  302.  
  303. #ETN
  304. ETN_WORKER=$WORKERNAME
  305. ETN_ADDRESS="yourETNAddress"
  306. ETN_POOL="STRATUM/POOL:PORT"
  307.  
  308. #KRB
  309. KRB_WORKER=$WORKERNAME
  310. KRB_ADDRESS="replace_with_your_KRB_address"
  311. KRB_POOL="stratum+tcp://krb.sberex.com:5555"
  312.  
  313. #SIB
  314. SIB_WORKER="Your Suprnova Worker name"
  315. SIB_ADDRESS="Your Suprnova Account name"
  316. SIB_POOL="stratum+tcp://sib.suprnova.cc:3458"
  317. SIB_INTENSITY="21"
  318.  
  319. #PXC
  320. PXC_WORKER="$WORKERNAME"
  321. PXC_ADDRESS="replace_with_your_GRS_address"
  322. PXC_POOL="stratum+tcp://atlas.phoenixcoin.org:10554"
  323. PXC_INTENSITY="23"
  324.  
  325. # ZPOOL_SKUNK HERE
  326. SKUNK_AUTOCONVERT_TO_BTC="YES"        #YES  NO
  327. SKUNK_WORKER="$WORKERNAME"
  328. SKUNK_ADDRESS=$BTC_ADDRESS
  329. SKUNK_POOL="stratum+tcp://skunk.mine.zpool.ca:8433"
  330. SKUNK_INTENSITY="22"
  331.  
  332. #ALTCOM
  333. ALTCOM_WORKER="$WORKERNAME"
  334. ALTCOM_ADDRESS="replace_with_your_ALTCOM_address"
  335. ALTCOM_POOL="STRATUM:ALTCOM POOL:PORT"
  336.  
  337. # Used to add worker name on ZPOOL
  338. ZPOOLPASS="$WORKERNAME,c=btc"
  339.  
  340. # ZPOOL uses your BTC_ADDRESS
  341. ZPOOL_LYRA2V2_POOL="stratum+tcp://lyra2v2.mine.zpool.ca:4533"
  342. ZPOOL_LYRA2V2_INTENSITY="22"
  343.  
  344. # ZPOOL uses your BTC_ADDRESS
  345. ZPOOL_BLAKE2S_POOL="stratum+tcp://blake2s.mine.zpool.ca:5766"
  346. ZPOOL_BLAKE2S_INTENSITY="21"
  347.  
  348. # ZPOOL uses your BTC_ADDRESS
  349. ZPOOL_EQUIHASH_POOL="equihash.mine.zpool.ca"
  350. ZPOOL_EQUIHASH_PORT="2142"
  351.  
  352. # ZPOOL uses your BTC_ADDRESS
  353. ZPOOL_LBRY_POOL="stratum+tcp://lbc.mine.zpool.ca:3334"
  354. ZPOOL_LBRY_INTENSITY="23"
  355.  
  356. # ZPOOL uses your BTC_ADDRESS
  357. ZPOOL_NEOSCRYPT_POOL="stratum+tcp://neoscrypt.mine.zpool.ca:4233"
  358. ZPOOL_NEOSCRYPT_INTENSITY="22"
  359.  
  360. # ZPOOL uses your BTC_ADDRESS
  361. ZPOOL_SKEIN_POOL="stratum+tcp://skein.mine.zpool.ca:4933"
  362. ZPOOL_SKEIN_INTENSITY="22"
  363.  
  364. #MPH_EQUIHASH
  365. MPH_WORKER="Your Miningpoolhub Worker Name"
  366. MPH_ADDRESS="Your Miningpoolhub account name"
  367. MPH_EQUIHASH_POOL="us-east.equihash-hub.miningpoolhub.com"
  368. MPH_EQUIHASH_PORT="20570"
  369.  
  370. #MPH_ETHASH
  371. MPH_WORKER="Your Miningpoolhub Worker Name"
  372. MPH_ADDRESS="Your Miningpoolhub account name"
  373. MPH_ETHASH_POOL="us-east.ethash-hub.miningpoolhub.com:17020"
  374.  
  375. #PIRL
  376. PIRL_WORKER=$WORKERNAME
  377. PIRL_ADDRESS="ENTER PIRL ADDRESS"
  378. PIRL_POOL="pirl.pool.sexy:6006"
  379.  
  380. #GRS
  381. GRS_WORKER=$WORKERNAME
  382. GRS_ADDRESS="replace_with_your_GRS_address"
  383. GRS_POOL="stratum+tcp://moria.dwarfpool.com:3345"
  384. GRS_INTENSITY="23"
  385.  
  386. #XMY
  387. XMY_WORKER=$WORKERNAME
  388. XMY_ADDRESS="Your Miningpoolhub Account Name"
  389. XMY_POOL="stratum+tcp://us-east1.myriadcoin-groestl.miningpoolhub.com:20479"
  390. XMY_INTENSITY="23"
  391.  
  392. #MONA
  393. MONA_WORKER=$WORKERNAME
  394. MONA_ADDRESS="poisonxa"
  395. MONA_POOL="mona.suprnova.cc"
  396. MONA_PORT="2995"
  397.  
  398. #XVG
  399. XVG_WORKER=$WORKERNAME
  400. XVG_ADDRESS="DA2TmgUdVmWJxgLwgCiwPAUiADritpn9ge"
  401. XVG_POOL="stratum+tcp://yiimp.eu:3737"
  402. # PASSWORD = SYMBOL
  403. XVG_PASSWORD="c=XVG"
  404.  
  405. #XLR
  406. XLR_WORKER=$WORKERNAME
  407. XLR_ADDRESS="replace_with_your_CRC_address"
  408. XLR_POOL="stratum+tcp://lycheebit.com:3739"
  409. # PASSWORD = SYMBOL
  410. XLR_PASSWORD="c=XLR_XEVAN"
  411.  
  412. #CRC
  413. CRC_WORKER=$WORKERNAME
  414. CRC_ADDRESS="replace_with_your_CRC_address"
  415. CRC_POOL="stratum+tcp://eu1.altminer.net:10004"
  416. # PASSWORD = SYMBOL
  417. CRC_PASSWORD="c=CRC"
  418.  
  419. #LUX
  420. LUX_WORKER=$WORKERNAME
  421. LUX_ADDRESS="LbULxgii5CVdqQ9U1dvhnkZkBfu99hMm8F"
  422. LUX_POOL="stratum+tcp://yiimp.eu:8333"
  423.  
  424. #BTC
  425. VTC_AUTOCONVERT_TO_BTC="NO"        #YES  NO
  426. VTC_WORKER="Your Miningpoolhub Worker Name"
  427. VTC_ADDRESS="Your Miningpoolhub Account Name"
  428. VTC_POOL="stratum+tcp://hub.miningpoolhub.com:20507"
  429.  
  430. #TZC
  431. TZC_WORKER="$WORKERNAME"
  432. TZC_ADDRESS="TZC ADDRESS"
  433. TZC_POOL="stratum+tcp://POOL:PORT"
  434.  
  435. # NICE_ETHASH autoconverts to BTC: ensure you update BTC_ADDRESS if you use NICE_ETHASH
  436. NICE_ETHASH_WORKER="$WORKERNAME"
  437. NICE_ETHASH_POOL="stratum+tcp://daggerhashimoto.usa.nicehash.com:3353"
  438. GENOIL_NICE_ETHASH_POOL="daggerhashimoto.usa.nicehash.com:3353"
  439. NICE_ETHASH_EXTENSION_ARGUMENTS=""   # add any additional claymore arguments desired here
  440.  
  441. # if YES ensure you update BTC_ADDRESS
  442. DGB_AUTOCONVERT_TO_BTC="NO"        #YES  NO
  443. DGB_INTENSITY="24"
  444. DGB_WORKER="Your Miningpoolhub Worker Name"
  445. DGB_ADDRESS="Your Miningpoolhub Account Name"
  446. DGB_POOL="stratum+tcp://hub.miningpoolhub.com:20527"
  447.  
  448. #LBC
  449. LBC_WORKER="Your Suprnova Worker name"
  450. LBC_ADDRESS="Your Suprnova Account name"
  451. LBC_POOL="stratum+tcp://lbry.suprnova.cc:6256"
  452. LBC_INTENSITY="23"
  453.  
  454. #FTC
  455. FTC_WORKER="Your Miningpoolhub Worker Name"
  456. FTC_ADDRESS="Your Miningpoolhub Account Name"
  457. FTC_POOL="stratum+tcp://hub.miningpoolhub.com:20510"
  458. FTC_INTENSITY="23"
  459.  
  460. #ORB
  461. ORB_WORKER="Your DNB Worker Name"
  462. ORB_ADDRESS="Your DNB Account Name"
  463. ORB_POOL="stratum+tcp://strat.dnb.io:3031"
  464.  
  465. #VIVO
  466. VIVO_WORKER="$WORKERNAME"
  467. VIVO_ADDRESS="VIVO ADDRESS"
  468. VIVO_POOL="stratum+tcp://VIVOPOOL:PORT"
  469.  
  470. #ONION
  471. ONION_ADDRESS="replace_with_your_ONION_address"
  472. ONION_POOL="stratum+tcp://kawaiipool.party:3633"
  473.  
  474. ####################################################################################################################
  475. USE_ENVIRONMENTAL_VARIBLES="NO"   #YES  NO
  476. # NOTE DEFAULT CHANGED FROM SLASH to DOT
  477. DOT_POOL_FORMAT_or_FORWARD_SLASH_POOL_FORMAT="DOT"    # DOT  or  SLASH    # formerly ETHERMINEdotORG
  478.  
  479. CLAYMORE_VERSION="10_2"    # choose 10_2 10_0  or  9_8  or  9_7  or  9_5  or  9_4  or  8_0
  480.  
  481. ETHMINER_or_GENOIL_or_CLAYMORE="CLAYMORE"  # choose  ETHMINER  or  GENOIL  or  CLAYMORE
  482.  
  483.  
  484. ETH_WORKER=$WORKERNAME
  485. # replace_with_your_ETH_address
  486. ETH_ADDRESS="0x4dcA66d28328dbd65cb701661B2984AC6d43d642"    
  487. # NOTE DEFAULT ETH POOL CHANGED TO ETHERMINE.ORG
  488. ETH_POOL="us2.ethermine.org:4444"
  489. ETH_EXTENSION_ARGUMENTS=""    # add any additional claymore arguments desired here
  490.  
  491. ETC_WORKER=$WORKERNAME
  492. ETC_ADDRESS="replace_with_your_ETC_address"
  493. # NOTE DEFAULT ETC POOL CHANGED TO ETHERMINE.ORG
  494. ETC_POOL="us1-etc.ethermine.org:4444"
  495. ETC_EXTENSION_ARGUMENTS=""    # add any additional claymore arguments desired here
  496.  
  497. EXP_WORKER=$WORKERNAME
  498. EXP_ADDRESS="replace_with_your_EXP_address"
  499. EXP_POOL="exp-us.dwarfpool.com:81"
  500. EXP_EXTENSION_ARGUMENTS=""   # add any additional claymore arguments desired here
  501.  
  502. UBQ_WORKER=$WORKERNAME
  503. UBQ_ADDRESS="replace_with_your_UBIQ_address"
  504. UBQ_POOL="stratum+tcp://us.ubiqpool.io:8008"
  505. UBQ_EXTENSION_ARGUMENTS=""
  506.  
  507. MUSIC_WORKER=$WORKERNAME
  508. MUSIC_ADDRESS="replace_with_your_MUSIC_address"
  509. MUSIC_POOL="eus.gmc.epool.io:8008"
  510. MUSIC_EXTENSION_ARGUMENTS=""
  511.  
  512. SOIL_WORKER=$WORKERNAME
  513. SOIL_ADDRESS="replace_with_your_SOIL_address"
  514. SOIL_POOL="stratum+tcp://soil.pool.sexy:9009"
  515. SOIL_EXTENSION_ARGUMENTS=""
  516.  
  517. DUAL_WORKER=$WORKERNAME
  518. DUAL_BTC_ADDRESS=$BTC_ADDRESS
  519. DUAL_ETHASH_POOL="stratum+tcp://daggerhashimoto.usa.nicehash.com:3353"
  520. DUAL_DCR_POOL="stratum+tcp://decred.usa.nicehash.com:3354"
  521. DUAL_EXTENSION_ARGUMENTS="-dcri 40"
  522.  
  523. SC_WORKER=$WORKERNAME
  524. SC_ADDRESS="replace_with_your_SIA_address"
  525. SC_POOL="sia-us-east1.nanopool.org:7777"
  526. SC_GW_POOL="sia-us-east1.nanopool.org:9980"
  527.  
  528. DCR_WORKER=$WORKERNAME
  529. DCR_ADDRESS="replace_with_your_DCR_address"
  530. DCR_POOL="stratum+tcp://yiimp.eu:3252"
  531.  
  532. PASC_WORKER=$WORKERNAME
  533. PASC_ADDRESS="replace_with_your_PASC_ACCOUNT"
  534. PASC_POOL="pasc-us-east1.nanopool.org:15555"
  535.  
  536. PASL_WORKER=$WORKERNAME
  537. PASL_ADDRESS="replace_with_your_PASL_ACCOUNT"
  538. PASL_POOL="stratum+tcp://mine.pasl.fairpool.xyz:4009"
  539.  
  540. # XMR : if plusCPU is "YES" replace with your XMR info  ##
  541. XMR_WORKER=$WORKERNAME
  542. XMR_ADDRESS="poisonxa"
  543. XMR_POOL="us-east.cryptonight-hub.miningpoolhub.com"
  544. XMR_PORT="20580"
  545.  
  546. BTCZ_WORKER="yourSuprnovaWorkerName"
  547. BTCZ_ADDRESS="yourSuprnovaLoginName"
  548. BTCZ_POOL="btcz.suprnova.cc"
  549. BTCZ_PORT="5586"
  550.  
  551. SMART_WORKER="yourWorkerName"
  552. SMART_ADDRESS="yourPoolLoginName"
  553. SMART_POOL="stratum+tcp://pool-eu.smartcash.cc:3333"
  554. SMART_INTENSITY="25"
  555.  
  556.  
  557. fi
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement