Advertisement
RavenCoin

Mining Ravencoin Tutorial

Jan 26th, 2018
806
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.62 KB | None | 0 0
  1. A. Solo Mining
  2. 1. Download Wallet https://github.com/MSFTserver/RavenCoin-Wallet-With-Miners/releases/tag/6.0.
  3.  
  4. then launch Raven-QT, Encrypt wallet(optional), wait for wallet to sync.
  5.  
  6. 2. Start the Miner
  7. On top menu, click "Help" and select "Debug Window". In the new window, select the "Console" tab (We recommend making sure your processor heat sink is free of dust, and you use a temp monitor like http://openhardwaremonitor.org/ to ensure you do not reach temps that could damage your hardware.)
  8.  
  9. Type "setgenerate true X" where X is the number of processor cores you want to mine with, into the console, hit enter.
  10.  
  11. Wait a minute. Then type "getmininginfo" into the console, hit enter. Your current hashspeed will be to the left of "hashespersec" if you've got a value other than 0, you're mining!
  12.  
  13.  
  14. B. Pool Mining
  15. 1. Choose a Pool
  16. there are two pools for Raven at the moment:
  17. https://rvn.suprnova.cc/
  18. STRATUM-URL: stratum+tcp://rvn.suprnova.cc
  19. STRATUM-PORT: 6666
  20. HIGH DIFF PORT: 6667
  21. https://hash4.life/
  22. STRATUM-URL: stratum+tcp://hash4.life
  23. STRATUM-PORT: 3636
  24. Extra Config: -p c=RVN
  25. http://pool.threeeyed.info/
  26. STRATUM-URL: stratum+tcp://pool.threeeyed.info
  27. STRATUM-PORT: 3333
  28.  
  29. 2. Download a Miner
  30. GitHub Repo Containing Everything:
  31. https://github.com/MSFTserver/RavenCoin-Wallet-With-Miners
  32. CPU Windows:
  33. https://github.com/MSFTserver/RavenCoin-Wallet-With-Miners/releases/download/6.0/cpuminer-multi-rvn-windows.zip
  34. CPU Linux (credit Epsylon3):
  35. https://github.com/MSFTserver/RavenCoin-Wallet-With-Miners/releases/download/6.0/cpuminer-multi-rvn-source.zip
  36. GPU Miner COMPLETE:
  37. https://github.com/MSFTserver/RavenCoin-Wallet-With-Miners/releases/download/6.0/ccminer-2.2.5-rvn-windows.zip
  38. (Credit: tpruvot)
  39.  
  40. 3. Configure your miner.
  41. Settings for Stratum (config file)
  42. STRATUM: STRATUM-URL
  43. PORT: XXXX
  44. Username: Weblogin.Worker/Address
  45. Password: Worker Password (optional now)
  46. CPU Miner Command Line
  47. "cpuminer.exe -a x16r -o STRATUM-URL:PORT -u Weblogin.Worker/Address"
  48. GPU Miner Command Line
  49. "ccminer-x64.exe -a x16r -o STRATUM-URL:PORT -u Weblogin.Worker/Address"
  50.  
  51. You then need to change -u Weblogin.Worker/Address and the other options to reflect your pool and your own account or wallet depending on the pool you chose to use. Eg, -u Steve.StevesWorker or -u RUiosfoxnA3aMZqS5F65uiAss5xaDejXpV , if using hash4life you will also need -p c=RVN , Then go to "File => Save as" and save the file as "RVN.bat" in the same folder as the miner. You are now ready to mine, double click on "RVN.bat" to start mining.
  52.  
  53. 4. Create a Raven address to receive payments.
  54. Downloading the client & block chain: https://github.com/MSFTserver/RavenCoin-Wallet-With-Miners/releases/tag/6.0.
  55. Generate a new address and input it on your account page to receive payments.
  56.  
  57. Want to Donate some mining earnings to the Dev Fund?
  58. here is a script to auto switch to a donation address of your choice
  59. currently it is set to mine for you for 1 hours and 5 minutes mining for a alt-address
  60.  
  61. adjust the the setting in User Options to your liking
  62. currently it is set up to donate to our Raven Dev Fund!
  63. please only change the options after the = sign
  64. the times are in Seconds
  65.  
  66. GPU Config:
  67. @echo off
  68. rem || User Options!
  69. set Pool=stratum+tcp://pool.threeeyed.info:3333
  70. set User=your-address
  71. set ExtraOptions=rigname,stats
  72. set YourTime=3600
  73. set DonationTime=300
  74. set DonationAddress=RT2r9oGxQxbVE1Ji5p5iPgrqpNQLfc8ksH
  75. :Start
  76. ccminer-x64.exe -a x16r -o %Pool% -u %User% -p %ExtraOptions% --time-limit %YourTime%
  77. ping localhost -n 2 >nul
  78. ccminer-x64.exe -a x16r -o %Pool% -u %DonationAddress% -p %ExtraOptions% --time-limit %DonationTime%
  79. goto Start
  80. @pause
  81.  
  82. CPU Config:
  83. @echo off
  84. rem || User Options!
  85. set Pool=stratum+tcp://pool.threeeyed.info:3333
  86. set User=your-address
  87. set Threads=Number-of-Threads
  88. set ExtraOptions=rigname,stats
  89. set YourTime=3600
  90. set DonationTime=300
  91. set DonationAddress=RT2r9oGxQxbVE1Ji5p5iPgrqpNQLfc8ksH
  92. :Start
  93. cpuminer.exe -a x16r -o %Pool% -u %User% -t %Threads% -p %ExtraOptions% --time-limit %YourTime%
  94. ping localhost -n 2 >nul
  95. cpuminer.exe -a x16r -o %Pool% -u %DonationAddress% -t %Threads% -p %ExtraOptions% --time-limit %DonationTime%
  96. goto Start
  97. @pause
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement