Bitcoin! Get em while you can !

in #money8 years ago

Bitcoin.png


I just want to remind everyone that they will stop producing bitcoin in the future so you should get them while you still can ! Here is a direct link to buy bitcoin and there are 300 different ways to pay!!!!! https://paxful.com/roots/buy-bitcoin?affiliate=5Zxk7xxKQpW So here is the math showing there will only be 21 million bitcoins and never any more than that!! Seriously!!! So everybody buy one while they are still around and while we can still afford them!! I can see the price skyrocketing in the near future, so you can also get rich!!! I know bitcoin is gonna make me rich. I'm lookin for it to hit $500,000. Let me know what you think ! https://paxful.com/roots/buy-bitcoin?affiliate=5Zxk7xxKQpW

31
down vote
Every block introduces 50 new coins in the system. This quantity (50) halves every 210,000 blocks. So, getting the limit of coins it is possible to generate is quite easy : it's the sum of a geometric series.

latex formula

Also, note that this is an upper bound ; the actual quantity will probably be a bit lower due to rounding issues (BTC has a finite number of decimals, 8)

2
Artefact, yes but that is not the theoretical limit... Basically its (10^8)... 100,000,000 – intmain Nov 19 '12 at 22:34
add a comment
up vote
26
down vote
accepted
A pre-defined schedule limits the total number of bitcoins so that they gradually approach a total of 21 million (ignoring those that have been lost through deleted or misplaced wallet files). The limit of 21 million bitcoins is "hard-wired" in to the protocol, and there will never be more bitcoins than this:

The Schedule on which Bitcoins are released into the economy through being rewarded to miners

shareimprove this answer
answered Aug 30 '11 at 23:57

eMansipater
9,10583976
3
Note that there are some assumptions built into the timing and unless the protocol is changed, they will actually be mined a bit earlier than this chart suggests. – David Schwartz Aug 31 '11 at 0:00
2
Or later--if the value drops precipitously and difficulty takes a while to get low enough again. But the graph is a good rough approximation. – eMansipater Aug 31 '11 at 0:02
3
I think that's very unlikely. Even if there are a few precipitous drops, I think that will be outweighed by the overall trend of increasing hashing power (and they'll be followed be precipitous drops in difficulty). But, yes, that is possible. – David Schwartz Aug 31 '11 at 0:04
1
I think saying "hard wired" is a bit misleading. The production schedule is coded in the software and could be changed to create more bitcoin. Fortunately anyone or any group that could change it is strongly incentivized to maintain the limit as it is integral to our idea of and trust in bitcoin. – Alex Millar Feb 26 '16 at 16:30
add a comment
up vote
11
down vote
As Artefact2 mentioned, Bitcoin uses fixed-point math to calculate the block subsidies. So, ignoring the unspendable genesis block, the sundry lost coins and unclaimed rewards, the maximum number of bitcoins is 20999999.9769 BTC.

I found that number through the following python program:

COIN = 100 * 1000 * 1000
nSubsidy = 50 * COIN
nHeight = 0
total = 0
while nSubsidy != 0:
nSubsidy = 50 * COIN
nSubsidy >>= nHeight / 210000
nHeight += 1
total += nSubsidy

print total / float(COIN)
It's intended to mirror this code from the Bitcoin client:

int64 static GetBlockValue(int nHeight, int64 nFees)
{
int64 nSubsidy = 50 * COIN;

// Subsidy is cut in half every 210000 blocks, which will occur approximately every 4 years
nSubsidy >>= (nHeight / 210000);

return nSubsidy + nFees;

}
Of course, it only differs from 21 million BTC by only 3 bitcents, so the difference isn't significant.

shareimprove this answer
answered Apr 18 '13 at 22:21

Nick ODell♦
19.5k52976
add a comment
up vote
4
down vote
As per the current rules there will only ever be 21 million coins at most (explained in other answers here). However, I'd like to add that this is by general agreement, which means that it can be changed.

See this question: Could there be hyperinflation in Bitcoin?

Looking at the history of money, I am skeptical that there will only ever be 21 million coins. I don't know of too many instances in history when money could be created out of thin air and wasn't. It would be foolish to ignore history. Whether or not there will be more than 21 million coins depends on whether or not "the people" demand it, and once again history is our guide.

shareimprove this answer
edited Apr 13 at 12:47

Community♦
1
answered Apr 19 '13 at 12:13

Manish
9491026
add a comment
up vote
3
down vote
According to a BIP (Bitcoin Improvement Proposal) I found, this code:

nSubsidy >>= (nHeight / 210000);
will actually wrap the reward generation back to 50 at some point in 2200 or so. Making the supply of bit coins infinite. The python code above does not have this property. The C++ code does. See BIP https://github.com/bitcoin/bips/blob/master/bip-0042.mediawiki

shareimprove this answer
answered Jul 18 '14 at 18:35

Thomas Jay Rush
1412
1
This is actually the right answer. Unfortunately many people are not aware of it because they don't do C++. – Gregory Higley Aug 13 '15 at 22:29
1
Gregory - what does this mean in practical terms after 2200? – user32235 Jan 22 '16 at 0:39
2
Carefully note the date on that BIP. – David Schwartz Feb 26 '16 at 17:31
add a comment
up vote
1
down vote
Re. 'how is it enforced?': The 21 million limit is enforced by game theory. Theoretically, 50% of miners could adopt code that would increase the rate of production but this would break the social contract that Satoshi created, irrevocably harm the integrity of bitcoin, and crash the price. Therefore, anyone or any group that could change the limit is incentivized to not do so.

shareimprove this answer
answered Feb 26 '16 at 16:25

Alex Millar
1799
2
This is incorrect. Full nodes in the network validate all blocks, and if miners would adapt their code to increase the amount of money printed, their blocks would be invalid, and simply ignored by the network. Of course, miners could also try to convince the entire ecosystem to adopt the new rules, but that's much more complicated than just game theory. – Pieter Wuille Jul 21 '16 at 10:34

Saying, "miners could also try to convince the entire ecosystem to adopt the new rules," is wrong, I think. Wouldn't it just have to be 51% not the entire ecosystem? – Thomas Jay Rush Nov 8 '16 at 21:59
add a comment

https://paxful.com/roots/buy-bitcoin?affiliate=5Zxk7xxKQpW

Source: https://bitcoin.stackexchange.com/questions/161/how-many-bitcoins-will-there-eventually-be

Sort:  

Still you work on it something.. 👍

Congratulations @dbeck22! You have completed some achievement on Steemit and have been rewarded with new badge(s) :

You got a First Reply

Click on any badge to view your own Board of Honnor on SteemitBoard.
For more information about SteemitBoard, click here

If you no longer want to receive notifications, reply to this comment with the word STOP

By upvoting this notification, you can help all Steemit users. Learn how here!

Quite intresting check out this
Steemit MONEY making strategy and TRICK.......it's kind of HACK steemit

S1.jpg
https://steemit.com/security/@kaiju/steemit-money-making-strategy-and-trick-it-s-kind-of-hack-steemit .....#thanks Inspire by #jerrybanfield

Copy pasta much?

Buy, buy, buy lol.

Here is a platform which marries Bitcoin investing with Crowdsourcing and nobody gets left behind. Go to www.freewith3people.com