some questions
what is the most premine you will accept and what number of coins would be acceptable (produced over 15 months through pow).
Do you think that it is fair to launch with pow only and a short warning~ 24 hrs?
what overall percentage of the money supply should be required to own a MasterNode (like 0.1%, 0.05% 0.005%)
is it better to have a larger portion go to early adopters(first miners get b huge potential,) or a more even distro(latecomers get a better chance)?
what is a fair MN/POS split?
i will check this later
here is my CURRENT
{
int64_t nSubsidy = 0;
if (nHeight == 0) {
nSubsidy = 1100000 * COIN;
} else if (nHeight <5040 && nHeight > 0) {
nSubsidy = 2000 * COIN;
} else if (nHeight < 15120 && nHeight >= 5040) {
nSubsidy = 500 * COIN;
} else if (nHeight < 15120 && nHeight >= 262980) {
nSubsidy = 133.7 * COIN;
} else if (nHeight <= Params().LAST_POW_BLOCK() && nHeight >= 262980) {
nSubsidy = 25 * COIN;
} else if (nHeight <= 350000 && nHeight > Params().LAST_POW_BLOCK()) {
nSubsidy = 10 * COIN;
} else if (nHeight >= 350000) {
nSubsidy = 5 * COIN;
} else {
nSubsidy = 0 * COIN;
}
return nSubsidy;
}
IF YOU CAN THINK OF ANYTHING ELSE ADD IT HERE .