Author

Topic: Network Hashrate Table? Better than LiteShack? (Read 1041 times)

hero member
Activity: 644
Merit: 500
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.
legendary
Activity: 1498
Merit: 1000
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 Tongue
]

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));
hero member
Activity: 644
Merit: 500
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 Tongue
legendary
Activity: 1498
Merit: 1000
Good idea!
Whats the formula to engineer net hashrate from reward?
hero member
Activity: 644
Merit: 500
I'd guess you'd be best off using something like CoinWarz, CoinTweak, WhatToMine, ..., taking the diff and converting it to net hashrate. (or just straight from wallet JSON)
I'm doing something alike in my mining profit calc. I guess that's what LiteShack is doing too as there is no way to see the real net hashrate.
legendary
Activity: 1498
Merit: 1000
Looking for a site like http://liteshack.com/ or an API of network hashrates but including newer coins and more accurate.

Anything?
Jump to: