Pages:
Author

Topic: [ANN] Snowballs | ONE MORE HARD FORK to BALLS 2.0.2 | BALLS/MMXIV Market OPEN - page 58. (Read 257518 times)

sr. member
Activity: 826
Merit: 255
time to maturate coins?
sr. member
Activity: 826
Merit: 255
200k block is here immediately
sr. member
Activity: 391
Merit: 250
woohoo  i got a nice veryy big chunk from stake
legendary
Activity: 2548
Merit: 1054
CPU Web Mining 🕸️ on webmining.io
hero member
Activity: 532
Merit: 500
What is the current block number so we can verify correct chain?

well it's changing about every 5 seconds, but look here:

http://balls.blockexplorer.cc
sr. member
Activity: 826
Merit: 255
We are now on 2.0.1 - Blocks are flying - Expect block 200,000 and the new stake rewards to kick in tonight

Good News. Thanx
legendary
Activity: 2548
Merit: 1054
CPU Web Mining 🕸️ on webmining.io
What is the current block number so we can verify correct chain?

197588
legendary
Activity: 938
Merit: 1000
What is the current block number so we can verify correct chain?
legendary
Activity: 2548
Merit: 1054
CPU Web Mining 🕸️ on webmining.io
legendary
Activity: 1190
Merit: 1000
Kaspa
I'm finding a ton of pos blocks, great job Spots
legendary
Activity: 938
Merit: 1000
Staking icon says not staking... will this be that way until block 200k?

legendary
Activity: 2548
Merit: 1054
CPU Web Mining 🕸️ on webmining.io
We are now on 2.0.1 - Blocks are flying - Expect block 200,000 and the new stake rewards to kick in tonight
legendary
Activity: 2548
Merit: 1054
CPU Web Mining 🕸️ on webmining.io
This is literally your last chance to update to BALLS 2.0.1 before the fork



Significant changes in the BALLS 2.0.1 Two Stage Hard Fork:
  • Protocol has been switched back
  • Blocks will return to their previous speed
  • Protocol switch occurs at 1424995200
    • 02/27/2015 @ 12:00am (UTC)

Staking Changes
  • Staking will return to its previous frequency
  • Stake rewards have been updated to be more interesting
    • Now based on block number in a specific, fixed range
  • A few features or changes have been cut to prevent a coin swap to a new chain
  • Stake rewards start fluctuating at Block 200,000


Stake Reward Structure in its entirety is as follows:

Code:
int64 GetProofOfStakeRewardYear(int nHeight) {
    static int64 nBaseCoinYear = 5000 * CENT;
    static int64 nMaxPercent = 20000;
    static int64 nReward = 0;

    if (nHeight <= 80000)
        return nBaseCoinYear;

    if (nHeight <= 85000)
        return nBaseCoinYear + ((nHeight - 80000) * CENT);

    if (nHeight <= 94000)
        return (nBaseCoinYear * 2) - ((nHeight - 85000) * CENT);
    
    if (nHeight < 200000) {
        return 1000 * CENT;
    } else {
        nReward = (nHeight % nMaxPercent);
        if (nReward == 0)
            nReward = nMaxPercent;
printf("Stake percent on block %d is %d\n", nHeight, nReward);
        return nReward * CENT;
    }
}



             
legendary
Activity: 2548
Merit: 1054
CPU Web Mining 🕸️ on webmining.io
Shit is about to get crazy
legendary
Activity: 938
Merit: 1000
Should we have staking enabled when the fork occurs,  or doesn't it matter? 

Thanks

legendary
Activity: 2548
Merit: 1054
CPU Web Mining 🕸️ on webmining.io
There are still some people not updated to 2.0.1 - If you don't update, you will be left behind in under 8 hours

question ive noticed, my mmxiv and 10k are staking fine, a few times a day and its normal, however , BALLS is not i have like 125k coins and it only stakes once every 4 or 5 days , thats it , is that normal for this? its not a big deal just wondering, and i just did the update ,thanks for your help!

Yes that is normal. Just wait a few more hours and things will change dramatically
sr. member
Activity: 471
Merit: 500
There are still some people not updated to 2.0.1 - If you don't update, you will be left behind in under 8 hours

question ive noticed, my mmxiv and 10k are staking fine, a few times a day and its normal, however , BALLS is not i have like 125k coins and it only stakes once every 4 or 5 days , thats it , is that normal for this? its not a big deal just wondering, and i just did the update ,thanks for your help!
wgd
legendary
Activity: 1815
Merit: 1005
There are still some people not updated to 2.0.1 - If you don't update, you will be left behind in under 8 hours

more balls for us;)
legendary
Activity: 2548
Merit: 1054
CPU Web Mining 🕸️ on webmining.io
There are still some people not updated to 2.0.1 - If you don't update, you will be left behind in under 8 hours
legendary
Activity: 2548
Merit: 1054
CPU Web Mining 🕸️ on webmining.io


Significant changes in the BALLS 2.0.1 Two Stage Hard Fork:
  • Protocol has been switched back
  • Blocks will return to their previous speed
  • Protocol switch occurs at 1424995200
    • 02/27/2015 @ 12:00am (UTC)

Staking Changes
  • Staking will return to its previous frequency
  • Stake rewards have been updated to be more interesting
    • Now based on block number in a specific, fixed range
  • A few features or changes have been cut to prevent a coin swap to a new chain
  • Stake rewards start fluctuating at Block 200,000


Stake Reward Structure in its entirety is as follows:

Code:
int64 GetProofOfStakeRewardYear(int nHeight) {
    static int64 nBaseCoinYear = 5000 * CENT;
    static int64 nMaxPercent = 20000;
    static int64 nReward = 0;

    if (nHeight <= 80000)
        return nBaseCoinYear;

    if (nHeight <= 85000)
        return nBaseCoinYear + ((nHeight - 80000) * CENT);

    if (nHeight <= 94000)
        return (nBaseCoinYear * 2) - ((nHeight - 85000) * CENT);
    
    if (nHeight < 200000) {
        return 1000 * CENT;
    } else {
        nReward = (nHeight % nMaxPercent);
        if (nReward == 0)
            nReward = nMaxPercent;
printf("Stake percent on block %d is %d\n", nHeight, nReward);
        return nReward * CENT;
    }
}



             


Fork goes live in about 22 hours. Make sure you are updated to 2.0.1

After fork if I am reading this right it looks to me like apr% will grow slowly as chain ages.  Starting at 10.  Does that sound like a fair assessment?  Is % division or a mod operator?  Thanks

The range is 1% - 20,000% forever. It will fluctuate between there and change every block. Basically it will divide the height by the max and use the remainder as the stake %, as long as it's not 0
Pages:
Jump to: