well ...
you have a list of some features - but not all tech specs of the coin is available ( for a pool like mpos for example ) ...
i need to know quite specific detail about not only the coin - but the algo as well ( like what algo is it - for one point ) ...
its not to pick the coin apart - but to ponder whether an investment into the project ( time effort - not just money ) is worth it on a development standpoint ...
thats all ...
as for cloudflare - they are great ... though dont go allowing any of the vps systems ( outside of website use ) to go through it - as they block all incoming and outgoing ports for nodes ( yup - i found out the hard way with our node system we use for our coins - and the coins we support ) ... but as far as web is concerned - they are a must ...
tanx ...
#crysx
Basic specs (block times, mining rewards, etc.) are listed in the top of this post:
https://bitcointalksearch.org/topic/annric-riecoin-constellations-pow-cpu-hard-fork-successful-world-record-446703Some of those basic things are in the Reddit wiki for Riecoin:
https://www.reddit.com/r/RieCoin/wiki/indexPure bitcoin fork in most respects, with the key difference being the PoW.
PoW is finding dense 6-clusters of prime numbers, as described in my blog post about it. "Dense" here means that for a starting position p, then p, p+4, p+6, p+10, p+12, p+16 are all prime.
Getwork/etc. are larger because of the need to carry the primes. The nonce is 256 bits instead of 64 bits. You can see where some of those enter if you look at the basic miner from gatra:
https://github.com/gatra/cpuminer-rminerd/blob/master/cpu-miner.c#L764Diff increases by boosting the size of the starting location at which primes must be found. Start = 0x1 ... LeadingZeros ... | hash(block). (That may not be quite accurate, so just use it for intuition). Because prime density decreases as numbers get larger, this increases the diff in two ways: First, fewer primes == fewer clusters. Second, larger numbers == harder math for the fermat test for testing primality.
There's a tweak for periodic "high diff" blocks to set the record primes, and I don't know that part of it.
It would be nice to assemble these all, now that you mention it.