Bitcoin Forum
May 11, 2024, 11:02:45 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: [1]
  Print  
Author Topic: PPcoin: POW difficulty reward relationship  (Read 11365 times)
Jutarul (OP)
Donator
Legendary
*
Offline Offline

Activity: 994
Merit: 1000



View Profile
September 17, 2012, 12:21:31 AM
 #1

I just realized an interesting conclusion based on the proof-of-work reward mechanism implemented in PPCoin.

here is the relevant part from the source
Code:
    static const int64 MAX_MINT_PROOF_OF_WORK = 9999 * COIN;
    CBigNum bnSubsidyLimit = MAX_MINT_PROOF_OF_WORK;

    // ppcoin: subsidy is cut in half every 16x multiply of difficulty
    // A reasonably continuous curve is used to avoid shock to market
    // (nSubsidyLimit / nSubsidy) ** 4 == bnProofOfWorkLimit / bnTarget
    CBigNum bnLowerBound = CENT;
    CBigNum bnUpperBound = bnSubsidyLimit;

    while (bnLowerBound + CENT <= bnUpperBound)
    {
        // changes bnLowerBound and bnUpperBound to converge against bnMidValue
        // exists when bnUpperBound is within 1 CENT of bnLowerBound
    }

    int64 nSubsidy = bnUpperBound.getuint64();
    nSubsidy = (nSubsidy / CENT) * CENT;


which translates into this behavior: (difficulty, POWreward)
10   5,622
100   3,161
1K   1,778
10K   999.9
100K   562
1M   316
10M   177
100M   99.99
1G      56
10G      31
100G   17

Which means that inflation is high when the difficulty is low. Thus, people with huge STAKES have an incentive to keep the POW difficulty high! Why? Because a high inflation rate devalues stake (more stake available -> proof of stake difficulty rises).

However, every 10-fold decrease in subsidy is accompanied with a 10000-fold increase in difficulty. Thus people who accumulate stake early on, CAN NOT easily decrease the POW reward.
With current difficulty at 10K, the expected supply is 51M/year. If difficulty goes up 100-fold the supply drops to 16M/year.
However, on the other side, keeping the reward below a certain level (and thus prevent high inflation rates) is also cheaper. If you own 0.01% of the mining power (1/10000) you can limit the MAXIMUM supply of new coins to 510M/year!

conclusion:
=======
The difficulty dependent POW reward scheme introduces some very interesting incentives, especially for stake holders. Its steep relationship suggests that limiting the money supply is CHEAP, but throttling the money supply is EXPENSIVE, causing the expected inflation rate to stay within a healthy region. I don't know whether this was the original intent when the reward mechanism was designed, but it's certainly a feature.

The ASICMINER Project https://bitcointalk.org/index.php?topic=99497.0
"The way you solve things is by making it politically profitable for the wrong people to do the right thing.", Milton Friedman
1715468565
Hero Member
*
Offline Offline

Posts: 1715468565

View Profile Personal Message (Offline)

Ignore
1715468565
Reply with quote  #2

1715468565
Report to moderator
Bitcoin mining is now a specialized and very risky industry, just like gold mining. Amateur miners are unlikely to make much money, and may even lose money. Bitcoin is much more than just mining, though!
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1715468565
Hero Member
*
Offline Offline

Posts: 1715468565

View Profile Personal Message (Offline)

Ignore
1715468565
Reply with quote  #2

1715468565
Report to moderator
1715468565
Hero Member
*
Offline Offline

Posts: 1715468565

View Profile Personal Message (Offline)

Ignore
1715468565
Reply with quote  #2

1715468565
Report to moderator
Etlase2
Hero Member
*****
Offline Offline

Activity: 798
Merit: 1000


View Profile
September 17, 2012, 01:33:16 PM
 #2

How do the stakes come into play with this? This is only POW difficulty and I'm not seeing how this is energy efficient long-term, but I haven't read the code.

Jutarul (OP)
Donator
Legendary
*
Offline Offline

Activity: 994
Merit: 1000



View Profile
September 17, 2012, 09:36:35 PM
 #3

How do the stakes come into play with this? This is only POW difficulty and I'm not seeing how this is energy efficient long-term, but I haven't read the code.

I started to look at stake rewards in another thread: https://bitcointalk.org/index.php?topic=109128.msg1186226#msg1186226

There are two mechanism to throttle the addition of mining power:
1) the reward drop as a function of difficulty: Not only are more people competing for a piece of the pie (bitcoin), the pie gets smaller if more people compete...
2) POW blocks compete with POS blocks. (However, how that competition is implemented I am still a bit uncertain). POS blocks are essentially free as long as you have stake. E.g. if I have 1000 PPC and use it after 30 days, that gives me an 30000x advantage in meeting difficulty:

Code:
    
if (CBigNum(Hash(ss.begin(), ss.end())) <= bnCoinDay * bnTargetPerCoinDay)
        return true;

However, I am confused as how the competition between POS blocks is regulated...

The ASICMINER Project https://bitcointalk.org/index.php?topic=99497.0
"The way you solve things is by making it politically profitable for the wrong people to do the right thing.", Milton Friedman
rav3n_pl
Legendary
*
Offline Offline

Activity: 1361
Merit: 1003


Don`t panic! Organize!


View Profile WWW
August 19, 2013, 11:15:03 PM
 #4

I`m trying to make working P2Pool for PPC, but cant change this c++ code to some simple function that will calculate current block reward.
Has anyone idea how to do it?
In BTC it is:
Code:
SUBSIDY_FUNC=lambda height: 50*100000000 >> (height + 1)//210000,
But in PPC is not a simple diff/something :/

1Rav3nkMayCijuhzcYemMiPYsvcaiwHni  Bitcoin stuff on my OneDrive
My RPC CoinControl for any coin https://bitcointalk.org/index.php?topic=929954
Some stuff on https://github.com/Rav3nPL/
hl5460
Legendary
*
Offline Offline

Activity: 1620
Merit: 1000


news.8btc.com


View Profile WWW
December 31, 2013, 07:12:31 AM
 #5

Interesting topic, I have translated it into Chinese to collect people's thoughts:
https://bitcointalk.org/index.php?topic=392817.0

Pages: [1]
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!