<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://en.bitcoin.it/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Adam2us</id>
	<title>Bitcoin Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://en.bitcoin.it/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Adam2us"/>
	<link rel="alternate" type="text/html" href="https://en.bitcoin.it/wiki/Special:Contributions/Adam2us"/>
	<updated>2026-04-08T10:07:15Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.43.8</generator>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Template:MainPage_FAQ&amp;diff=33217</id>
		<title>Template:MainPage FAQ</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Template:MainPage_FAQ&amp;diff=33217"/>
		<updated>2012-11-30T11:17:10Z</updated>

		<summary type="html">&lt;p&gt;Adam2us: hashcash proof-of-work ref&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Q. What is Bitcoin?&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
A. Bitcoin is a peer-to-peer currency. Peer-to-peer means that no central authority issues new money or tracks transactions. These tasks are managed collectively by the [[network]].&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Q. How does Bitcoin work?&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
A. Bitcoin uses [[wikipedia:Public-key cryptography|public-key cryptography]], peer-to-peer networking, and the [[wikipedia:Hashcash|Hashcash]] proof-of-work to process and verify payments. Bitcoins are sent (or signed over) from one address to another with each user potentially having many, many addresses. Each payment transaction is broadcast to the network and included in the blockchain so that the included bitcoins cannot be spent twice. After an hour or two, each transaction is locked in time by the massive amount of processing power that continues to extend the blockchain. Using these techniques, Bitcoin provides a fast and extremely reliable payment network that anyone can use.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;text-align: right;&amp;quot; class=&amp;quot;noprint&amp;quot;&amp;gt;&#039;&#039;&#039;[[FAQ|See More]]&#039;&#039;&#039;&amp;lt;/div&amp;gt;&lt;/div&gt;</summary>
		<author><name>Adam2us</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=How_bitcoin_works&amp;diff=33216</id>
		<title>How bitcoin works</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=How_bitcoin_works&amp;diff=33216"/>
		<updated>2012-11-30T11:11:20Z</updated>

		<summary type="html">&lt;p&gt;Adam2us: hashcash explanation&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page explains the basic framework of Bitcoin&#039;s functionality.&lt;br /&gt;
&lt;br /&gt;
==Cryptography==&lt;br /&gt;
&lt;br /&gt;
There are several cryptographic technologies that make up the essence of Bitcoin. &lt;br /&gt;
&lt;br /&gt;
First is [http://en.wikipedia.org/wiki/Public-key_cryptography public key cryptography]. Each coin is associated with its current owner&#039;s public [http://en.wikipedia.org/wiki/Elliptic_Curve_DSA ECDSA] key. When you send some bitcoins to someone, you create a message ([[transaction]]), attaching the new owner&#039;s public key to this amount of coins, and sign it with your private key. When this transaction is broadcast to the bitcoin network, this lets everyone know that the new owner of these coins is the owner of the new key. Your signature on the message verifies for everyone that the message is authentic. The complete history of transactions is kept by everyone, so anyone can verify who is the current owner of any particular group of coins.&lt;br /&gt;
&lt;br /&gt;
This complete record of transactions is kept in the [[block chain]], which is a sequence of records called [[block|blocks]]. All computers in the network have a copy of the block chain, which they keep updated by passing along new blocks to each other. Each block contains a group of transactions that have been sent since the previous block. In order to preserve the integrity of the block chain, each block in the chain confirms the integrity of the previous one, all the way back to the first one, the [[genesis block]]. Record insertion is costly because each block must meet certain requirements that make it [[difficulty|difficult]] to generate a valid block. This way, no party can overwrite previous records by just forking the chain.&lt;br /&gt;
&lt;br /&gt;
To make generating bitcoins difficult the [http://en.wikipedia.org/wiki/Hashcash Hashcash] cost-function is used.  Hashcash is the first secure efficiently verifiable cost-function or proof-of-work function.  The beauty of hashcash is that is is non-interactive and has no secret keys that have to be managed by a central server or relying party; hashcash is as a result fully distributed and infinitely scalable.  (Hashcash uses symmetric key cryptogaphy, namely a one-way hashcash function - typically either SHA1 or SHA-256). &lt;br /&gt;
&lt;br /&gt;
In bitcoin, integrity, block-chaining, and the hashcash cost-function all use [http://en.wikipedia.org/wiki/SHA-2 SHA256] as the underlying [http://en.wikipedia.org/wiki/Cryptographic_hash_function cryptographic hash function]. &lt;br /&gt;
&lt;br /&gt;
A cryptographic hash function essentially takes input data which can be of practically any size, and transforms it, in an effectively-impossible to reverse or to predict way, into a relatively compact string (in the case of SHA-256 the hash is 32 bytes). Making the slightest change to the input data changes its hash unpredictably, so nobody can create a different block of data that gives exactly the same hash. Therefore, by being given a compact hash, you can confirm that it matches only a particular input datum, and in bitcoin the input data being a block-chain is significantly larger than the SHA-256 hash. This way, Bitcoin blocks don&#039;t have to contain serial numbers, as blocks can be identified by their hash, which serves the dual purpose of identification as well as integrity verification.  An identification string that also provides its own integrity is called a self-certifying identifier.&lt;br /&gt;
&lt;br /&gt;
The hashcash [[difficulty]] factor is achieved by requiring that the hash output has a number of leading zeros.  Technically, to allow more fine-grained control than Hashcash number of leading 0-bits method, Bitcoin extends the hashcash solution definition by treating the hash as a large big-endian integer, and checking that the integer is below a certain threshold.  The hashcash cost-function iterates by perturbing data in the block by a [[nonce]] value, until the data in the block hashes to produce an integer below the threshold - which takes a lot of processing power. This low hash value for the block serves as an easily-verifiable [[proof of work]] - every node on the network can instantly verify that the block meets the required criteria.&lt;br /&gt;
&lt;br /&gt;
With this framework, we are able to achieve the essential functions of the Bitcoin system. We have verifiable ownership of bitcoins, and a distributed database of all transactions, which prevents [[#Double_spending|double spending]].&lt;br /&gt;
&lt;br /&gt;
==Bitcoin [[Mining]]==&lt;br /&gt;
&lt;br /&gt;
We have mentioned in the previous section that adding a block to the block chain is difficult, requiring time and processing power to accomplish. The incentive to put forth this time and electricity is that the person who manages to produce a block gets a reward. This reward is two-fold. First, the block producer gets a bounty of some number of bitcoins, which is agreed-upon by the network. (Currently this bounty is 50 bitcoins; this value will halve every 210,000 blocks.) Second, any [[transaction fees]] that may be present in the transactions included in the block, get claimed by the block producer. &lt;br /&gt;
&lt;br /&gt;
This gives rise to the activity known as &amp;quot;Bitcoin [[Mining|mining]]&amp;quot; - using processing power to try to produce a valid block, and as a result &#039;mine&#039; some bitcoins. The network rules are such that the [[difficulty]] is adjusted to keep block production to approximately 1 block per 10 minutes. Thus, the more miners engage in the mining activity, the more difficult it becomes for each individual miner to produce a block. The higher the total difficulty, the harder it is for an attacker to overwrite the tip of the block chain with his own blocks (which enables him to double-spend his coins. See the [[weaknesses]] page for more details).&lt;br /&gt;
&lt;br /&gt;
Besides being important for maintaining the transaction database, mining is also the mechanism by which bitcoins get created and distributed among the people in the bitcoin economy. The network rules are such that over the next hundred years, give or take a few decades, a total of 21 million bitcoins will be created. See [[Controlled Currency Supply]]. Rather than dropping money out of a helicopter, the bitcoins are awarded to those who contribute to the network by creating [[block]]s in the [[block chain]].&lt;br /&gt;
&lt;br /&gt;
==Double spending==&lt;br /&gt;
&lt;br /&gt;
The [[block chain]] is a common ledger shared by all Bitcoin nodes which details the owner of each bitcoin, or fraction thereof. Unlike conventional banking systems, there is no central place where this ledger of transactions is stored. This is accomplished through the broadcasting of small pieces (&amp;quot;blocks&amp;quot;), each stating that it is a continuation of a previous block. It is possible for the block chain to split; that is, it is possible for two blocks to both point to the same parent block and contain some, but not all, of the same transactions. When this happens, each computer in the network must decide for itself which branch is the &amp;quot;correct&amp;quot; one that should be accepted and extended further.&lt;br /&gt;
&lt;br /&gt;
The rule in this case is to accept the &amp;quot;longest&amp;quot; valid branch. Choose from the branches of blocks that you have received, the path, the total &amp;quot;difficulty&amp;quot; of which is the highest. This is the sequence of blocks that is assumed to have required the most work (CPU time) to generate. For Bitcoin, this will be the &amp;quot;true&amp;quot; order of events, and this is what it will take into account when calculating the balance to show to the user. &lt;br /&gt;
&lt;br /&gt;
It is still possible that, as new blocks are constantly being generated, at some later time, some other branch will become the longest branch. However, it takes significant effort to extend a branch, and nodes work to extend the branch that they have received and accepted (which is normally the longest one). So, the longer this branch becomes compared to the second-longest branch, the more effort it will take for the second-longest branch to catch up and overcome the first in length. Also, the more nodes in the network hear about the longest branch, the more unlikely it becomes for other branches to be extended the next time a block is generated, since the nodes will accept the longest chain.&lt;br /&gt;
&lt;br /&gt;
Therefore, the more time a transaction has been part of the longest block chain, the more likely it is to remain part of the chain indefinitely. This is what makes transactions non-reversible and this is what prevents people from [[double-spending]] their coins. What the receiver of each transaction does, after money has been supposedly transferred to him/her is to check how long the block chain following the said transaction has become, because the more blocks are added to the longest branch after the transaction, the less likely is it that some other branch will overcome it.&lt;br /&gt;
&lt;br /&gt;
When the block chain after the transaction has become long enough, it becomes near-impossible for another branch to overcome it, and so people can start accepting the transaction as true. This is why &#039;blocks&#039; also serve as &#039;confirmations&#039; for a transaction. Even if another branch does overcome the one with the transaction, most of the blocks will have been generated by people who have no affiliation with the sender of the coins, as a large number of people are working to generate blocks. Since transactions are broadcasted to all nodes in the network, these blocks are just as likely to contain the transaction as the blocks in the previously-accepted branch.&lt;br /&gt;
&lt;br /&gt;
Bitcoin relies on the fact that no single entity can control most of the CPU power on the network for any significant length of time, since, if they could, they would be able to extend any branch of the tree they chose, and faster than any other branch can be extended, making it the longest branch, and then permanently controlling which transactions appear in it.&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
&lt;br /&gt;
* [[Introduction]]&lt;br /&gt;
* [[Getting started]]&lt;br /&gt;
* [[Using Bitcoin]]&lt;br /&gt;
* Bitcoin [[FAQ]]&lt;br /&gt;
* [[Double-spending]]&lt;br /&gt;
&lt;br /&gt;
==External Links==&lt;br /&gt;
&lt;br /&gt;
* http://bitcointalk.org/index.php?topic=2487.0 A forum thread with some good &#039;for-the-layperson&#039; explanations of how bitcoin works.&lt;br /&gt;
&lt;br /&gt;
[[Category:Introduction]]&lt;/div&gt;</summary>
		<author><name>Adam2us</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Help:Introduction&amp;diff=33215</id>
		<title>Help:Introduction</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Help:Introduction&amp;diff=33215"/>
		<updated>2012-11-30T10:41:47Z</updated>

		<summary type="html">&lt;p&gt;Adam2us: explanation of math problem being hashcash&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The purpose of this page is to provide a general overview of the Bitcoin system and economy.&lt;br /&gt;
&lt;br /&gt;
==Basic Concepts==&lt;br /&gt;
&lt;br /&gt;
===Currency===&lt;br /&gt;
&lt;br /&gt;
Alice wants to buy the [http://www.grasshillalpacas.com/alpacaproductsforbitcoinoffer.html Alpaca socks] which Bob has for sale. In return, she is to provide something of equal value to Bob. The most efficient way to do this is by using a medium of exchange that Bob accepts which would be classified as currency. Currency makes trade easier by eliminating the need for [http://en.wikipedia.org/wiki/Coincidence_of_wants coincidence of wants] required in other systems of trade such as barter. Currency adoption and acceptance can be global, national, or in some cases local or community-based.&lt;br /&gt;
&lt;br /&gt;
===Banks===&lt;br /&gt;
&lt;br /&gt;
Alice needs not provide currency to Bob in-person. She may instead transfer this value by first entrusting her currency to a bank who promises to store and protect Alice&#039;s currency notes. The bank gives Alice a written promise (called a &amp;quot;bank statement&amp;quot;) that entitles her to withdraw the same number of currency bills that she deposited. Since the money is still Alice&#039;s, she is entitled to do with it whatever she pleases, and the bank (like most banks), for a small fee, will do Alice the service of passing on the currency bills to Bob on her behalf. This is done by Alice&#039;s bank by giving the dollar bills to Bob&#039;s bank and informing them that the money is for Bob, who will then see the amount the next time he checks his balance or receives his bank statement.&lt;br /&gt;
&lt;br /&gt;
Since banks have many customers, and bank employees require money for doing the job of talking to people and signing documents, banks in recent times have been using machines such as ATMs and web servers that do the job of interacting with customers instead of paid bank employees. The task of these machines is to learn what each customer wants to do with their money and, to the extent that it is possible, act on what the customer wants (for example, ATMs can hand out cash). Customers can always know how much money they have in their accounts, and they are confident that the numbers they see in their bank statements and on their computer screens accurately reflect the number of dollars that they can get from the bank on demand. They can be so sure of this that they can accept those numbers in the same way they accept paper banknotes (this is similar to the way people started accepting paper dollars when they had been accepting gold or silver).&lt;br /&gt;
&lt;br /&gt;
Such a system has several disadvantages:&lt;br /&gt;
* It is costly. [https://en.wikipedia.org/wiki/Electronic_funds_transfer EFTs] in Europe can cost 25 euros. Credit transactions can cost several percent of the transaction.&lt;br /&gt;
* It is slow. Checking and low cost wire services take days to complete.&lt;br /&gt;
* In most cases, it cannot be anonymous.&lt;br /&gt;
* Accounts can be frozen. &lt;br /&gt;
* Banks and other payment processors like PayPal, Visa, and Mastercard may refuse to process payments for legal entities. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Bitcoin is a system of owning and voluntarily transferring amounts of so-called &#039;&#039;bitcoins&#039;&#039;, in a manner similar to an on-line banking, but pseudonymously and without reliance on a central authority to maintain account balances. If bitcoins are valuable, it is because they are useful and limited in supply.&lt;br /&gt;
&lt;br /&gt;
==Bitcoin Basics==&lt;br /&gt;
&lt;br /&gt;
===Creation of coins===&lt;br /&gt;
The creation of coins must be limited for the currency to have any value. &lt;br /&gt;
&lt;br /&gt;
New coins are slowly [[Mining|mined]] into existence by following a mutually agreed-upon set of rules. A user [[Mining|mining]] bitcoins is running a software program that searches intensively for a solution to a very computationally expensive math problem whose difficulty is precisely known. The cost function (the computationally expensive math problem) that miners spend their time on is the [http://en.wikipedia.org/wiki/Hashcash Hashcash cost-function].  In bitcoin the hashcash difficulty is automatically adjusted regularly so that the number of solutions found globally, by everyone, is constant: an average of 6 per hour. When a solution is found, the user may tell everyone of the existence of this newly found solution, along with other information, packaged together in what is called a &amp;quot;[[Block|block]]&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
Blocks contain 50 bitcoins at present. This amount, known as the block reward, is an incentive for people to perform the computation work required for generating blocks. Roughly every 4 years, the number of bitcoins that can be &amp;quot;mined&amp;quot; in a block reduces by 50%. Any block that is created by a malicious user that does not follow this rule (or any other rules) will be rejected by everyone else. In the end, no more than 21 million bitcoins will ever exist. &lt;br /&gt;
&lt;br /&gt;
Because the block reward will decrease over the long term, miners will some day instead pay for their hardware and electricity costs by collecting [[Transaction_fee|transaction fees]]. The sender of money may voluntarily pay a small transaction fee which will be kept by whomever finds the next block. Paying this fee will encourage miners to include the transaction in a block more quickly.&lt;br /&gt;
&lt;br /&gt;
===Sending payments===&lt;br /&gt;
To guarantee that a third-party, let&#039;s call her Eve, cannot spend other people&#039;s bitcoins by creating transactions in their names, Bitcoin uses [[Wikipedia:Public-key_cryptography|public key cryptography]] to make and verify digital signatures. In this system, each person, such as Alice or Bob, has one or more addresses each with an associated pair of public and private keys that they may hold in a [[Wallet|wallet]]. Only the user with the private key can sign a transaction to give some of their bitcoins to somebody else, but anyone can validate the signature using that user’s public key.&lt;br /&gt;
&lt;br /&gt;
Suppose Alice wants to send a bitcoin to Bob.&lt;br /&gt;
* Bob sends his address (from which the public key can be derived) to Alice.&lt;br /&gt;
* Alice adds Bob’s public key and the amount of bitcoins to transfer to a message: a &#039;transaction&#039; message.&lt;br /&gt;
* Alice signs the transaction with her private key.&lt;br /&gt;
* Alice broadcasts the transaction on the Bitcoin network for all to see.&lt;br /&gt;
&lt;br /&gt;
(Only the first two steps require human action. The rest is done by the Bitcoin client software.)&lt;br /&gt;
&lt;br /&gt;
Looking at this transaction from the outside, anyone who knows that these addresses belong to Alice and Bob can see that Alice has agreed to transfer the amount to Bob, because nobody else has Alice&#039;s private key. Alice would be foolish to give her private key to other people, as this would allow them to sign transactions in her name, removing funds from her control.&lt;br /&gt;
&lt;br /&gt;
Later on, when Bob wishes to transfer the same bitcoins to Charley, he will do the same thing:&lt;br /&gt;
* Charlie sends Bob his address.&lt;br /&gt;
* Bob adds Charlie&#039;s public key and the amount of bitcoins to transfer to a message: a &#039;transaction&#039; message.&lt;br /&gt;
* Bob signs the transaction with his private key.&lt;br /&gt;
* Bob broadcasts the transaction on the Bitcoin network for all to see. &lt;br /&gt;
&lt;br /&gt;
Only Bob can do this because only he has the private key that can create a valid signature for the transaction.&lt;br /&gt;
&lt;br /&gt;
Eve cannot change whose coins these are by replacing Bob’s public key with her public key, because Alice signed the transfer to Bob using her own private key, which is kept secret from Eve, and instructing that the coins which were hers now belong to Bob. So if Charlie accepts that the original coin was in the hands of Alice, he will also accept the fact that this coin was later passed to Bob, and now Bob is passing this same coin to him.&lt;br /&gt;
&lt;br /&gt;
===Preventing [[double-spending]]===&lt;br /&gt;
The process described above does not prevent Alice from using the same bitcoins in more than one transaction. The following process does; this is the primary innovation behind Bitcoin.&lt;br /&gt;
&lt;br /&gt;
* Details about the [[Transactions|transaction]] are [[Network|sent and forwarded]] to all or as many other computers as possible.&lt;br /&gt;
* A constantly growing chain of [[Blocks|blocks]] that contains a record of all transactions is collectively maintained by all computers (each has a full copy).&lt;br /&gt;
* To be accepted in the chain, transaction blocks must be valid and must include [[proof of work]] (one block generated by the network every 10 minutes).&lt;br /&gt;
* Blocks are chained in a way so that, if any one is modified, all following blocks will have to be recomputed.&lt;br /&gt;
* When multiple valid continuations to this chain appear, only the longest such branch is accepted and it is then extended further.&lt;br /&gt;
&lt;br /&gt;
When Bob sees that his transaction has been included in a block, which has been made part of the single longest and fastest-growing block chain (extended with significant computational effort), he can be confident that the transaction by Alice has been accepted by the computers in the network and is permanently recorded, preventing Alice from creating a second transaction with the same coin. In order for Alice to thwart this system and double-spend her coins, she would need to muster more computing power than all other Bitcoin users combined.&lt;br /&gt;
&lt;br /&gt;
===Anonymity===&lt;br /&gt;
When it comes to the Bitcoin network itself, there are no &amp;quot;accounts&amp;quot; to set up, and no e-mail addresses, user-names or passwords are required to hold or spend bitcoins. Each balance is simply associated with an address and its public-private key pair. The money &amp;quot;belongs&amp;quot; to anyone who has the private key and can sign transactions with it. Moreover, those keys do not have to be registered anywhere in advance, as they are only used when required for a transaction. Transacting parties do not need to know each other&#039;s identity in much the same way that a store owner does not know a cash-paying customer&#039;s name.&lt;br /&gt;
&lt;br /&gt;
A [[Address|Bitcoin address]] mathematically corresponds to a public key and looks like this:&lt;br /&gt;
&lt;br /&gt;
:1PC9aZC4hNX2rmmrt7uHTfYAS3hRbph4UN&lt;br /&gt;
&lt;br /&gt;
Each person can have many such addresses, each with its own balance, which makes it very difficult to know which person owns what amount. In order to protect his [[Anonymity|privacy]], Bob can generate a new public-private key pair for each individual receiving transaction and the Bitcoin software encourages this behavior by default. Continuing the example from above, when Charlie receives the bitcoins from Bob, Charlie will not be able to identify who owned the bitcoins before Bob without further information.&lt;br /&gt;
&lt;br /&gt;
===Capitalization / Nomenclature===&lt;br /&gt;
Since Bitcoin is both a currency and a protocol, capitalization of Bitcoin can be confusing. Generally accepted practice is to use Bitcoin (singular, with upper case letter b) to describe the protocol, network, and software, and bitcoin(s) (singular or plural, with lower case letter b) to describe actual bitcoins, as generated by computers. For example, you may have some bitcoins but when you run the program you are using Bitcoin.&lt;br /&gt;
&lt;br /&gt;
==Where to see and explore==&lt;br /&gt;
You can directly explore the system in action by visiting [http://blockchain.info/ Blockchain.info] or [http://blockexplorer.com/ Bitcoin Block Explorer].&lt;br /&gt;
The site shows you the latest blocks in the block chain. The [[Block_chain|block chain]] contains the agreed history of all transactions that took place in the system.&lt;br /&gt;
Note how many blocks were generated in the last hour, which on average will be 6. Also notice the number of transactions and the total amount transferred in the last hour (last time I checked it was about 64 and 15K).&lt;br /&gt;
This should give you an indication of how active the system is.&lt;br /&gt;
&lt;br /&gt;
Next, navigate to one of these blocks.&lt;br /&gt;
The block&#039;s [[hash]] begins with a run of zeros. This is what made creating the block so difficult; a hash that begins with many zeros is much more difficult to find than a hash with few or no zeros. The computer that generated this block had to try many &#039;&#039;Nonce&#039;&#039; values (also listed on the block&#039;s page) until it found one that generated this run of zeros.&lt;br /&gt;
Next, see the line titled &#039;&#039;Previous block&#039;&#039;. Each block contains the hash of the block that came before it. This is what forms the chain of blocks.&lt;br /&gt;
Now take a look at all the transactions the block contains. The first transaction is the income earned by the computer that generated this block. It includes a fixed amount of coins created out of &amp;quot;thin air&amp;quot; and possibly a fee collected from other transactions in the same block.&lt;br /&gt;
&lt;br /&gt;
Drill down into any of the transactions and you will see how it is made up of one or more amounts coming in and out.&lt;br /&gt;
Having more than one incoming and outgoing amount in a transaction enables the system to join and break amounts in any possible way, allowing for any fractional amount needed. Each incoming amount is a past transaction (which you can also view) from someone&#039;s address, and each outgoing amount is addressed to someone and will be part of a future transaction (which you can also navigate down into if it has already taken place.)&lt;br /&gt;
&lt;br /&gt;
Finally you can follow any of the [[Address|addresses]] links and see what public information is available for them.&lt;br /&gt;
&lt;br /&gt;
To get an impression of the amount of activity on the Bitcoin network, you might like to visit the monitoring websites [[Bitcoin Monitor]] and [[Bitcoin Watch]]. The first shows a real-time visualization of events on the Bitcoin network, and the second lists general statistics on the amount and size of recent transactions.&lt;br /&gt;
&lt;br /&gt;
===How many people use Bitcoin?===&lt;br /&gt;
&lt;br /&gt;
This is quite a difficult question to answer accurately. One approach is to count how many bitcoin clients connected to the network in the last 24 hours. We can do this because some clients transmit their addresses to the other members of the network periodically. In September 2011 this method suggested that there were about {{formatnum:60000}} users.&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
&lt;br /&gt;
* [http://www.youtube.com/watch?v=Um63OQz3bjo What is Bitcoin?] video introduction&lt;br /&gt;
* Installing Bitcoin [[getting started]] &lt;br /&gt;
* [[How bitcoin works]]&lt;br /&gt;
* [[Using Bitcoin]]&lt;br /&gt;
* A gentle introduction to Bitcoin - [[BitcoinMe]]&lt;br /&gt;
* [http://coinlab.com/2011/12/bitcoin-primer Bitcoin Primer] from CoinLab&lt;br /&gt;
* Another introduction, &#039;&#039;The Rebooting Of Money&#039;&#039; podcast is found at [[Bitcoin Money]]&lt;br /&gt;
* A beginner&#039;s step-by-step guide to using Bitcoin, use of alternative wallets, and generally keeping your money and computer secure - [http://BitcoinIntro.com BitcoinIntro.com]&lt;br /&gt;
* [http://howtobitcoin.info howtobitcoin.info] Directory of bitcoin links for beginners&lt;br /&gt;
* Amazon Kindle Book [http://www.amazon.com/Bitcoin-Step-by-ebook/dp/B00A1CUQQU Bitcoin Step by Step] $3.99 (USD).  The author walks you step by step through getting started.&lt;br /&gt;
&lt;br /&gt;
[[zh-cn:简介]]&lt;br /&gt;
&lt;br /&gt;
[[de:Einführung]]&lt;/div&gt;</summary>
		<author><name>Adam2us</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Help:FAQ&amp;diff=33214</id>
		<title>Help:FAQ</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Help:FAQ&amp;diff=33214"/>
		<updated>2012-11-30T10:37:24Z</updated>

		<summary type="html">&lt;p&gt;Adam2us: explanation in terms of hashcash stamp&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Here you will find answers to the most commonly asked questions.&lt;br /&gt;
&lt;br /&gt;
== General ==&lt;br /&gt;
=== What are bitcoins? ===&lt;br /&gt;
Bitcoins are the unit of currency of the Bitcoin system. A commonly used shorthand for this is “BTC” to refer to a price or amount (eg: “100 BTC”).&lt;br /&gt;
There are such things as [[physical bitcoins]], but ultimately, a bitcoin is just a number associated with a [[Address|Bitcoin Address]].  A physical bitcoin is simply an object, such as a coin, with the number carefully embedded inside.  See also an [[Introduction|easy intro]] to bitcoin.&lt;br /&gt;
&lt;br /&gt;
=== How can I get bitcoins? ===&lt;br /&gt;
&lt;br /&gt;
There are a variety of ways to acquire bitcoins:&lt;br /&gt;
&lt;br /&gt;
* Accept bitcoins as payment for goods or services.&lt;br /&gt;
* There are several services where you can [[buying bitcoins|trade them]] for traditional currency.&lt;br /&gt;
* Find someone to trade cash for bitcoins in-person through a [https://en.bitcoin.it/wiki/Category:Directories local directory].&lt;br /&gt;
* Participate in a [[Pooled mining|mining pool]].&lt;br /&gt;
* If you have a lot of mining hardware, you can solo mine and attempt to create a new [[block]] (currently yields 50 bitcoins).&lt;br /&gt;
&lt;br /&gt;
===Does Bitcoin guarantee an influx of free money?===&lt;br /&gt;
&lt;br /&gt;
Since Bitcoin is a new technology, what it is and how it works may be initially unclear.  Bitcoin is sometimes presented as being one of three things:&lt;br /&gt;
&amp;lt;ol style=&amp;quot;list-style-type: upper-alpha;&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;li&amp;gt;Some sort of online &#039;get-rich-quick&#039; scam.&amp;lt;/li&amp;gt;&lt;br /&gt;
  &amp;lt;li&amp;gt;A loophole in the market economy, the installation of which guarantees a steady influx of cash.&amp;lt;/li&amp;gt;&lt;br /&gt;
  &amp;lt;li&amp;gt;A sure investment that will almost certainly yield a profit.&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ol&amp;gt;&lt;br /&gt;
In fact, none of the above are true.  Let&#039;s look at them independently.&lt;br /&gt;
&lt;br /&gt;
;Is Bitcoin a &#039;get-rich-quick&#039; scheme?&lt;br /&gt;
:If you&#039;ve spent much time on the Internet, you&#039;ve probably seen ads for many &#039;get-rich-quick&#039; schemes. These ads usually promise huge profits for a small amounts of easy work.  Such schemes are usually pyramid/matrix-style schemes that make money from their own employees and offer nothing of any real value.  Most convince one to buy packages that will make them earn hundreds a day, which in fact  have the buyer distribute more such ads, and make minute profits.&lt;br /&gt;
&lt;br /&gt;
:Bitcoin is in no way similar to these schemes. Bitcoin doesn&#039;t promise windfall profits. There is no way for the developers to make money from your involvement or to take money from you. That bitcoins are nearly impossible to acquire without the owner&#039;s consent represents one of its greatest strengths.  Bitcoin is an experimental, virtual currency that may succeed or may fail. None of its developers expect to get rich off of it. &lt;br /&gt;
&lt;br /&gt;
:A more detailed answer to this question can be found [http://bitcointalk.org/?topic=7815.0 here].&lt;br /&gt;
&lt;br /&gt;
;Will I make money by installing the client?&lt;br /&gt;
:Most people who use Bitcoin don&#039;t earn anything by doing so, and the default client has no built-in way to earn Bitcoins.  A small minority of people with dedicated, high-performance hardware do earn some Bitcoins by &amp;quot;&#039;&#039;mining&#039;&#039;&amp;quot; (generating new bitcoins, see [[#What is mining?|What is mining?]]) with special software, but joining Bitcoin shouldn&#039;t be construed as being the road to riches.  Most Bitcoin users get involved because they find the project conceptually interesting and don&#039;t earn anything by doing so.  This is also why you won&#039;t find much speculation about the political or economic repercussions of Bitcoin anywhere on this site: Bitcoin developers owe their dedication to the project&#039;s intellectual yieldings more than to those of a monetary nature.  Bitcoin is still taking its first baby steps; it may go on to do great things but right now it only has something to offer those chasing conceptually interesting projects or bleeding edge technology.&lt;br /&gt;
&lt;br /&gt;
;As an investment, is Bitcoin a sure thing?&lt;br /&gt;
:Bitcoin is a new and interesting electronic currency, the value of which is not backed by any single government or organization.  Like other currencies, it is worth something partly because people are willing to trade it for goods and services. Its exchange rate fluctuates continuously, and sometimes wildly. It lacks wide acceptance and is vulnerable to manipulation by parties with modest funding. Security incidents such as website and account compromise may trigger major sell-offs. Other fluctuations can build into positive feedback loops cause much larger exchange rate fluctuations. Anyone who puts money into Bitcoin should take measures to reduce their risk and consider it as a high-risk currency. Later, as Bitcoin becomes better known and more widely accepted, it should stabilize, but for the time being it is unpredictable. Any investment in Bitcoin should be done carefully and with a clear plan to manage risk.&lt;br /&gt;
&lt;br /&gt;
=== Can I buy bitcoins with Paypal? ===&lt;br /&gt;
&lt;br /&gt;
It is possible to buy [[physical bitcoins]] with PayPal but it is otherwise difficult and/or expensive to do so, because of significant risk to the seller. &lt;br /&gt;
&lt;br /&gt;
While it is possible to find an individual who wishes to sell Bitcoin to you via Paypal, (perhaps via [http://www.bitcoin-otc.com/ #bitcoin-otc] ) most exchanges do not allow funding through PayPal. This is due to repeated cases where someone pays for bitcoins with Paypal receives their bitcoins, and then fraudulently complains to Paypal that they never received their purchase. PayPal often sides with the fraudulent buyer in this case which means any seller would need to cover that risk with higher fees or refuse to accept PayPal altogether.&lt;br /&gt;
&lt;br /&gt;
Buying Bitcoins from individuals with this method is still possible, but requires the seller to have some trust that the buyer will not file a claim with PayPal to reverse the payment.&lt;br /&gt;
&lt;br /&gt;
=== Where can I find a forum to discuss Bitcoin? ===&lt;br /&gt;
&lt;br /&gt;
Please visit the  [[Bitcoin:Community_portal#Bitcoin_Community_Forums_on_various_platforms|Community Portal]] for links to Bitcoin-related forums.&lt;br /&gt;
&lt;br /&gt;
=== How are new bitcoins created? ===&lt;br /&gt;
&lt;br /&gt;
[[File:total_bitcoins_over_time_graph.png|thumb|Number of bitcoins over time, assuming a perfect 10-minute interval.]]&lt;br /&gt;
New bitcoins are generated by the network through the process of &amp;quot;[[#What is mining?|&#039;&#039;mining&#039;&#039;]]&amp;quot;. In a process that is similar to a continuous lottery, mining nodes on the network are awarded bitcoins each time they find the solution to a certain mathematical problem (and thereby create a new [[block]]). Creating a block is a [[proof of work]] with a difficulty that varies with the overall strength of the network.  The reward for solving a block is [[Controlled Currency Supply|automatically adjusted]] so that in roughly the first four years of operation of the Bitcoin network, {{formatnum:10500000}} BTC will be created. This amount is halved each four years, so it will be {{formatnum:5250000}} over years 4-8, {{formatnum:2625000}} over years 8-12, and so on. Thus the total number of bitcoins in existence will not exceed {{formatnum:21000000}}. See [[Controlled Currency Supply]].&lt;br /&gt;
&lt;br /&gt;
Blocks are [[Mining|mined]] every 10 minutes, on average and for the first four years ({{formatnum:210000}} blocks) each block includes 50 new bitcoins.  As the amount of processing power directed at mining changes, the difficulty of creating new bitcoins changes.  This difficulty factor is calculated every 2016 blocks and is based upon the time taken to generate the previous 2016 blocks. See [[Mining]].&lt;br /&gt;
&lt;br /&gt;
=== What&#039;s the current total number of bitcoins in existence?  ===&lt;br /&gt;
&lt;br /&gt;
[http://blockexplorer.com/q/totalbc Current count]. Also see [https://blockchain.info/charts/total-bitcoins Total bitcoins in circulation chart]&lt;br /&gt;
&lt;br /&gt;
The number of blocks times the coin value of a block is the number of coins in existence. The coin value of a block is 50 BTC for each of the first {{formatnum:210000}} blocks, 25 BTC for the next {{formatnum:210000}} blocks, then 12.5 BTC, 6.25 BTC and so on.&lt;br /&gt;
&lt;br /&gt;
=== How divisible are bitcoins?  ===&lt;br /&gt;
&lt;br /&gt;
A bitcoin can be divided down to 8 decimal places. Therefore, 0.00000001 BTC is the smallest amount that can be handled in a transaction. If necessary, the protocol and related software can be modified to handle even smaller amounts.&lt;br /&gt;
&lt;br /&gt;
=== What do I call the various denominations of bitcoins? ===&lt;br /&gt;
&lt;br /&gt;
There is a lot of discussion about the naming of these fractions of bitcoins. The leading candidates are:&lt;br /&gt;
&lt;br /&gt;
* 1 BTC = 1 bitcoin&lt;br /&gt;
* 0.01 BTC = 1 cBTC = 1 centibitcoin (also referred to as bitcent)&lt;br /&gt;
* 0.001 BTC = 1 mBTC = 1 millibitcoin (also referred to as mbit (pronounced em-bit) or millibit or even bitmill)&lt;br /&gt;
* 0.000 001 BTC = 1 μBTC = 1 microbitcoin (also referred to as ubit (pronounced yu-bit) or microbit)&lt;br /&gt;
&lt;br /&gt;
The above follows the accepted international SI prefixes for hundredths, thousandths, and millionths. There are many arguments against the special case of 0.01 BTC since it is unlikely to represent anything meaningful as the Bitcoin economy grows (it certainly won&#039;t be the equivalent of 0.01 USD, GBP or EUR). Equally, the inclusion of existing national currency denominations such as &amp;quot;cent&amp;quot;, &amp;quot;nickel&amp;quot;, &amp;quot;dime&amp;quot;, &amp;quot;pence&amp;quot;, &amp;quot;pound&amp;quot;, &amp;quot;kopek&amp;quot; and so on are to be discouraged; this is a worldwide currency.&lt;br /&gt;
&lt;br /&gt;
One exception is the &amp;quot;satoshi&amp;quot; which is smallest denomination currently possible &lt;br /&gt;
&lt;br /&gt;
* 0.000 000 01 BTC = 1 satoshi (pronounced sa-toh-shee)&lt;br /&gt;
which is so named in honour of Satoshi Nakamoto, the pseudonym of the inventor of Bitcoin.&lt;br /&gt;
&lt;br /&gt;
For an overview of all defined units of Bitcoin (including less common and niche units), see [[Units]].&lt;br /&gt;
&lt;br /&gt;
Further discussion on this topic can be found on the forums here:&lt;br /&gt;
&lt;br /&gt;
* [http://forum.bitcoin.org/index.php?topic=14438.msg195287#msg195287 We need names]&lt;br /&gt;
* [http://forum.bitcoin.org/index.php?topic=8282.0 What to call 0.001 BTC]&lt;br /&gt;
&lt;br /&gt;
=== How does the halving work when the number gets really small? ===&lt;br /&gt;
&lt;br /&gt;
Eventually the reward will go from 0.00000001 BTC to zero and no more bitcoins will be created.  &lt;br /&gt;
&lt;br /&gt;
The block reward calculation is done as a right bitwise shift of a 64-bit signed integer, which means it is divided by two and rounded down. The integer is equal to the value in BTC * 100,000,000 since internally in the reference client software, all Bitcoin balances and values are stored as unsigned integers.&lt;br /&gt;
&lt;br /&gt;
With an initial block reward of 50 BTC, it will take many 4-year periods for the block reward to reach zero.&lt;br /&gt;
&lt;br /&gt;
=== How long will it take to generate all the coins? ===&lt;br /&gt;
&lt;br /&gt;
The last block that will generate coins will be block #6,929,999 which should be generated at or near the year 2140. The total number of coins in circulation will then remain static at 20,999,999.9769 BTC.&lt;br /&gt;
&lt;br /&gt;
Even if the allowed precision is expanded from the current 8 decimals, the total BTC in circulation will always be slightly below 21 million (assuming everything else stays the same). For example, with 16 decimals of precision, the end total would be 20,999,999.999999999496 BTC.&lt;br /&gt;
&lt;br /&gt;
=== If no more coins are going to be generated, will more blocks be created? ===&lt;br /&gt;
&lt;br /&gt;
Absolutely!  Even before the creation of coins ends, the use of [[transaction fee|transaction fees]] will likely make creating new blocks more valuable from the fees than the new coins being created.  When coin generation ends, these fees will sustain the ability to use bitcoins and the Bitcoin network. There is no practical limit on the number of blocks that will be mined in the future.&lt;br /&gt;
&lt;br /&gt;
=== But if no more coins are generated, what happens when Bitcoins are lost? Won&#039;t that be a problem? ===&lt;br /&gt;
&lt;br /&gt;
Because of the law of supply and demand, when fewer bitcoins are available the ones that are left will be in higher demand, and therefore will have a higher value. So, as Bitcoins are lost, the remaining bitcoins will eventually increase in value to compensate. As the value of a bitcoin increases, the number of bitcoins required to purchase an item &#039;&#039;&#039;de&#039;&#039;&#039;creases. This is a [[Deflationary spiral|deflationary economic model]]. As the average transaction size reduces, transactions will probably be denominated in sub-units of a bitcoin such as millibitcoins (&amp;quot;Millies&amp;quot;) or microbitcoins (&amp;quot;Mikes&amp;quot;).&lt;br /&gt;
&lt;br /&gt;
The Bitcoin protocol uses a base unit of one hundred-millionth of a Bitcoin (&amp;quot;a Satoshi&amp;quot;), but unused bits are available in the protocol fields that could be used to denote even smaller subdivisions.&lt;br /&gt;
&lt;br /&gt;
=== If every transaction is broadcast via the network, does Bitcoin scale? ===&lt;br /&gt;
The Bitcoin protocol allows lightweight clients that can use Bitcoin without downloading the entire transaction history. As traffic grows and this becomes more critical, implementations of the concept will be developed. Full network nodes will at some point become a more specialized service.&lt;br /&gt;
&lt;br /&gt;
With some modifications to the software, full Bitcoin nodes could easily keep up with both VISA and MasterCard combined, using only fairly modest hardware (a single high end server by todays standards). It is worth noting that the MasterCard network is structured somewhat like Bitcoin itself - as a peer to peer broadcast network.&lt;br /&gt;
&lt;br /&gt;
Learn more about [[Scalability]].&lt;br /&gt;
&lt;br /&gt;
==Economy==&lt;br /&gt;
=== Where does the value of Bitcoin stem from? What backs up Bitcoin? ===&lt;br /&gt;
Bitcoins have value because they are useful and because they are [[Controlled Currency Supply|scarce]]. As they are accepted by more merchants, their value will [http://en.wikipedia.org/wiki/Sticky_%28economics%29 stabilize]. See the [[Trade|list of Bitcoin-accepting sites]].&lt;br /&gt;
&lt;br /&gt;
When we say that a currency is backed up by gold, we mean that there&#039;s a promise in place that you can exchange the currency for gold. Bitcoins, like dollars and euros, are not backed up by anything except the variety of merchants that accept them.&lt;br /&gt;
&lt;br /&gt;
It&#039;s a common misconception that Bitcoins gain their value from the cost of electricity required to generate them. Cost doesn&#039;t equal value – hiring 1,000 men to shovel a big hole in the ground may be costly, but not valuable. Also, even though scarcity is a critical requirement for a useful currency, it alone doesn&#039;t make anything valuable. For example, your fingerprints are scarce, but that doesn&#039;t mean they have any exchange value.&lt;br /&gt;
&lt;br /&gt;
Alternatively it needs to be added that while the law of supply and demand applies it does not guarantee value of Bitcoins in the future.  If confidence in Bitcoins is lost then it will not matter that the supply can no longer be increased, the demand will fall off with all holders trying to get rid of their coins.  An example of this can be seen in cases of state currencies, in cases when the state in question dissolves and so no new supply of the currency is available (the central authority managing the supply is gone), however the demand for the currency falls sharply because confidence in its purchasing power disappears.  Of-course Bitcoins do not have such central authority managing the supply of the coins, but it does not prevent confidence from eroding due to other situations that are not necessarily predictable.&lt;br /&gt;
&lt;br /&gt;
=== Is Bitcoin a bubble? ===&lt;br /&gt;
Yes, in the same way as the euro and dollar are. They only have value in exchange and have no inherent value. If everyone suddenly stopped accepting your dollars, euros or bitcoins, the &amp;quot;bubble&amp;quot; would burst and their value would drop to zero. But that is unlikely to happen: even in Somalia, where the government collapsed 20 years ago, [http://en.wikipedia.org/wiki/Somali_shilling Somali shillings] are still accepted as payment.&lt;br /&gt;
&lt;br /&gt;
=== Is Bitcoin a Ponzi scheme? ===&lt;br /&gt;
In a Ponzi Scheme, the founders persuade investors that they’ll profit. Bitcoin does not make such a guarantee. There is no central entity, just individuals building an economy.&lt;br /&gt;
&lt;br /&gt;
A ponzi scheme is a zero sum game. Early adopters can only profit at the expense of late adopters. Bitcoin has possible win-win outcomes. Early adopters profit from the rise in value. Late adopters, and indeed, society as a whole, benefit from the usefulness of a stable, fast, inexpensive, and widely accepted p2p currency.&lt;br /&gt;
&lt;br /&gt;
The fact that early adopters benefit more doesn&#039;t alone make anything a Ponzi scheme. All good investments in successful companies have this quality.&lt;br /&gt;
&lt;br /&gt;
=== Doesn&#039;t Bitcoin unfairly benefit early adopters? ===&lt;br /&gt;
Early adopters have a large number of bitcoins now because they took a risk and invested resources in an unproven technology. By so doing, they have helped Bitcoin become what it is now and what it will be in the future (hopefully, a ubiquitous decentralized digital currency). It is only fair they will reap the benefits of their successful investment.&lt;br /&gt;
&lt;br /&gt;
In any case, any bitcoin generated will probably change hands dozens of time as a medium of exchange, so the profit made from the initial distribution will be insignificant compared to the total commerce enabled by Bitcoin.&lt;br /&gt;
&lt;br /&gt;
Since the pricing of Bitcoins has fallen greatly from its June 2011 peak, prices today are much more similar to those enjoyed by many early adopters.  Those who are buying Bitcoins today likely believe that Bitcoin will grow significantly in the future.  Setting aside the brief opportunity to have sold Bitcoins at the June 2011 peak enjoyed by few, the early-adopter window is arguably still open.&lt;br /&gt;
&lt;br /&gt;
===Won&#039;t loss of wallets and the finite amount of Bitcoins create excessive deflation, destroying Bitcoin? ===&lt;br /&gt;
Worries about Bitcoin being destroyed by deflation are not entirely unfounded.  Unlike most currencies, which experience inflation as their founding institutions create more and more units, Bitcoin will likely experience gradual deflation with the passage of time.  Bitcoin is unique in that only a small amount of units will ever be produced (twenty-one million to be exact), this number has been known since the project&#039;s inception, and the units are created at a predicable rate.&lt;br /&gt;
&lt;br /&gt;
Also, Bitcoin users are faced with a danger that doesn&#039;t threaten users of any other currency: if a Bitcoin user loses his wallet, his money is gone forever, unless he finds it again.  And not just to him;  it&#039;s gone completely out of circulation, rendered utterly inaccessible to anyone. As people will lose their wallets, the total number of Bitcoins will slowly decrease.&lt;br /&gt;
&lt;br /&gt;
Therefore, Bitcoin seems to be faced with a unique problem.  Whereas most currencies inflate over time, Bitcoin will mostly likely do the just the opposite.  Time will see the irretrievable loss of an ever-increasing number of Bitcoins.  An already small number will be permanently whittled down further and further.  And as there become fewer and fewer Bitcoins, the laws of supply and demand suggest that their value will probably continually rise.&lt;br /&gt;
&lt;br /&gt;
Thus Bitcoin is bound to once again stray into mysterious territory, because no one exactly knows what happens to a currency that grows continually more valuable. Economists generally agree that a low level of inflation is a good thing for a currency, but nobody is quite sure about what might happens to one that continually deflates.  Although deflation could hardly be called a rare phenomenon, steady, constant deflation is unheard of.  There may be a lot of speculation, no one has any hard data to back up their claims.&lt;br /&gt;
&lt;br /&gt;
That being said, there is a mechanism in place to combat the obvious consequences.  Extreme deflation would render most currencies highly impractical: if a single Canadian dollar could suddenly buy the holder a car, how would one go about buying bread or candy?  Even pennies would fetch more than a person could carry.  Bitcoin, however, offers a simple and stylish solution: infinite divisibility.  Bitcoins can be divided up and trade into as small of pieces as one wants, so no matter how valuable Bitcoins become, one can trade them in practical quantities.  &lt;br /&gt;
&lt;br /&gt;
In fact, infinite divisibility should allow Bitcoins to function in cases of extreme wallet loss.  Even if, in the far future, so many people have lost their wallets that only a single Bitcoin, or a fraction of one, remains, Bitcoin should continue to function just fine.  No one can claim to be sure what is going to happen, but deflation may prove to present a smaller threat than many expect.&lt;br /&gt;
&lt;br /&gt;
For more information, see the [[Deflationary spiral]] page.&lt;br /&gt;
&lt;br /&gt;
=== What if someone bought up all the existing Bitcoins? ===&lt;br /&gt;
Bitcoin markets are competitive -- meaning the price of a bitcoin will rise or fall depending on supply and demand at certain price levels.  Only a fraction of bitcoins issued to date are found on the exchange markets for sale.  So even though technically a buyer with lots of money could buy all the bitcoins offered for sale, unless those holding the rest of the bitcoins offer them for sale as well, even the wealthiest, most determined buyer can&#039;t get at them.&lt;br /&gt;
&lt;br /&gt;
Additionally, new currency continues to be issued daily and will continue to do so for decades though over time the rate at which they are issued declines to insignificant levels.  Those who are mining aren&#039;t obligated to sell their bitcoins so not all bitcoins will make it to the markets even.&lt;br /&gt;
&lt;br /&gt;
This situation doesn&#039;t suggest, however, that the markets aren&#039;t vulnerable to price manipulation.  It doesn&#039;t take significant amounts of money to move the market price up or down and thus Bitcoin remains a volatile asset.&lt;br /&gt;
&lt;br /&gt;
===What if someone creates a new block chain, or a new digital currency that renders Bitcoin obsolete?===&lt;br /&gt;
&lt;br /&gt;
That the block chain cannot be easily forked represents one of the central security mechanisms of Bitcoin.  Given the choice between two block chains, a Bitcoin miner always chooses the longer one - that is to say, the one with the more complex hash.  Thusly, it ensures that each user can only spend their bitcoins once, and that no user gets ripped off.&lt;br /&gt;
&lt;br /&gt;
As a consequence of the block chain structure, there may at any time be many different sub-branches, and the possibility always exists of a transaction being over-written by the longest branch, if it has been recorded in a shorter one.  The older a transaction is though, the lower its chances of being over-written, and the higher of becoming permanent.  Although the block chain prevents one from spending more Bitcoins than one has, it means that transactions can be accidentally nullified.  &lt;br /&gt;
&lt;br /&gt;
A new block chain would leave the network vulnerable to [[double-spending|double-spend]] attacks.  However, the creation of a viable new chain presents considerable difficulty, and the possibility does not present much of a risk.&lt;br /&gt;
&lt;br /&gt;
Bitcoin will always choose the longer Block Chain and determines the relative length of two branches by the complexities of their hashes.  Since the hash of each new block is made from that of the block preceding it, to create a block with a more complex hash, one must be prepared to do more computation than has been done by the entire Bitcoin network from the fork point up to the newest of the blocks one is trying to supersede.  Needless to say, such an undertaking would require a very large amount of processing power and since Bitcoin is continually growing and expanding, it will likely only require more with the passage of time.&lt;br /&gt;
&lt;br /&gt;
A much more distinct and real threat to the Bitcoin use is the development of other, superior virtual currencies, which could supplant Bitcoin and render it obsolete and valueless.&lt;br /&gt;
&lt;br /&gt;
A great deal of careful thought and ingenuity has gone into the development of Bitcoin, but it is the first of its breed, a prototype, and vulnerable to more highly-evolved competitors. At present, any threatening rivals have yet to rear its head; Bitcoin remains the first and foremost private virtual currency, but we can offer no guarantees that it will retain that position.  It would certainly be in keeping with internet history for similar system built from the same principles to supersede and cast Bitcoin into obsolescence, after time had revealed its major shortcomings.  Friendster and Myspace suffered similar fates at the hand of Facebook, Napster was ousted by Limeware, Bearshare and torrent applications, and Skype has all but crushed the last few disciples of the Microsoft Messenger army.  &lt;br /&gt;
&lt;br /&gt;
This may sound rather foreboding, so bear in mind that introduction of new and possibly better virtual currencies will not necessarily herald Bitcoin&#039;s demise.  If Bitcoin establishes itself sufficiently firmly before the inception of the next generation of private, online currencies as to gain widespread acceptance and general stability, future currencies may pose little threat even if they can claim superior design.&lt;br /&gt;
&lt;br /&gt;
==Sending and Receiving Payments==&lt;br /&gt;
&lt;br /&gt;
=== Why do I have to wait 10 minutes before I can spend money I received? ===&lt;br /&gt;
&lt;br /&gt;
10 minutes is the average time taken to find a block. It can be significantly more or less time than that depending on luck; 10 minutes is simply the average case. &lt;br /&gt;
&lt;br /&gt;
You can see how long all other recent transactions have taken here: [http://bitcoinstats.org/ BitcoinStats.org]. &lt;br /&gt;
&lt;br /&gt;
[[Blocks]] (shown as &amp;quot;confirmations&amp;quot; in the GUI) are how the Bitcoin achieves consensus on who owns what. Once a block is found everyone agrees that you now own those coins, so you can spend them again. Until then it&#039;s possible that some network nodes believe otherwise, if somebody is attempting to defraud the system by reversing a transaction. The more confirmations a transaction has, the less risk there is of a reversal. Only 6 blocks or 1 hour is enough to make reversal computationally impractical. This is dramatically better than credit cards which can see chargebacks occur up to three months after the original transaction!&lt;br /&gt;
&lt;br /&gt;
Ten minutes was specifically chosen by [[Satoshi]] as a tradeoff between propagation time of new blocks in large networks and the amount of work wasted due to chain splits. For a more technical explanation, see Satoshi&#039;s [http://www.bitcoin.org/bitcoin.pdf original technical paper].&lt;br /&gt;
&lt;br /&gt;
[[File:TransactionConfirmationTimesExample.PNG]]&lt;br /&gt;
&lt;br /&gt;
=== Do you have to wait until my transactions are confirmed in order to buy or sell things with Bitcoin? ===&lt;br /&gt;
&lt;br /&gt;
YES, you do, IF the transaction is non-recourse. The Bitcoin reference software does not display transactions as confirmed until six blocks have passed (confirmations). As transactions are burred in the chain they become increasingly non-reversible but are very reversible before the first confirmation. Two to six confirmations are recommended for non-recourse situations depending on the value of the transactions involved.&lt;br /&gt;
&lt;br /&gt;
When people ask this question they are usually thinking about applications like supermarkets.  This generally is a recourse situation: if somebody tries to double-spend on a face-to-face transaction it might work a few times, but probabalistically speaking eventually one of the double-spends will get noticed, and the penalty for shoplifting charges in most localities is calibrated to be several times worse than the proceeds of a single shoplifting event.&lt;br /&gt;
&lt;br /&gt;
Double-spends might be a concern for something like a snack machine in a low-traffic area with no nearby security cameras.  Such a machine shouldn&#039;t honor 0-confirmation payments, and should instead use some other mechanism of clearing Bitcoin or validating transactions against reversal, see the wiki article [[Myths#Point_of_sale_with_bitcoins_isn.27t_possible_because_of_the_10_minute_wait_for_confirmation|here]] for alternatives.&lt;br /&gt;
&lt;br /&gt;
Applications that require immediate payment processing, like supermarkets or snack machines, need to manage the risks. Here is one way to reverse an unconfirmed payment:&lt;br /&gt;
&lt;br /&gt;
A [[Double-spending#Finney_attack|Finney attack]], in which an attacker mines a block containing a movement of some coins back to themselves. Once they find a block solution, they quickly go to a merchant and make a purchase, then broadcast the block, thus taking back the coins. This attack is a risk primarily for goods that are dispatched immediately, like song downloads or currency trades. Because the attacker can&#039;t choose the time of the attack, it isn&#039;t a risk for merchants such as supermarkets where you can&#039;t choose exactly when to pay (due to queues, etc). The attack can fail if somebody else finds a block containing the purchasing transaction before you release your own block, therefore, merchants can reduce but not eliminate the risk by making purchasers wait some length of time that&#039;s less than a confirm.&lt;br /&gt;
&lt;br /&gt;
Because pulling off this attack is not trivial, merchants who need to sell things automatically and instantly are most likely to just price the cost of reversal fraud in, or use insurance.&lt;br /&gt;
&lt;br /&gt;
=== I was sent some bitcoins and they haven&#039;t arrived yet! Where are they? ===&lt;br /&gt;
&lt;br /&gt;
Don&#039;t panic!  There are a number of reasons why your bitcoins might not show up yet, and a number of ways to diagnose them.  &lt;br /&gt;
&lt;br /&gt;
The latest version of the Bitcoin-Qt client tells you how far it has yet to go in downloading the blockchain.  Hover over the icon in the bottom right corner of the client to learn your client&#039;s status.&lt;br /&gt;
&lt;br /&gt;
If it has not caught up then it&#039;s possible that your transaction hasn&#039;t been included in a block yet.  &lt;br /&gt;
&lt;br /&gt;
You can check pending transactions in the network by going [http://blockchain.info here] and then searching for your address.  If the transaction is listed here then it&#039;s a matter of waiting until it gets included in a block before it will show in your client.  &lt;br /&gt;
&lt;br /&gt;
If the transaction is based on a coin that was in a recent transaction then it could be considered a low priority transaction. Transfers can take longer if the transaction fee paid was not high enough.  If there is no fee at all the transfer can get a very low priority and take hours or even days to be included in a block.&lt;br /&gt;
&lt;br /&gt;
=== Why does my Bitcoin address keep changing? ===&lt;br /&gt;
&lt;br /&gt;
Whenever the address listed in &amp;quot;Your address&amp;quot; receives a transaction, Bitcoin replaces it with a new address. This is meant to encourage you to use a new address for every transaction, which enhances [[anonymity]]. All of your old addresses are still usable: you can see them in &#039;&#039;Settings -&amp;gt; Your Receiving Addresses&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
===How much will the transaction fee be?===&lt;br /&gt;
&lt;br /&gt;
Some transactions might require a [[transaction fee]] for them to get confirmed in a timely manner.  The transaction fee is processed by and received by the bitcoin miner.  The most recent version of the Bitcoin client will estimate an appropriate fee when a fee might be required.&lt;br /&gt;
&lt;br /&gt;
The fee is added to the payment amount.  For example, if you are sending a 1.234 BTC payment and the client requires a 0.0005 BTC fee, then 1.2345 BTC will be subtracted from the wallet balance for the entire transaction and the address for where the payment was sent will receive a payment of 1.234 BTC.&lt;br /&gt;
&lt;br /&gt;
A fee might be imposed because your transaction looks like a denial of service attack to the Bitcoin system. For example, it might be burdensome to transmit or it might recycle Bitcoins you recently received.  The wallet software attempts to avoid generating burdensome transactions, but it isn&#039;t always able to do so: The funds in your wallet might be new or composed of many tiny payments. &lt;br /&gt;
&lt;br /&gt;
Because the fee is related to the amount of data that makes up the transaction and not to the amount of Bitcoins being sent, the fee may seem extremely low (0.0005 BTC for a 1,000 BTC transfer) or unfairly high (0.004 BTC for a 0.02 BTC payment, or about 20%).  If you are receiving tiny amounts (&#039;&#039;e.g.&#039;&#039; as small payments from a mining pool) then fees when sending will be higher than if your activity follows the pattern of conventional consumer or business transactions. &lt;br /&gt;
&lt;br /&gt;
As of Bitcoin 0.5.3 the required fee will not be higher than 0.05 BTC. For most users there is usually no required fee at all. If a fee is required it will most commonly be 0.0005 BTC.&lt;br /&gt;
&lt;br /&gt;
=== What happens when someone sends me a bitcoin but my computer is powered off? ===&lt;br /&gt;
&lt;br /&gt;
Bitcoins are not actually &amp;quot;sent&amp;quot; to your wallet; the software only uses that term so that we can use the currency without having to learn new concepts.  Your wallet is only needed when you wish to spend coins that you&#039;ve received.&lt;br /&gt;
&lt;br /&gt;
If you are sent coins when your wallet client program is not running, and you later launch the wallet client program, the coins will eventually appear as if they were just received in the wallet. That is to say, when the client program is started it must download blocks and catch up with any transactions it did not already know about.&lt;br /&gt;
&lt;br /&gt;
=== How long does &amp;quot;synchronizing&amp;quot; take when the Bitcoin client is first installed? What&#039;s it doing? ===&lt;br /&gt;
&lt;br /&gt;
The popular Bitcoin client software from bitcoin.org implements a &amp;quot;full&amp;quot; Bitcoin node: It can carry out all the duties of the Bitcoin P2P system, it isn&#039;t simply a &amp;quot;client&amp;quot;. One of the principles behind the operation of full Bitcoin nodes is that they don&#039;t assume that the other participants have followed the rules of the Bitcoin system. During synchronization, the software is processing historical Bitcoin transactions and making sure for itself that all of the rules of the system have been correctly followed.&lt;br /&gt;
&lt;br /&gt;
In normal operation, after synchronizing, the software should use a hardly noticeable amount of your computer&#039;s resources.&lt;br /&gt;
&lt;br /&gt;
When the wallet client program is first installed, its initial validation requires a lot of work from your computer&#039;s hard disk, so the amount of time to synchronize depends on your disk speed and, to a lesser extent, your CPU speed. It can take anywhere from a few hours to a day or so. On a slow computer it could take more than 40 hours of continuous synchronization, so check your computer&#039;s power-saving settings to ensure that it does not turn its hard disk off when unattended for a few hours.  You can use the Bitcoin software during synchronization, but you may not see recent payments to you until the client program has caught up to the point where those transactions happened.&lt;br /&gt;
&lt;br /&gt;
If you feel that this process takes too long, you can download a pre-synchronized blockchain from [http://eu1.bitcoincharts.com/blockchain/ http://eu1.bitcoincharts.com/blockchain/]. Alternatively, you can try an alternative &amp;quot;lite&amp;quot; client such as Multibit or a super-light client like electrum, though these clients have somewhat weaker security, are less mature, and don&#039;t contribute to the health of the P2P network.&lt;br /&gt;
&lt;br /&gt;
==Networking==&lt;br /&gt;
=== Do I need to configure my firewall to run Bitcoin? ===&lt;br /&gt;
&lt;br /&gt;
Bitcoin will connect to other nodes, usually on TCP port 8333. You will need to allow outgoing TCP connections to port 8333 if you want to allow your Bitcoin client to connect to many nodes. [[Testnet]] uses TCP port 18333 instead of 8333.&lt;br /&gt;
&lt;br /&gt;
If you want to restrict your firewall rules to a few IPs, you can find stable nodes in the [[Fallback Nodes|fallback nodes list]].&lt;br /&gt;
&lt;br /&gt;
=== How does the peer finding mechanism work? ===&lt;br /&gt;
&lt;br /&gt;
Bitcoin finds peers primarily by forwarding peer announcements within its own network and each node saves a database of peers that it&#039;s aware of, for future use. In order to bootstrap this process Bitcoin needs a list of initial peers, these can be provided manually but normally it obtains them by querying a set of DNS domain names which have automatically updated lists, if that doesn&#039;t work it falls back to a build-in list which is updated from time to time in new versions of the software. There is also an IRC based mechanism but it is disabled by default.&lt;br /&gt;
&lt;br /&gt;
==Mining==&lt;br /&gt;
===What is mining?===&lt;br /&gt;
[[Mining]] is the process of spending computation power to secure Bitcoin transactions against reversal and introducing new Bitcoins to the system.&lt;br /&gt;
&lt;br /&gt;
Technically speaking, mining is the calculation of a [[hash]] of the a block header, which includes among other things a reference to the previous block, a hash of a set of transactions and a [[nonce]]. If the hash value is found to be less than the current [[target]] (which is inversely proportional to the [[difficulty]]), a new block is formed and the miner gets the newly generated Bitcoins (50 per block at current levels). If the hash is not less than the current target, a new nonce is tried, and a new hash is calculated. This is done millions of times per second by each miner.&lt;br /&gt;
&lt;br /&gt;
===Is mining used for some useful computation?===&lt;br /&gt;
The computations done when mining are internal to Bitcoin and not related to any other distributed computing projects. They serve the purpose of securing the Bitcoin network, which is useful.&lt;br /&gt;
&lt;br /&gt;
===Is it not a waste of energy?===&lt;br /&gt;
Spending energy on creating and securing a free monetary system is hardly a waste. Also, services necessary for the operation of currently widespread monetary systems, such as banks and credit card companies, also spend energy, arguably more than Bitcoin would.&lt;br /&gt;
&lt;br /&gt;
===Why don&#039;t we use calculations that are also useful for some other purpose?===&lt;br /&gt;
To provide security for the Bitcoin network, the calculations involved need to have some very specific features. These features are incompatible with leveraging the computation for other purposes.&lt;br /&gt;
&lt;br /&gt;
===How can we stop miners from creating zero transaction blocks?===&lt;br /&gt;
The incentive for miners to include transactions is in the fees that come along with them. If we were to implement some minimum number of transactions per block it would be trivial for a miner to create and include transactions merely to surpass that threshold. As the network matures, the block reward drops, and miners become more dependent on transactions fees to pay their costs, the problem of zero transaction blocks should diminish over time.&lt;br /&gt;
&lt;br /&gt;
===How does the proof-of-work system help secure Bitcoin?===&lt;br /&gt;
To give a general idea of the mining process, imagine this setup:&lt;br /&gt;
&lt;br /&gt;
  payload = &amp;lt;some data related to things happening on the Bitcoin network&amp;gt;&lt;br /&gt;
  nonce = 1&lt;br /&gt;
  hash = [http://en.wikipedia.org/wiki/SHA2 SHA2]( [http://en.wikipedia.org/wiki/SHA2 SHA2]( payload + nonce ) )&lt;br /&gt;
&lt;br /&gt;
The cost function use in bitcoin is the [http://en.wikipedia.org/wiki/Hashcash Hashcash] cost-function.  Bit coin mining intensively computes a high value Hashcash stamp on the underlying block chain data.  The hashcash stamp that Bitcoin miners produce is computed by repeatedly increasing &amp;quot;nonce&amp;quot; until&lt;br /&gt;
the hash function yields a value, that has the rare property of being below a certain&lt;br /&gt;
target threshold. (In other words: The hash &amp;quot;starts with a certain number of zeroes&amp;quot;,&lt;br /&gt;
if you display it in the fixed-length representation, that is typically used.)&lt;br /&gt;
&lt;br /&gt;
As can be seen, the mining process doesn&#039;t compute anything special. It merely&lt;br /&gt;
tries to find a number (also referred to as nonce) which - in combination with the payload -&lt;br /&gt;
results in a hash with special properties.&lt;br /&gt;
&lt;br /&gt;
The advantage of using the hashcash mechanism consists of the fact, that it is very easy to check a result: Given the payload and a specific nonce, only a single call of the hashing function is needed to verify that the hash has the required properties. Since there is no known way to find these hashes other than brute force, this can be used as a &amp;quot;proof of work&amp;quot; that someone invested a lot of computing power to find the correct nonce for this payload.&lt;br /&gt;
&lt;br /&gt;
This feature is then used in the Bitcoin network to secure various aspects. An attacker&lt;br /&gt;
that wants to introduce malicious payload data into the network, will need to do the&lt;br /&gt;
required hashcash proof of work before it will be accepted. And as long as honest miners have more&lt;br /&gt;
computing power, they can always outpace an attacker.&lt;br /&gt;
&lt;br /&gt;
Also see [http://en.wikipedia.org/wiki/Hashcash Hashcash] and [http://en.wikipedia.org/wiki/Proof-of-work_system Proof-of-work system] and [http://en.wikipedia.org/wiki/SHA2 SHA2] and on Wikipedia.&lt;br /&gt;
&lt;br /&gt;
===Why was the &amp;quot;Generate coin&amp;quot; option of the client software removed?===&lt;br /&gt;
&lt;br /&gt;
In the early days of Bitcoin, it was easy for anyone to find new blocks using standard CPUs. As more and more people started mining, the [[difficulty]] of finding new blocks has greatly increased to the point where the average time for a CPU to find a single block can be many years. The only cost-effective method of [[Mining|mining]] is using a high-end graphics card with special software (see also [[Why a GPU mines faster than a CPU]]) and/or joining a [[Bitcoin Pool|mining pool]]. Since solo CPU mining is essentially useless, it was removed from the GUI of the Bitcoin software.&lt;br /&gt;
&lt;br /&gt;
==Security==&lt;br /&gt;
&lt;br /&gt;
===Could miners collude to give themselves money or to fundamentally change the nature of Bitcoin?===&lt;br /&gt;
&lt;br /&gt;
There are two questions in here.  Let&#039;s look at them separately.&lt;br /&gt;
&lt;br /&gt;
;Could miners gang up and give themselves money?&lt;br /&gt;
&lt;br /&gt;
Mining itself is the process of creating new blocks in the block chain.  Each block contains a list of all the transactions that have taken place across the entire Bitcoin network since the last block was created, as well as a hash of the previous block.  New blocks are &#039;mined&#039;, or rather, generated, by  Bitcoin clients correctly guessing sequences of characters in codes called &#039;hashes,&#039; which are created using information from previous blocks.  Bitcoin users may download specialized &#039;mining&#039; software, which  allows them to dedicate some amount of their processing power – however large or small – to guessing at strings within the hash of the previous block.  Whoever makes the right guess first, thus creating a new block, receives a reward in Bitcoins.&lt;br /&gt;
	&lt;br /&gt;
The block chain is one of the two structures that makes Bitcoin secure, the other being the public-key encryption system on which Bitcoin trade is based.  The block chain assures that not only is every single transaction that ever takes place recorded, but that every single transaction is recorded on the computer of anyone who chooses to store the relevant information.  Many, many users have complete records of every transaction in Bitcoins history readily available to them at any point, and anyone who wants in the information can obtain it with ease.  These things make Bitcoin very hard to fool.&lt;br /&gt;
&lt;br /&gt;
The Bitcoin network takes considerable processing power to run, and since those with the most processing power can make the most guesses, those who put the most power toward to sustaining the network earn the most currency.  Each correct guess yields, at present, fifty Bitcoins, and as Bitcoins are presently worth something (although the value still fluctuates) every miner who earns any number of Bitcoins makes money.  Some miners pull in Bitcoins on their own; and some also join or form pools wherein all who contribute earn a share of the profits.  &lt;br /&gt;
	&lt;br /&gt;
Therefore, first answer is a vehement “yes”  – no only can miners collude to get more money, Bitcoin is designed to encourage them to do so.  Bitcoin pools are communal affairs, and there is nothing dishonest or underhanded about them.&lt;br /&gt;
&lt;br /&gt;
Of course, the real question is:&lt;br /&gt;
&lt;br /&gt;
;Can they do so in ways not sanction by Bitcoin developers?  Is there any way to rip off the network and make loads of money dishonestly?&lt;br /&gt;
&lt;br /&gt;
Bitcoin isn&#039;t infallible.  It can be cheated, but doing so is extremely difficult.  Bitcoin was designed to evade some of the central problems with modern currencies – namely, that their trustworthiness hinges upon that of people who might not have users&#039; best interests in mind.  Every currency in the world (other than Bitcoin) is controlled by large institutions who keep track of what&#039;s done with it, and who can manipulate its value.  And every other currency has value because people trust the institutions that control them.&lt;br /&gt;
&lt;br /&gt;
Bitcoin doesn&#039;t ask that its users trust any institution.  Its security is based on the cryptography that is an integral part of its structure, and that is readily available for any and all to see.  Instead of one entity keeping track of transactions, the entire network does, so Bitcoins are astoundingly difficult to steal, or double-spend. Bitcoins are created in a regular and predictable fashion, and by many different users, so no one can decide to make a whole lot more and lessen their value.  In short, Bitcoin is designed to be inflation-proof, double-spend-proof and completely distributed.&lt;br /&gt;
&lt;br /&gt;
Nonetheless, there are a few ways that one can acquire Bitcoins dishonestly.  Firstly, one can steal private keys.  Key theft isn&#039;t something that Bitcoin security has been designed to prevent: it&#039;s up to users to keep theirs safe.  But the cryptography is designed so that it is completely impossible to deduce someone&#039;s private key from their public one. As long as you keep your private key to yourself, you don&#039;t have much to worry about.  Furthermore, one could theoretically create a new block chain, but due to the way in which the block chain is constructed, this would be extremely difficult and require massive amounts of processing power.  A full explanation of the difficulties involved can be found in the [[block chain]] article.&lt;br /&gt;
&lt;br /&gt;
Bitcoin can be ripped off – but doing so would be extremely hard and require considerable expertise and a staggering amount of processing power.  And it&#039;s only going to get harder with time.  Bitcoin isn&#039;t impenetrable, but it&#039;s close enough to put any real worries in the peripherals.&lt;br /&gt;
	&lt;br /&gt;
;Could miners fundamentally change the nature of Bitcoin?&lt;br /&gt;
&lt;br /&gt;
Once again, almost certainly not.&lt;br /&gt;
&lt;br /&gt;
Bitcoin is a distributed network, so any changes implemented to the system must be accepted by all users.  Someone trying to change the way Bitcoins are generated would have to convince every user to download and use their software – so the only changes that would go through are those that would be equally benefit all users. &lt;br /&gt;
&lt;br /&gt;
And thus, it is more or less impossible for anyone to change the function of Bitcoin to their advantage.  If users don&#039;t like the changes, they won&#039;t adopt them, whereas if users do like them, then these will help everyone equally.  Of course, one can conceive of a situation where someone manages to get a change pushed through that provides them with an advantage that no one notices, but given that Bitcoin is structurally relatively simple, it is unlikely that any major changes will go through without someone noticing first.&lt;br /&gt;
&lt;br /&gt;
The fact that such changes are so difficult to make testifies to the fully distributed nature of Bitcoin.  Any centrally controlled currency can be modified by its central agency without the consent of its adherents.  Bitcoin has no central authority, so it changes only at the behest of the whole community.  Bitcoins development represents a kind of collective evolution; the first of its kind among currencies.&lt;br /&gt;
&lt;br /&gt;
==Help==&lt;br /&gt;
===I&#039;d like to learn more.  Where can I get help?===&lt;br /&gt;
&lt;br /&gt;
* Read the [[Introduction|introduction to bitcoin]] &lt;br /&gt;
* See the videos, podcasts, and blog posts from the [[Press]]&lt;br /&gt;
* Read and post on the [[Bitcoin:Community_portal#Bitcoin_Community_Forums|forums]]&lt;br /&gt;
* Chat on one of the [[Bitcoin:Community_portal#IRC_Chat|Bitcoin IRC]] channels&lt;br /&gt;
* Listen to [http://omegataupodcast.net/2011/03/59-bitcoin-a-digital-decentralized-currency/ this podcast], which goes into the details of how bitcoin works&lt;br /&gt;
* Ask questions on the [http://bitcoin.stackexchange.com Bitcoin Stack Exchange]&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
&lt;br /&gt;
* [[Man page]]&lt;br /&gt;
* [[Introduction]]&lt;br /&gt;
&lt;br /&gt;
[[de:FAQ]]&lt;br /&gt;
[[zh-cn:FAQ]]&lt;br /&gt;
[[fr:FAQ]]&lt;br /&gt;
[[ru:FAQ]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Technical]]&lt;br /&gt;
[[Category:Vocabulary]]&lt;/div&gt;</summary>
		<author><name>Adam2us</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Proof_of_work&amp;diff=33213</id>
		<title>Proof of work</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Proof_of_work&amp;diff=33213"/>
		<updated>2012-11-30T10:25:42Z</updated>

		<summary type="html">&lt;p&gt;Adam2us: correct some details about hashcash, mention that bitcoin actually uses hashcash&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{stub}}&lt;br /&gt;
&lt;br /&gt;
A &#039;&#039;&#039;proof of work&#039;&#039;&#039; is a piece of data which was difficult (costly, time-consuming) to produce so as to satisfy certain requirements. It must be trivial to check whether data satisfies said requirements. Producing a proof of work can be a random process with low probability, so that a lot of trial and error is required &#039;&#039;on average&#039;&#039; before a valid proof of work is generated.&lt;br /&gt;
&lt;br /&gt;
The most widely known and used proof-of-work is the [http://en.wikipedia.org/wiki/Hashcash hashcash cost-function] which is used by Bitcoin, and also some anti-spam systems and as an anti-DoS mechanism in a number of other protocols.  In the context of [http://en.wikipedia.org/wiki/Hashcash anti-spam], a proof of work on the recipients address can be attached to the email in an email header. Legitimate senders will be able to do the work to generate the proof easily (not much work is required for a single email), but mass spam emailers will have difficulty generating the required proofs (which would require huge computational resources).&lt;br /&gt;
&lt;br /&gt;
The hashcash proof of work is used in Bitcoin for block generation.  Hashcash stamps tied to the data of each block are required for the blocks to be accepted. The [[difficulty]] of this work is adjusted so as to limit the rate at which new blocks can be generated by the network to one every 10 minutes. Due to the very low probability of successful generation, this makes it unpredictable which worker computer in the network will be able to generate the next block.&lt;br /&gt;
&lt;br /&gt;
For a block to be valid it must hash to a value less than the current [[target]]; this means that each block indicates that work has been done generating it. Each block contains the hash of the preceding block, thus each block has a [[block chain|chain]] of blocks that together contain a large amount of work. Changing a block (which can only be done by making a new block containing the same predecessor) requires regenerating all successors and redoing the work they contain. This protects the block chain from tampering.&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
Let&#039;s say the base string that we are going to do work on is &amp;quot;Hello, world!&amp;quot;. Our target is to find a variation of it that SHA-256 hashes to a value beginning with &#039;000&#039;. We vary the string by adding a integer value to the end called a [[nonce]] and incrementing it each time. Finding a match for &amp;quot;Hello, world!&amp;quot; takes us 4251 tries (but happens to have zeroes in the first four digits):&lt;br /&gt;
&lt;br /&gt;
 &amp;quot;Hello, world!0&amp;quot; =&amp;gt; 1312af178c253f84028d480a6adc1e25e81caa44c749ec81976192e2ec934c64&lt;br /&gt;
 &amp;quot;Hello, world!1&amp;quot; =&amp;gt; e9afc424b79e4f6ab42d99c81156d3a17228d6e1eef4139be78e948a9332a7d8&lt;br /&gt;
 &amp;quot;Hello, world!2&amp;quot; =&amp;gt; ae37343a357a8297591625e7134cbea22f5928be8ca2a32aa475cf05fd4266b7&lt;br /&gt;
 ...&lt;br /&gt;
 &amp;quot;Hello, world!4248&amp;quot; =&amp;gt; 6e110d98b388e77e9c6f042ac6b497cec46660deef75a55ebc7cfdf65cc0b965&lt;br /&gt;
 &amp;quot;Hello, world!4249&amp;quot; =&amp;gt; c004190b822f1669cac8dc37e761cb73652e7832fb814565702245cf26ebb9e6&lt;br /&gt;
 &amp;quot;Hello, world!4250&amp;quot; =&amp;gt; 0000c3af42fc31103f1fdc0151fa747ff87349a4714df7cc52ea464e12dcd4e9&lt;br /&gt;
&lt;br /&gt;
4251 hashes on a modern computer is not very much work (most computers can achieve at least 4 million hashes per second). Bitcoin automatically varies the [[difficulty]] (and thus the amount of work required to generate a block) to keep a roughly constant rate of block generation. The probability of a single hash succeeding can be found [http://blockexplorer.com/q/probability here].&lt;br /&gt;
&lt;br /&gt;
In Bitcoin things are a bit more complex, especially since the header contains the [http://en.wikipedia.org/wiki/Merkle_tree Merkle tree] which depends on the included [[transactions]]. This includes the generation transaction, a transaction &amp;quot;out of nowhere&amp;quot; to our own address, which in addition to providing the miner with incentive to do the work, also ensures that every miner hashes a unique data set.&lt;br /&gt;
&lt;br /&gt;
[[Category:Vocabulary]]&lt;br /&gt;
&lt;br /&gt;
[[fr:Preuve de travail]]&lt;/div&gt;</summary>
		<author><name>Adam2us</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=B-money&amp;diff=33212</id>
		<title>B-money</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=B-money&amp;diff=33212"/>
		<updated>2012-11-30T10:16:08Z</updated>

		<summary type="html">&lt;p&gt;Adam2us: fix url atext&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Wei Dai&#039;s &#039;&#039;&#039;B-money proposal&#039;&#039;&#039; is a precursor idea to [[Bitcoin]]. In his essay, published on the  cypherpunks mailing-list in November 1998, he proposed two protocols.  The first protocol is impractical as it requires a broadcast channel that is unjammable as well being synchronous. &lt;br /&gt;
&lt;br /&gt;
In the first protocol in the essay, the use of a [[proof of work]] function is proposed as a means of creating money.  Dai&#039;s B-Money was proposed in the context of cypherpunks mailing-list discussions relating to possible applications of [[Hashcash]], the first symmetric proof-of-work function, which was itself also published on the same mailing-list, the previous year - May 1997.   (Like the B-money proposal, bitcoin itself also uses the hashcash cost-function as the proof-of-work during coin minting).  In B-Money, money is transferred by broadcasting the transaction to all participants, all of whom keep accounts of all others. Contracts can be made with possible reparation in case of default, with a third party agreeing to be the arbitrator. If there is no agreement, each party broadcasts arguments or evidence in its favor and each of the participants determines the reparations/fines in his accounts for himself.&lt;br /&gt;
&lt;br /&gt;
The second protocol has only a subset of the participants (the &amp;quot;servers&amp;quot;) keeping accounts, which they have to publish, and the participants who do transactions verifying their balances by asking many of them. The participants also verify that the money supply is not being inflated. An amount of money as bail is required to become a server, which is lost if the server is found to be dishonest.&lt;br /&gt;
&lt;br /&gt;
An alternate method of creating money is proposed, via an auction where participants bid on the solution of computational problems of known complexity.&lt;br /&gt;
&lt;br /&gt;
==External Links==&lt;br /&gt;
*[http://weidai.com/bmoney.txt B-money proposal]&lt;br /&gt;
*[http://www.hashcash.org/ hashcash cost-function]&lt;br /&gt;
[[Category:Economics]]&lt;/div&gt;</summary>
		<author><name>Adam2us</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=B-money&amp;diff=33211</id>
		<title>B-money</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=B-money&amp;diff=33211"/>
		<updated>2012-11-30T10:15:35Z</updated>

		<summary type="html">&lt;p&gt;Adam2us: reference to b-money use of hashcash, and bitcoin use of hashcash&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Wei Dai&#039;s &#039;&#039;&#039;B-money proposal&#039;&#039;&#039; is a precursor idea to [[Bitcoin]]. In his essay, published on the  cypherpunks mailing-list in November 1998, he proposed two protocols.  The first protocol is impractical as it requires a broadcast channel that is unjammable as well being synchronous. &lt;br /&gt;
&lt;br /&gt;
In the first protocol in the essay, the use of a [[proof of work]] function is proposed as a means of creating money.  Dai&#039;s B-Money was proposed in the context of cypherpunks mailing-list discussions relating to possible applications of [[Hashcash]], the first symmetric proof-of-work function, which was itself also published on the same mailing-list, the previous year - May 1997.   (Like the B-money proposal, bitcoin itself also uses the hashcash cost-function as the proof-of-work during coin minting).  In B-Money, money is transferred by broadcasting the transaction to all participants, all of whom keep accounts of all others. Contracts can be made with possible reparation in case of default, with a third party agreeing to be the arbitrator. If there is no agreement, each party broadcasts arguments or evidence in its favor and each of the participants determines the reparations/fines in his accounts for himself.&lt;br /&gt;
&lt;br /&gt;
The second protocol has only a subset of the participants (the &amp;quot;servers&amp;quot;) keeping accounts, which they have to publish, and the participants who do transactions verifying their balances by asking many of them. The participants also verify that the money supply is not being inflated. An amount of money as bail is required to become a server, which is lost if the server is found to be dishonest.&lt;br /&gt;
&lt;br /&gt;
An alternate method of creating money is proposed, via an auction where participants bid on the solution of computational problems of known complexity.&lt;br /&gt;
&lt;br /&gt;
==External Links==&lt;br /&gt;
*[http://weidai.com/bmoney.txt B-money proposal]&lt;br /&gt;
*[http://www.hashcash.org/]&lt;br /&gt;
[[Category:Economics]]&lt;/div&gt;</summary>
		<author><name>Adam2us</name></author>
	</entry>
</feed>