Hi

I was wondering how far along is the stakerate of HYPER?
Is it still 5% per month right now and if so, how long will that continue?
And after that will it change to 5-10% per year and for how long until it becomes 2% per year?
Can we get an update on all this, in calendertime please?

Thx in advance.

/Magnion
It is currently at 5% a month stake percentage, I'm not sure of the exact time schedule as I've forgotten where that code was located at, it should be 1-2 years before it drops to a lower stake rate then 5 years before it drops again.
Ok. Thank you for the update.

/Magnion
You can find that info in main.cpp file of HYPER code, see the row 992 where it says:
// miner's coin stake reward
int64_t GetProofOfStakeReward(const CBlockIndex* pindexPrev, int64_t nCoinAge, int64_t nFees)
{
int64_t nSubsidy = nCoinAge * COIN_YEAR_REWARD1 * 33 / (365 * 33 +

;
if(pindexBest->nTime > 1493596800) //Mon, 01 May 2017 00:00:00 GMT
nSubsidy = (nCoinAge * COIN_MONTH_REWARD1 * 33 / (365 * 33 +

) * 12;
if(pindexBest->nTime > 1586736000) // Mon, 13 Apr 2020 00:00:00 GMT
nSubsidy = (nCoinAge * COIN_MONTH_REWARD2 * 33 / (365 * 33 +

) * 12;
if(pindexBest->nTime > 1744502400) // Sun, 13 Apr 2025 00:00:00 GMT
nSubsidy = (nCoinAge * COIN_MONTH_REWARD3 * 33 / (365 * 33 +

) * 12;
LogPrint("creation", "GetProofOfStakeReward(): create=%s nCoinAge=%d\n", FormatMoney(nSubsidy), nCoinAge);
return nSubsidy + nFees;
}