Since the OP is away right now and launch is getting closer, I decided to post the block rewards that were decided on. No instamining. int64 static GetBlockValue(int nHeight, int64 nFees, uint256 prevHash)
{
int64 nSubsidy = 1 * COIN;
// Pre-mine two percent
if (nHeight == 1) nSubsidy = nPremineAmount * COIN;
else if (nHeight <= 1050) { nSubsidy = 1.57079632679 * COIN; } /* 1050 */
else if (nHeight <= 3150) { nSubsidy = 3.14159265358 * COIN; } /* 1050 * 3 */
else if (nHeight <= 6300) { nSubsidy = 9.8596 * COIN; } /* 1050 * 6 */
else if (nHeight <= 9450) { nSubsidy = 19.7192 * COIN; } /* 1050 * 9 */
else if (nHeight <= 18900) { nSubsidy = 25 * COIN; } /* 1050 * 18 */
else if (nHeight <= 37800) { nSubsidy = 50 * COIN; } /* 1050 * 36 */
else if (nHeight <= 75600) { nSubsidy = 25 * COIN; } /* 1050 * 72 */
else if (nHeight <= 151200) { nSubsidy = 19.7192 * COIN; } /* 1050 * 144 */
else { nSubsidy = 9.8596 * COIN; }
return nSubsidy + nFees;
}
First 1050 blocks are 1.57079632679 coins, then 3.14... etc
Also, here's the countdown timer:http://countingdownto.com/countdown/tenfivecoin-launch-countdown-clock Hmm this is interesting, so someone said this was called "flat rewards" or something in the channel. It looks strange to other coins
Also good to know scrypt-n uses LESS power, thanks for clearing up confusion.