Bitcoin Forum
April 19, 2024, 08:37:33 PM *
News: Latest Bitcoin Core release: 26.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: [1]
  Print  
Author Topic: my experience zcash mining  (Read 2006 times)
nerdralph (OP)
Sr. Member
****
Offline Offline

Activity: 588
Merit: 251


View Profile
October 29, 2016, 07:16:18 PM
 #1

I include a calculator I wrote in python, which shows that ZEC mining is more profitable than ETH (at least for now).
http://nerdralph.blogspot.ca/2016/10/zcash-mining.html
"If you don't want people to know you're a scumbag then don't be a scumbag." -- margaritahuyan
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1713559053
Hero Member
*
Offline Offline

Posts: 1713559053

View Profile Personal Message (Offline)

Ignore
1713559053
Reply with quote  #2

1713559053
Report to moderator
1713559053
Hero Member
*
Offline Offline

Posts: 1713559053

View Profile Personal Message (Offline)

Ignore
1713559053
Reply with quote  #2

1713559053
Report to moderator
molitar
Sr. Member
****
Offline Offline

Activity: 322
Merit: 250


View Profile
October 29, 2016, 08:39:29 PM
 #2

I took a look but not sure what to put for arg 2.  BTW some python script errors at least to the latest version of Python. I had to fix the () that were missing.

Code:
#!/usr/bin/python
# arg1 = current block number
# arg2 = current network rate in thousands of solutions per second
# arg2 = your solution rate

BLOCKS_PER_DAY = 576*10                 # 2.5 minute block time
RAMP_BLOCKS = 20000                     # mining slow start

import sys

block = int(sys.argv[1])
net_rate_k = int(sys.argv[2])
your_rate = int(sys.argv[3])

daily = int(BLOCKS_PER_DAY * block/RAMP_BLOCKS)
print ('Daily ramped mining reward in blocks:', daily)
your_share = (your_rate/(net_rate_k * 1000.0) * daily)
print ('Your estimated earnings:', your_share)

Argument two I was not sure what to put also the sol rate had to be no decimal values.

Arg #1: 1150  (Chain Height)
Arg #2: 1975894 Sol/s   (What value do I use for the Network Hash Rate when you say in thousands?  Is it 1975?)
Arg #3: 54.7  (have to use non decimal so used 54 Sol/s)

zec.py 1146 2019 54
Daily ramped mining reward in blocks: 330
Your estimated earnings: 0.008826151560178307

Did I get that right?
nerdralph (OP)
Sr. Member
****
Offline Offline

Activity: 588
Merit: 251


View Profile
October 29, 2016, 09:22:52 PM
 #3

I took a look but not sure what to put for arg 2.  BTW some python script errors at least to the latest version of Python. I had to fix the () that were missing.

zec.py 1146 2019 54
Daily ramped mining reward in blocks: 330
Your estimated earnings: 0.008826151560178307

Did I get that right?

I updated the script to specify python2.  I guess your system defaults to 3.

You have the arguments correct.  With the numbers as of block 1173 your estimate is .008496
./zec.py 1173 2142 54
Daily ramped mining reward in blocks: 337
Your estimated earnings: 0.00849579831933
nerdralph (OP)
Sr. Member
****
Offline Offline

Activity: 588
Merit: 251


View Profile
October 30, 2016, 03:14:46 PM
 #4

Coinsforall is still having stability problems, and now 1 ZEC is worth about 1.2 BTC.  Therefore I've switched back to eth mining for all my cards except one Rx 470.  With Genoil's ZECminer I'm getting about 26 sol/s.  I started using zcash.miningpoolhub.com, and after an hour of mining the pool has been stable.  Reported hashrate on the pool is about 12H/s, or half the solution rate as expected.
ps_jb
Hero Member
*****
Offline Offline

Activity: 742
Merit: 500


View Profile
October 30, 2016, 04:30:47 PM
 #5

It is less profitable right now 10.30am (MT)
risinqsun
Sr. Member
****
Offline Offline

Activity: 672
Merit: 273

-


View Profile
October 30, 2016, 04:32:46 PM
 #6

Coinsforall is still having stability problems, and now 1 ZEC is worth about 1.2 BTC.  Therefore I've switched back to eth mining for all my cards except one Rx 470.  With Genoil's ZECminer I'm getting about 26 sol/s.  I started using zcash.miningpoolhub.com, and after an hour of mining the pool has been stable.  Reported hashrate on the pool is about 12H/s, or half the solution rate as expected.

[/quote

Good job for 26 sol/s. I' m getting 22 sol/s Sad
nerdralph (OP)
Sr. Member
****
Offline Offline

Activity: 588
Merit: 251


View Profile
October 30, 2016, 08:31:58 PM
 #7

Good job for 26 sol/s. I' m getting 22 sol/s Sad

Running 1250/1850 with custom BIOS mod for faster memory timing.
nerdralph (OP)
Sr. Member
****
Offline Offline

Activity: 588
Merit: 251


View Profile
November 01, 2016, 09:45:21 PM
 #8

Now running zogminer under Linux, using MPH.
https://github.com/nginnever/zogminer
zogminer is a huge pig of a program, and needs one instance run per GPU, but it seems stable and gets decent performance (based on silentarmy kernel I think).
If you use MPH, you must use a worker name, i.e. -user=nerdralph.rig1  Otherwise you'll get a stratum auth error.

monsanto
Legendary
*
Offline Offline

Activity: 1241
Merit: 1005


..like bright metal on a sullen ground.


View Profile
November 01, 2016, 10:03:07 PM
 #9

Now running zogminer under Linux, using MPH.
https://github.com/nginnever/zogminer
zogminer is a huge pig of a program, and needs one instance run per GPU, but it seems stable and gets decent performance (based on silentarmy kernel I think).
If you use MPH, you must use a worker name, i.e. -user=nerdralph.rig1  Otherwise you'll get a stratum auth error.



Hmm.. I might give that a try on my Linux rig.  What pool(s) can you use with zogminer? Can you solo mine with it? My biggest problem with the coinsforall.io miner is that my gpus start crashing after less than 30 minutes usually. 

Kind of ironic that after all the complaints about a Linux only launch it looks like Windows users have a lot more mining options than Linux users.
Lafu
Legendary
*
Online Online

Activity: 2954
Merit: 3033



View Profile
November 01, 2016, 10:24:42 PM
 #10

Best solutions on nicehash!  First on sell my power!  second on the zec nicehash pool fast payout and no Problem with the miner!

ocminer
Legendary
*
Offline Offline

Activity: 2660
Merit: 1240



View Profile WWW
November 02, 2016, 12:04:53 AM
 #11

Zogminer works fine on https://zec.suprnova.cc too

suprnova pools - reliable mining pools - #suprnova on freenet
https://www.suprnova.cc - FOLLOW us @ Twitter ! twitter.com/SuprnovaPools
molitar
Sr. Member
****
Offline Offline

Activity: 322
Merit: 250


View Profile
November 02, 2016, 05:14:46 AM
 #12

Zogminer works fine on https://zec.suprnova.cc too

Thanks for this tip. How does it perform compared to genoil? 
bobben2
Full Member
***
Offline Offline

Activity: 279
Merit: 104


View Profile
November 02, 2016, 05:46:37 AM
 #13

Tried zogminer and it crashes after a while.    The miner either just stops or it segfaults.
One miner instance per gpu.   Mining at flypool.  This pool might have an issue?
So far havent tried other pools with this miner.

Fellow miners, get your thens and thans in order and help other forum readers understand what you are writing. Remember the grammar basics:  B larger THAN A (comparator operator). If something THEN ....
nerdralph (OP)
Sr. Member
****
Offline Offline

Activity: 588
Merit: 251


View Profile
November 02, 2016, 08:30:33 AM
 #14

Tried zogminer and it crashes after a while.    The miner either just stops or it segfaults.
One miner instance per gpu.   Mining at flypool.  This pool might have an issue?
So far havent tried other pools with this miner.

I had one of 6 instances hang overnight, probably because I've overclocked/undervolted that card too much for zcash mining (even though it was fine for eth).
If every instance on a rig hangs/crashes, I'd suspect the pool instead.
nerdralph (OP)
Sr. Member
****
Offline Offline

Activity: 588
Merit: 251


View Profile
November 02, 2016, 08:39:28 AM
 #15

For those not fluent in sh:

Code:
#!/bin/sh
# launch script for zogminer - Nerd Ralph 2016 public domain
for i in 0 1 2 3 4 5
do
  src/zcash-miner -G -S=$i -stratum="stratum+tcp://us-east1.zcash.miningpoolhub.com:20570" -user=nerdralph.rig > zec$i &
  sleep 1
done
ImHash
Hero Member
*****
Offline Offline

Activity: 924
Merit: 506


View Profile
November 02, 2016, 08:49:24 AM
 #16

Well from what I see zcash is too much volatile and the price isn't stable what so ever, so why someone wants to mine such a coin where difficulty is determined by the price?
Tmdz
Hero Member
*****
Offline Offline

Activity: 1008
Merit: 1000


View Profile
November 02, 2016, 12:57:23 PM
 #17

Well from what I see zcash is too much volatile and the price isn't stable what so ever, so why someone wants to mine such a coin where difficulty is determined by the price?

That's econ 101

More profit more people.
nerdralph (OP)
Sr. Member
****
Offline Offline

Activity: 588
Merit: 251


View Profile
November 02, 2016, 01:45:35 PM
 #18

Marc tweaked his silentarmy kernel yesterday, and the change was merged into zogminer a few hours ago.
I'm seing a minor improvement in the miner.  pun intended :-)
BTCBusinessConsult
Sr. Member
****
Offline Offline

Activity: 546
Merit: 250


Active Trading on EPIC5k and Spectre.Ai


View Profile WWW
November 02, 2016, 01:58:02 PM
 #19

Been mining on Nicehash miner since the very start, never had an issue.

6 cores of my 4770k and 2 AMD 480s with modded bios.

Day one was about $25 a day, now its down to about $9.50 a day. Way better than the $3 I get from eth mining  Grin

Sitting at about 58.X sol/s with this setup.

EPIC5k Trading on https://spectre.ai/?ref=PassiveIncome. Paying WEEKLY rewards in ETH since 2017. 100% FRAUD FREE Binary Trading Platform. $SXDT. Ask me about the ONLY smart options trading platform with 400% payouts, and their unique EPIC5000 trading system.
Pages: [1]
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!