Bitcoin Forum

Alternate cryptocurrencies => Mining (Altcoins) => Topic started by: statdude on July 16, 2014, 05:15:07 PM



Title: Network Hashrate Table? Better than LiteShack?
Post by: statdude on July 16, 2014, 05:15:07 PM
Looking for a site like http://liteshack.com/ or an API of network hashrates but including newer coins and more accurate.

Anything?


Title: Re: Network Hashrate Table? Better than LiteShack?
Post by: Bombadil on July 16, 2014, 06:01:35 PM
I'd guess you'd be best off using something like CoinWarz, CoinTweak, WhatToMine, ..., taking the diff and converting it to net hashrate.  (http://bitcoin.stackexchange.com/questions/5556/relationship-between-hash-rate-and-difficulty) (or just straight from wallet JSON)
I'm doing something alike in my mining profit calc (https://github.com/KBomba/cuda-profit-calc). I guess that's what LiteShack is doing too as there is no way to see the real net hashrate.


Title: Re: Network Hashrate Table? Better than LiteShack?
Post by: statdude on July 16, 2014, 08:40:12 PM
Good idea!
Whats the formula to engineer net hashrate from reward?


Title: Re: Network Hashrate Table? Better than LiteShack?
Post by: Bombadil on July 17, 2014, 05:01:10 AM
Good idea!
Whats the formula to engineer net hashrate from reward?
Here you go: https://github.com/KBomba/cuda-profit-calc/blob/master/ProfitCalc/Coin.cs#L204
And yes, I'm calling it the magic number. If someone knows how its actually called, please tell :P


Title: Re: Network Hashrate Table? Better than LiteShack?
Post by: statdude on July 18, 2014, 05:32:58 PM
Good idea!
Whats the formula to engineer net hashrate from reward?
Here you go: https://github.com/KBomba/cuda-profit-calc/blob/master/ProfitCalc/Coin.cs#L204
And yes, I'm calling it the magic number. If someone knows how its actually called, please tell :P
]

Hmm nice, how to equal Net Hash rate though.. this gives CoinsPerDay?


                if (Algo == HashAlgo.Algo.Quark) magicNumber = Math.Pow(2, 24);

                CoinsPerDay = BlockReward/(Difficulty*magicNumber/(hashRateMh*1000000)/3600/24);

                //Cryptonight's difficulty is net hashrate * 60
                if (Algo == HashAlgo.Algo.CryptoNight)
                    CoinsPerDay = (BlockReward*24*60)*((hashRateMh*1000000)/(Difficulty/60));


Title: Re: Network Hashrate Table? Better than LiteShack?
Post by: Bombadil on July 18, 2014, 10:26:11 PM
You could do some mathy stuff: take total blockreward (blocks per minute/minutes in a day). Or just google for "difficulty to net hashrate". Loads of results, each using their own way.