<?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=Kamariks</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=Kamariks"/>
	<link rel="alternate" type="text/html" href="https://en.bitcoin.it/wiki/Special:Contributions/Kamariks"/>
	<updated>2026-04-22T00:17:36Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.43.8</generator>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Seed_phrase&amp;diff=69568</id>
		<title>Seed phrase</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Seed_phrase&amp;diff=69568"/>
		<updated>2022-12-09T15:09:45Z</updated>

		<summary type="html">&lt;p&gt;Kamariks: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{sample}}&lt;br /&gt;
&lt;br /&gt;
A &#039;&#039;&#039;seed phrase&#039;&#039;&#039;, &#039;&#039;&#039;seed recovery phrase&#039;&#039;&#039; or &#039;&#039;&#039;backup seed phrase&#039;&#039;&#039; is a list of words which [[Storing bitcoins|store]] all the information needed to recover Bitcoin funds [[Transaction|on-chain]]. Wallet software will typically generate a seed phrase and instruct the user to write it down on paper. If the user&#039;s computer breaks or their hard drive becomes corrupted, they can download the same wallet software again and use the paper backup to get their bitcoins back.&lt;br /&gt;
&lt;br /&gt;
Anybody else who discovers the phrase can steal the bitcoins, so it must be kept safe like jewels or cash. For example, it must not be typed into any website.&lt;br /&gt;
&lt;br /&gt;
Seed phrases are an excellent way of backing up and [[storing bitcoins]], so they are used by almost all well-regarded wallets.&amp;lt;ref&amp;gt;[https://bitcoin.org/en/choose-your-wallet Bitcoin.org: Choose your wallet]&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Seed phrases can only backups funds on the [[block chain]]. They cannot store funds involved in [[off-chain transactions]] such as [[Lightning Network]] or [[Blinded bearer certificates]]. Although these technologies are in their infancy as of 2019 so its possible in future seed phrases could be used to backup them.&lt;br /&gt;
&lt;br /&gt;
== BIP39 and its flaws ==&lt;br /&gt;
&lt;br /&gt;
[[BIP_0039|BIP39]] is the most common standard used for seed phrases. One notable example is [[Electrum|Electrum wallet]], which is using its own standard, and for good reasons. BIP39 has some flaws, known in the technical community but not known much wider. They are described [https://electrum.readthedocs.io/en/latest/seedphrase.html#motivation here on this electrum doc page]. Most seriously, BIP39 flaws mean it is not true to say that backing up a BIP39 seed phrase and name of wallet software is the only thing a user needs to do to keep their money safe. BIP39 works this way because its designers wanted their hardware wallet to also support [[altcoin]]s. [https://walletsrecovery.org/ walletsrecovery.org] is an attempt at helping with this issue, but ideally there will be a better solution in the future.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
An example of a non-BIP39 seed phrase is:&lt;br /&gt;
&lt;br /&gt;
    hotel obvious agent lecture gadget evil jealous keen fragile before damp clarify&lt;br /&gt;
&lt;br /&gt;
The word order is important.&lt;br /&gt;
&lt;br /&gt;
[[File:Seed phrase.jpg|300px|thumb|none|alt=An example seed phrase written on paper|Example seed phrase on paper.]]&lt;br /&gt;
&lt;br /&gt;
== Explanation ==&lt;br /&gt;
&lt;br /&gt;
A simplified explanation of how seed phrases work is that the wallet software has a list of words taken from a dictionary, with each word assigned to a number. The seed phrase can be converted to a number which is used as the seed integer to a [[Deterministic wallet|deterministic wallet]] that generates all the [[Private key|key pairs]] used in the wallet.&lt;br /&gt;
&lt;br /&gt;
The English-language wordlist for the BIP39 standard has 2048 words, so if the phrase contained only 12 random words, the number of possible combinations would be 2048^12 = 2^132 and the phrase would have 132 bits of security.  However, some of the data in a BIP39 phrase is not random,&amp;lt;ref&amp;gt;[https://github.com/bitcoin/bips/blob/master/bip-0039.mediawiki#Generating_the_mnemonic BIP39: Generating the mnemonic]&amp;lt;/ref&amp;gt; so the actual security of a 12-word BIP39 seed phrase is only 128 bits.  This is approximately the same strength as all Bitcoin private keys, so most experts consider it to be sufficiently secure.&amp;lt;ref&amp;gt;[https://github.com/bitcoin/bips/blob/master/bip-0032.mediawiki#Security BIP32: Security]&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
It is not safe to invent your own seed phrase because humans are bad at generating randomness.  The best way is to allow the wallet software to generate a phrase which you write down.&lt;br /&gt;
&lt;br /&gt;
As seed phrases use natural language words, they have excellent error correction. Words written in bad handwriting can often still be read. If one or two letters are missing or unreadable the word can often still be deduced. The [[#Word_Lists|word list]] that the seed phrase words are drawn from is carefully chosen so that the first four letters of each word are enough to uniquely identify it. This compares well with writing down a raw [[private key]] where a single letter being unreadable or incorrect can make the private key useless (depending on the serialization format).&lt;br /&gt;
&lt;br /&gt;
== Two-factor seed phrases ==&lt;br /&gt;
&lt;br /&gt;
Seed phrases, like all backups, can store any amount of bitcoins. It&#039;s a concerning idea to possibly have enough money to purchase the entire building just sitting on a sheet of paper without any protection. For this reason many wallets make it possible to encrypt a seed phrase with a password.&lt;br /&gt;
&lt;br /&gt;
The password can be used to create a two-factor seed phrase where both &#039;&#039;&amp;quot;something you have&amp;quot;&#039;&#039; plus &#039;&#039;&amp;quot;something you know&amp;quot;&#039;&#039; is required to unlock the bitcoins.&lt;br /&gt;
&lt;br /&gt;
This works by the wallet creating a seed phrase and asking the user for a password. Then both the seed phrase and extra word are required to recover the wallet. Electrum and some other wallets call the passphrase a &#039;&#039;&#039;&amp;quot;seed extension&amp;quot;&#039;&#039;&#039;, &#039;&#039;&#039;&amp;quot;extension word&amp;quot;&#039;&#039;&#039; or &#039;&#039;&#039;&amp;quot;13th/25th word&amp;quot;&#039;&#039;&#039;. The BIP39 standard defines a way of passphrase-protecting a seed phrase. A similar scheme is also used in the Electrum standard. If a passphrase is not present, an empty string &amp;quot;&amp;quot; is used instead.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Warning&#039;&#039;&#039;: Forgetting this password will result in the bitcoin wallet and any contained money being lost. Do not overestimate your ability to remember passphrases especially when you may not use it very often.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Warning&#039;&#039;&#039;: The seed phrase password should not be confused with the password used to encrypt the wallet file on disk. This is probably why many wallets call it an extension word instead of a password.&lt;br /&gt;
&lt;br /&gt;
== Storing seed phrases for the long term == &lt;br /&gt;
&lt;br /&gt;
Most people write down phrases on paper but they can be stored in many other ways such as [[Brainwallet|memorizing]], engraving or stamping on metal, writing in the margins of a book, chiselling into a stone tablet or any other creative and inventive way.&lt;br /&gt;
&lt;br /&gt;
In the past many people have accidentally lost bitcoins because of failed backups, mistyped letters, forgotten hard drives, or corrupted SSD devices. It&#039;s also important to protect the seed from accidental loss.&lt;br /&gt;
&lt;br /&gt;
It could be a good idea to write some words of explanation on the same paper as the seed phrase. If storing for the long term you may forget what a phrase is how it should be treated. A sample explanation that can be adapted is:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;blockquote&amp;gt;These twelve words have control over BITCOINS. Keep this paper safe and secret like cash or jewellery. The bitcoin information on this paper is encrypted with a passphrase. It is part of a multi-signature wallet and was made by Electrum bitcoin wallet software on 2019-01-01.&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Paper and pencil backup ====&lt;br /&gt;
&lt;br /&gt;
Through bitter experience it has been found that one of the most practical storage mediums is &#039;&#039;&#039;pencil and paper&#039;&#039;&#039;. The private keys of a bitcoin wallet are encoded into [[seed phrase|random words from a dictionary]] which can be written down. If your hard drive crashes, you can find the paper with the [[seed phrase]] and restore the entire wallet. As [[seed phrase]]s use natural language words, they have good error correction. Words written in bad handwriting can often still be read. If one or two letters are missing the word can often still be deduced. The [[Seed_phrase#Word_Lists|word list]] that the seed phrase words are drawn from is carefully chosen so that the first four letters of each word are enough to uniquely identify it.&lt;br /&gt;
&lt;br /&gt;
For storing on paper writing with pencil is much better than pen.&amp;lt;ref&amp;gt;[http://www.joethorn.net/blog/2011/12/07/pencil-does-not-fade Pencil Does Not Fade]&lt;br /&gt;
&amp;lt;/ref&amp;gt;&amp;lt;ref&amp;gt;[https://www.quora.com/How-do-I-maintain-a-paper-notebook-that-can-remain-for-years How do I maintain a paper notebook that can remain for years?]&lt;br /&gt;
&amp;lt;/ref&amp;gt;&lt;br /&gt;
Paper should be acid-free or archival paper, and stored in the dark avoiding extremes of heat and moisture.&amp;lt;ref&amp;gt;[https://www.loc.gov/preservation/care/deterioratebrochure.html Essential facts about preservation of Paper]&lt;br /&gt;
&amp;lt;/ref&amp;gt;&amp;lt;ref&amp;gt;[https://www.quora.com/If-I-write-with-a-pencil-on-my-notebook-will-the-writing-last-for-a-long-time-say-50-years-or-will-it-just-fade-away-gradually Writing in a notebook with pencil]&lt;br /&gt;
&amp;lt;/ref&amp;gt;&amp;lt;ref&amp;gt;[http://copar.org/bulletin14.htm CoPAR: Creating records that will last]&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Metal backup ====&lt;br /&gt;
&lt;br /&gt;
Seed phrases can also be [https://blog.lopp.net/metal-bitcoin-seed-storage-stress-test--part-ii-/ stamped or engraved into metal] which is significantly more durable than paper. Metal backups are recommended if the threat model involves fire, water, extremes of temperature or physical stress.&lt;br /&gt;
&lt;br /&gt;
==== Methods that are not recommended ====&lt;br /&gt;
&lt;br /&gt;
Some methods that are not recommended are: storing in a file on a computer (including online), or storing online.&lt;br /&gt;
&lt;br /&gt;
Some people get the idea to split up their phrases, like storing 6 words in one location and the other 6 words in another location. This is a bad idea and should not be done, because if one set of 6 words is discovered then it becomes far easier to brute-force the rest of the phrase. Storing bitcoins in multiple locations like this should be done with [[multi-signature]] wallets instead.&lt;br /&gt;
&lt;br /&gt;
The [[Shamir Secret Sharing]] algorithm is sometimes promoted as a way to divide control of bitcoins, but in practice there are many pitfalls and trade-offs that make it not worth it.&amp;lt;ref&amp;gt;[https://blog.keys.casa/shamirs-secret-sharing-security-shortcomings/ Shamir&#039;s Secret Sharing Shortcomings] by Jameson Lopp, Casa blog, 2020&amp;lt;/ref&amp;gt; &amp;lt;!-- See the main article: [[Shamir Secret Snakeoil]] (the other one redirects here, no need to have 2 wikilinks with different captions going to the same article --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Another bad idea is to add random decoy words that are somehow meaningful to you and later remove them to be left with only the 12-word phrase. The phrase words come from a known dictionary (see next section), so anybody can use that dictionary to weed out the decoy words.&lt;br /&gt;
&lt;br /&gt;
It&#039;s possible but risky to memorize ([[Brainwallet]]s) seed phrases. This should probably only be done in situations that really need it, such as crossing a hostile border where one expects to be searched.&lt;br /&gt;
&lt;br /&gt;
== Word lists ==&lt;br /&gt;
&lt;br /&gt;
Generally, a seed phrase only works with the same wallet software that created it. If storing for a long period of time it&#039;s a good idea to write the name of the wallet too.&lt;br /&gt;
&lt;br /&gt;
The BIP39 English word list has each word being uniquely identified by the first four letters, which can be useful when space to write them is scarce.&lt;br /&gt;
&lt;br /&gt;
* [https://github.com/bitcoin/bips/blob/master/bip-0039/bip-0039-wordlists.md BIP39 wordlists]&lt;br /&gt;
* [https://github.com/spesmilo/electrum/blob/1.9.8/lib/mnemonic.py Electrum old-style wordlist]&lt;br /&gt;
* [https://github.com/spesmilo/electrum/blob/master/electrum/wordlist/english.txt Electrum new-style wordlist]&lt;br /&gt;
&lt;br /&gt;
== Alternative name &amp;quot;mnemonic phrase&amp;quot; ==&lt;br /&gt;
&lt;br /&gt;
Seed phrases are sometimes called &#039;&#039;mnemonic phrases&#039;&#039;, especially in older literature. This is a bad name because the word &amp;quot;mnemonic&amp;quot; implies that the phrase should be memorized. It is less misleading to call them seed phrases.&lt;br /&gt;
&lt;br /&gt;
== The power of backups ==&lt;br /&gt;
&lt;br /&gt;
An especially interesting aspect in the power of paper backups is allowing your money to be two places at once. At the London Inside Bitcoin conference, the keynote speaker showed 25 paper backups they were carrying&amp;amp;mdash;all password-protected. With that, one can carry $100,000 which can instantly be moved to a phone or transferred yet with total security. If it&#039;s stolen, then there is no risk because it is backed up elsewhere. That is powerful.&amp;lt;ref&amp;gt;https://www.reddit.com/r/Bitcoin/comments/2hmnru/poll_do_you_use_paper_wallets_why_why_not_what/&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
* [https://github.com/bitcoin/bips/blob/master/bip-0039.mediawiki BIP39 seed phrase standard]&lt;br /&gt;
* [[Deterministic wallet]]&lt;br /&gt;
* [[Storing bitcoins]]&lt;br /&gt;
* [[Brainwallet]]&lt;br /&gt;
* [https://github.com/6102bitcoin/6102bitcoin/blob/main/content/faq-bitcoin-seed.md FAQ regarding bitcoin seeds]&lt;br /&gt;
* [https://web.archive.org/web/20210214135049/https://www.hodlalert.com/2020/12/21/generating-cryptographically-secure-random-numbers-with-coins-and-a-cup/ Generating Bitcoin Seed Phrases With Coins and A Cup]&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&amp;lt;references /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Technical]]&lt;/div&gt;</summary>
		<author><name>Kamariks</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Seed_phrase&amp;diff=69561</id>
		<title>Seed phrase</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Seed_phrase&amp;diff=69561"/>
		<updated>2022-11-23T18:11:42Z</updated>

		<summary type="html">&lt;p&gt;Kamariks: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{sample}}&lt;br /&gt;
&lt;br /&gt;
A &#039;&#039;&#039;seed phrase&#039;&#039;&#039;, &#039;&#039;&#039;seed recovery phrase&#039;&#039;&#039; or &#039;&#039;&#039;backup seed phrase&#039;&#039;&#039; is a list of words which [[Storing bitcoins|store]] all the information needed to recover Bitcoin funds [[Transaction|on-chain]]. Wallet software will typically generate a seed phrase and instruct the user to write it down on paper. If the user&#039;s computer breaks or their hard drive becomes corrupted, they can download the same wallet software again and use the paper backup to get their bitcoins back.&lt;br /&gt;
&lt;br /&gt;
Anybody else who discovers the phrase can steal the bitcoins, so it must be kept safe like jewels or cash. For example, it must not be typed into any website.&lt;br /&gt;
&lt;br /&gt;
Seed phrases are an excellent way of backing up and [[storing bitcoins]], so they are used by almost all well-regarded wallets.&amp;lt;ref&amp;gt;[https://bitcoin.org/en/choose-your-wallet Bitcoin.org: Choose your wallet]&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Seed phrases can only backups funds on the [[block chain]]. They cannot store funds involved in [[off-chain transactions]] such as [[Lightning Network]] or [[Blinded bearer certificates]]. Although these technologies are in their infancy as of 2019 so its possible in future seed phrases could be used to backup them.&lt;br /&gt;
&lt;br /&gt;
== BIP39 and its flaws ==&lt;br /&gt;
&lt;br /&gt;
[[BIP_0039|BIP39]] is the most common standard used for seed phrases. One notable example is [[Electrum|Electrum wallet]], which is using its own standard, and for good reasons. BIP39 has some flaws, known in the technical community but not known much wider. They are described [https://electrum.readthedocs.io/en/latest/seedphrase.html#motivation here on this electrum doc page]. Most seriously, BIP39 flaws mean it is not true to say that backing up a BIP39 seed phrase and name of wallet software is the only thing a user needs to do to keep their money safe. BIP39 works this way because its designers wanted their hardware wallet to also support [[altcoin]]s. [https://walletsrecovery.org/ walletsrecovery.org] is an attempt at helping with this issue, but ideally there will be a better solution in the future.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Example ==&lt;br /&gt;
&lt;br /&gt;
An example of a non-BIP39 seed phrase is:&lt;br /&gt;
&lt;br /&gt;
    hotel obvious agent lecture gadget evil jealous {{taggant private key}}keen fragile before damp clarify&lt;br /&gt;
&lt;br /&gt;
The word order is important.&lt;br /&gt;
&lt;br /&gt;
[[File:Seed phrase.jpg|300px|thumb|none|alt=An example seed phrase written on paper|Example seed phrase on paper.]]&lt;br /&gt;
&lt;br /&gt;
== Explanation ==&lt;br /&gt;
&lt;br /&gt;
A simplified explanation of how seed phrases work is that the wallet software has a list of words taken from a dictionary, with each word assigned to a number. The seed phrase can be converted to a number which is used as the seed integer to a [[Deterministic wallet|deterministic wallet]] that generates all the [[Private key|key pairs]] used in the wallet.&lt;br /&gt;
&lt;br /&gt;
The English-language wordlist for the BIP39 standard has 2048 words, so if the phrase contained only 12 random words, the number of possible combinations would be 2048^12 = 2^132 and the phrase would have 132 bits of security.  However, some of the data in a BIP39 phrase is not random,&amp;lt;ref&amp;gt;[https://github.com/bitcoin/bips/blob/master/bip-0039.mediawiki#Generating_the_mnemonic BIP39: Generating the mnemonic]&amp;lt;/ref&amp;gt; so the actual security of a 12-word BIP39 seed phrase is only 128 bits.  This is approximately the same strength as all Bitcoin private keys, so most experts consider it to be sufficiently secure.&amp;lt;ref&amp;gt;[https://github.com/bitcoin/bips/blob/master/bip-0032.mediawiki#Security BIP32: Security]&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
It is not safe to invent your own seed phrase because humans are bad at generating randomness.  The best way is to allow the wallet software to generate a phrase which you write down.&lt;br /&gt;
&lt;br /&gt;
As seed phrases use natural language words, they have excellent error correction. Words written in bad handwriting can often still be read. If one or two letters are missing or unreadable the word can often still be deduced. The [[#Word_Lists|word list]] that the seed phrase words are drawn from is carefully chosen so that the first four letters of each word are enough to uniquely identify it. This compares well with writing down a raw [[private key]] where a single letter being unreadable or incorrect can make the private key useless (depending on the serialization format).&lt;br /&gt;
&lt;br /&gt;
== Two-factor seed phrases ==&lt;br /&gt;
&lt;br /&gt;
Seed phrases, like all backups, can store any amount of bitcoins. It&#039;s a concerning idea to possibly have enough money to purchase the entire building just sitting on a sheet of paper without any protection. For this reason many wallets make it possible to encrypt a seed phrase with a password.&lt;br /&gt;
&lt;br /&gt;
The password can be used to create a two-factor seed phrase where both &#039;&#039;&amp;quot;something you have&amp;quot;&#039;&#039; plus &#039;&#039;&amp;quot;something you know&amp;quot;&#039;&#039; is required to unlock the bitcoins.&lt;br /&gt;
&lt;br /&gt;
This works by the wallet creating a seed phrase and asking the user for a password. Then both the seed phrase and extra word are required to recover the wallet. Electrum and some other wallets call the passphrase a &#039;&#039;&#039;&amp;quot;seed extension&amp;quot;&#039;&#039;&#039;, &#039;&#039;&#039;&amp;quot;extension word&amp;quot;&#039;&#039;&#039; or &#039;&#039;&#039;&amp;quot;13th/25th word&amp;quot;&#039;&#039;&#039;. The BIP39 standard defines a way of passphrase-protecting a seed phrase. A similar scheme is also used in the Electrum standard. If a passphrase is not present, an empty string &amp;quot;&amp;quot; is used instead.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Warning&#039;&#039;&#039;: Forgetting this password will result in the bitcoin wallet and any contained money being lost. Do not overestimate your ability to remember passphrases especially when you may not use it very often.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Warning&#039;&#039;&#039;: The seed phrase password should not be confused with the password used to encrypt the wallet file on disk. This is probably why many wallets call it an extension word instead of a password.&lt;br /&gt;
&lt;br /&gt;
== Storing seed phrases for the long term == &lt;br /&gt;
&lt;br /&gt;
Most people write down phrases on paper but they can be stored in many other ways such as [[Brainwallet|memorizing]], engraving or stamping on metal, writing in the margins of a book, chiselling into a stone tablet or any other creative and inventive way.&lt;br /&gt;
&lt;br /&gt;
In the past many people have accidentally lost bitcoins because of failed backups, mistyped letters, forgotten hard drives, or corrupted SSD devices. It&#039;s also important to protect the seed from accidental loss.&lt;br /&gt;
&lt;br /&gt;
It could be a good idea to write some words of explanation on the same paper as the seed phrase. If storing for the long term you may forget what a phrase is how it should be treated. A sample explanation that can be adapted is:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;blockquote&amp;gt;These twelve words have control over BITCOINS. Keep this paper safe and secret like cash or jewellery. The bitcoin information on this paper is encrypted with a passphrase. It is part of a multi-signature wallet and was made by Electrum bitcoin wallet software on 2019-01-01.&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Paper and pencil backup ====&lt;br /&gt;
&lt;br /&gt;
Through bitter experience it has been found that one of the most practical storage mediums is &#039;&#039;&#039;pencil and paper&#039;&#039;&#039;. The private keys of a bitcoin wallet are encoded into [[seed phrase|random words from a dictionary]] which can be written down. If your hard drive crashes, you can find the paper with the [[seed phrase]] and restore the entire wallet. As [[seed phrase]]s use natural language words, they have good error correction. Words written in bad handwriting can often still be read. If one or two letters are missing the word can often still be deduced. The [[Seed_phrase#Word_Lists|word list]] that the seed phrase words are drawn from is carefully chosen so that the first four letters of each word are enough to uniquely identify it.&lt;br /&gt;
&lt;br /&gt;
For storing on paper writing with pencil is much better than pen.&amp;lt;ref&amp;gt;[http://www.joethorn.net/blog/2011/12/07/pencil-does-not-fade Pencil Does Not Fade]&lt;br /&gt;
&amp;lt;/ref&amp;gt;&amp;lt;ref&amp;gt;[https://www.quora.com/How-do-I-maintain-a-paper-notebook-that-can-remain-for-years How do I maintain a paper notebook that can remain for years?]&lt;br /&gt;
&amp;lt;/ref&amp;gt;&lt;br /&gt;
Paper should be acid-free or archival paper, and stored in the dark avoiding extremes of heat and moisture.&amp;lt;ref&amp;gt;[https://www.loc.gov/preservation/care/deterioratebrochure.html Essential facts about preservation of Paper]&lt;br /&gt;
&amp;lt;/ref&amp;gt;&amp;lt;ref&amp;gt;[https://www.quora.com/If-I-write-with-a-pencil-on-my-notebook-will-the-writing-last-for-a-long-time-say-50-years-or-will-it-just-fade-away-gradually Writing in a notebook with pencil]&lt;br /&gt;
&amp;lt;/ref&amp;gt;&amp;lt;ref&amp;gt;[http://copar.org/bulletin14.htm CoPAR: Creating records that will last]&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Metal backup ====&lt;br /&gt;
&lt;br /&gt;
Seed phrases can also be [https://blog.lopp.net/metal-bitcoin-seed-storage-stress-test--part-ii-/ stamped or engraved into metal] which is significantly more durable than paper. Metal backups are recommended if the threat model involves fire, water, extremes of temperature or physical stress.&lt;br /&gt;
&lt;br /&gt;
==== Methods that are not recommended ====&lt;br /&gt;
&lt;br /&gt;
Some methods that are not recommended are: storing in a file on a computer (including online), or storing online.&lt;br /&gt;
&lt;br /&gt;
Some people get the idea to split up their phrases, like storing 6 words in one location and the other 6 words in another location. This is a bad idea and should not be done, because if one set of 6 words is discovered then it becomes far easier to brute-force the rest of the phrase. Storing bitcoins in multiple locations like this should be done with [[multi-signature]] wallets instead.&lt;br /&gt;
&lt;br /&gt;
The [[Shamir Secret Sharing]] algorithm is sometimes promoted as a way to divide control of bitcoins, but in practice there are many pitfalls and trade-offs that make it not worth it.&amp;lt;ref&amp;gt;[https://blog.keys.casa/shamirs-secret-sharing-security-shortcomings/ Shamir&#039;s Secret Sharing Shortcomings] by Jameson Lopp, Casa blog, 2020&amp;lt;/ref&amp;gt; &amp;lt;!-- See the main article: [[Shamir Secret Snakeoil]] (the other one redirects here, no need to have 2 wikilinks with different captions going to the same article --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Another bad idea is to add random decoy words that are somehow meaningful to you and later remove them to be left with only the 12-word phrase. The phrase words come from a known dictionary (see next section), so anybody can use that dictionary to weed out the decoy words.&lt;br /&gt;
&lt;br /&gt;
It&#039;s possible but risky to memorize ([[Brainwallet]]s) seed phrases. This should probably only be done in situations that really need it, such as crossing a hostile border where one expects to be searched.&lt;br /&gt;
&lt;br /&gt;
== Word lists ==&lt;br /&gt;
&lt;br /&gt;
Generally, a seed phrase only works with the same wallet software that created it. If storing for a long period of time it&#039;s a good idea to write the name of the wallet too.&lt;br /&gt;
&lt;br /&gt;
The BIP39 English word list has each word being uniquely identified by the first four letters, which can be useful when space to write them is scarce.&lt;br /&gt;
&lt;br /&gt;
* [https://github.com/bitcoin/bips/blob/master/bip-0039/bip-0039-wordlists.md BIP39 wordlists]&lt;br /&gt;
* [https://github.com/spesmilo/electrum/blob/1.9.8/lib/mnemonic.py Electrum old-style wordlist]&lt;br /&gt;
* [https://github.com/spesmilo/electrum/blob/master/electrum/wordlist/english.txt Electrum new-style wordlist]&lt;br /&gt;
&lt;br /&gt;
== Alternative name &amp;quot;mnemonic phrase&amp;quot; ==&lt;br /&gt;
&lt;br /&gt;
Seed phrases are sometimes called &#039;&#039;mnemonic phrases&#039;&#039;, especially in older literature. This is a bad name because the word &amp;quot;mnemonic&amp;quot; implies that the phrase should be memorized. It is less misleading to call them seed phrases.&lt;br /&gt;
&lt;br /&gt;
== The power of backups ==&lt;br /&gt;
&lt;br /&gt;
An especially interesting aspect in the power of paper backups is allowing your money to be two places at once. At the London Inside Bitcoin conference, the keynote speaker showed 25 paper backups they were carrying&amp;amp;mdash;all password-protected. With that, one can carry $100,000 which can instantly be moved to a phone or transferred yet with total security. If it&#039;s stolen, then there is no risk because it is backed up elsewhere. That is powerful.&amp;lt;ref&amp;gt;https://www.reddit.com/r/Bitcoin/comments/2hmnru/poll_do_you_use_paper_wallets_why_why_not_what/&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
* [https://github.com/bitcoin/bips/blob/master/bip-0039.mediawiki BIP39 seed phrase standard]&lt;br /&gt;
* [[Deterministic wallet]]&lt;br /&gt;
* [[Storing bitcoins]]&lt;br /&gt;
* [[Brainwallet]]&lt;br /&gt;
* [https://github.com/6102bitcoin/6102bitcoin/blob/main/content/faq-bitcoin-seed.md FAQ regarding bitcoin seeds]&lt;br /&gt;
* [https://web.archive.org/web/20210214135049/https://www.hodlalert.com/2020/12/21/generating-cryptographically-secure-random-numbers-with-coins-and-a-cup/ Generating Bitcoin Seed Phrases With Coins and A Cup]&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&amp;lt;references /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Technical]]&lt;/div&gt;</summary>
		<author><name>Kamariks</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=File:Seed_phrase.jpg&amp;diff=69560</id>
		<title>File:Seed phrase.jpg</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=File:Seed_phrase.jpg&amp;diff=69560"/>
		<updated>2022-11-23T18:10:10Z</updated>

		<summary type="html">&lt;p&gt;Kamariks: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Seed phrase&lt;/div&gt;</summary>
		<author><name>Kamariks</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=File:Mnemonic_phrase.jpg&amp;diff=69559</id>
		<title>File:Mnemonic phrase.jpg</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=File:Mnemonic_phrase.jpg&amp;diff=69559"/>
		<updated>2022-11-23T18:07:10Z</updated>

		<summary type="html">&lt;p&gt;Kamariks: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Mnemonic phrase&lt;/div&gt;</summary>
		<author><name>Kamariks</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Mining&amp;diff=69558</id>
		<title>Mining</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Mining&amp;diff=69558"/>
		<updated>2022-11-23T17:56:00Z</updated>

		<summary type="html">&lt;p&gt;Kamariks: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;!-- This page is designed to be short and simple! It should provide only a very brief explanation of things that have their own page and should link to other pages whenever possible. This page should serve as an entry point and a place to organize most of our mining articles. Thank You! (-Atheros) --&amp;gt;&lt;br /&gt;
[[File:Quick-and-dirty-4x5970-cooling.jpg|thumb|right|A home-made &amp;quot;[[Mining rig|mining rig]]&amp;quot;]]&lt;br /&gt;
== Introduction ==&lt;br /&gt;
&#039;&#039;&#039;Mining&#039;&#039;&#039; is the process of adding transaction records to Bitcoin&#039;s public ledger of past transactions (and a &amp;quot;[[Mining rig|mining rig]]&amp;quot; is a colloquial metaphor for a single computer system that performs the necessary computations for &amp;quot;mining&amp;quot;.&lt;br /&gt;
This ledger of past transactions calls itself the [[blockchain]] as it is a chain of [[block|blocks]].&lt;br /&gt;
The blockchain serves to [[Confirmation|confirm]] transactions to the rest of the network as having taken place.&lt;br /&gt;
Bitcoin nodes use the blockchain to distinguish legitimate Bitcoin transactions from attempts to re-spend coins that have already been spent elsewhere.&lt;br /&gt;
&lt;br /&gt;
Mining is intentionally designed to be resource-intensive and difficult so that the number of blocks found each day by miners remains steady. Individual [[blocks]] must contain a [[proof of work|proof of work]] to be considered valid. This proof of work is verified by other Bitcoin nodes each time they receive a block. Bitcoin uses the [[hashcash]] proof-of-work function.&lt;br /&gt;
&lt;br /&gt;
The primary purpose of mining is to set the history of [[transactions]] in a way that is [[Irreversible Transactions|computationally impractical to modify by any one entity]]. By downloading and verifying the blockchain, bitcoin [[full node|nodes]] are able to reach a consensus about the ordering of events in bitcoin.&lt;br /&gt;
&lt;br /&gt;
Mining is also the mechanism used to [[Controlled supply|introduce Bitcoins]] into the system:&lt;br /&gt;
Miners are paid any [[transaction fees]] as well as a &amp;quot;subsidy&amp;quot; of newly created coins.&lt;br /&gt;
This both serves the purpose of disseminating new coins in a decentralized manner as well as motivating people to provide security for the system.&lt;br /&gt;
&lt;br /&gt;
Bitcoin mining is so-called because it resembles the mining of other commodities:&lt;br /&gt;
it requires exertion and it slowly makes new units available to anybody who wishes to take part. An important difference is that the [[Controlled supply|supply]] does not depend on the amount of mining. In general changing total miner hashpower does not change how many bitcoins are created over the long term.&lt;br /&gt;
&lt;br /&gt;
== Difficulty ==&lt;br /&gt;
=== The Computationally-Difficult Problem ===&lt;br /&gt;
Mining a block is difficult because the SHA-256 hash of a block&#039;s header must be lower than or equal to the [[Target|target]] in order for the block to be accepted by the network. This problem can be simplified for explanation purposes: The hash of a block must start with a certain number of zeros. The probability of calculating a hash that starts with many zeros is very low, therefore many attempts must be made. In order to generate a new hash each round, a [[Nonce|nonce]] is incremented. See [[Proof of work]] for more information.&lt;br /&gt;
&lt;br /&gt;
=== The Difficulty Metric ===&lt;br /&gt;
The [[Difficulty|difficulty]] is the measure of how difficult it is to find a new block compared to the easiest it can ever be. The rate is recalculated every 2,016 blocks to a value such that the previous 2,016 blocks would have been generated in exactly one fortnight (two weeks) had everyone been mining at this difficulty. This is expected yield, on average, one block every ten minutes.&lt;br /&gt;
&lt;br /&gt;
As more miners join, the rate of block creation increases. As the rate of block generation increases, the difficulty rises to compensate, which has a balancing of effect due to reducing the rate of block-creation. Any blocks released by malicious miners that do not meet the required [[Target|difficulty target]] will simply be rejected by the other participants in the network.&lt;br /&gt;
&lt;br /&gt;
=== Reward ===&lt;br /&gt;
When a block is discovered, the discoverer may award themselves a certain number of bitcoins, which is agreed-upon by everyone in the network. Currently this bounty is 6.25 bitcoins; this value will halve every 210,000 blocks. See [[Controlled Currency Supply]].&lt;br /&gt;
&lt;br /&gt;
Additionally, the miner is awarded the fees paid by users sending transactions. The fee is an incentive for the miner to include the transaction in their block. In the future, as the number of new bitcoins miners are allowed to create in each block dwindles, the fees will make up a much more important percentage of mining income.&lt;br /&gt;
&lt;br /&gt;
== The mining ecosystem ==&lt;br /&gt;
&lt;br /&gt;
=== Hardware ===&lt;br /&gt;
[[File:Usb-fpga module 1.15x-hs-800.jpg|thumb|right|FPGA Module]]&lt;br /&gt;
Users have used various types of hardware over time to mine blocks. Hardware specifications and performance statistics are detailed on the [[Mining Hardware Comparison]] page.&lt;br /&gt;
==== CPU Mining ==== &lt;br /&gt;
Early Bitcoin client versions allowed users to use their CPUs to mine. The advent of GPU mining made CPU mining financially unwise as the hashrate of the network grew to such a degree that the amount of bitcoins produced by CPU mining became lower than the cost of power to operate a CPU. The option was therefore removed from the core Bitcoin client&#039;s user interface.&lt;br /&gt;
&lt;br /&gt;
==== GPU Mining ====&lt;br /&gt;
GPU Mining is drastically faster and more efficient than CPU mining. See the main article: [[Why a GPU mines faster than a CPU]]. A variety of popular [[Mining rig|mining rigs]] have been documented.&lt;br /&gt;
==== FPGA Mining ====&lt;br /&gt;
FPGA mining is a very efficient and fast way to mine, comparable to GPU mining and drastically outperforming CPU mining. FPGAs typically consume very small amounts of power with relatively high hash ratings, making them more viable and efficient than GPU mining. See [[Mining Hardware Comparison]] for FPGA hardware specifications and statistics.&lt;br /&gt;
==== ASIC Mining ====&lt;br /&gt;
An application-specific integrated circuit, or &#039;&#039;ASIC&#039;&#039;, is a microchip designed and manufactured for a very specific purpose. ASICs designed for Bitcoin mining were first released in 2013. For the amount of power they consume, they are vastly faster than all previous technologies and already have made GPU mining financially.&lt;br /&gt;
&lt;br /&gt;
==== Mining services (Cloud mining) ====&lt;br /&gt;
[[:Category:Mining_contractors|Mining contractors]] provide mining services with performance specified by contract, often referred to as a &amp;quot;Mining Contract.&amp;quot; They may, for example, rent out a specific level of mining capacity for a set price at a specific duration.&lt;br /&gt;
&lt;br /&gt;
=== Pools ===&lt;br /&gt;
As more and more miners competed for the limited supply of blocks, individuals found that they were working for months without finding a block and receiving any reward for their mining efforts. This made mining something of a gamble. To address the variance in their income miners started organizing themselves into [[Pooled mining|pools]] so that they could share rewards more evenly. See [[Pooled mining]] and [[Comparison of mining pools]].&lt;br /&gt;
&lt;br /&gt;
=== History ===&lt;br /&gt;
Bitcoin&#039;s public ledger (the &amp;quot;block chain&amp;quot;) was started on January 3rd, 2009 at 18:15 UTC presumably by [[Satoshi Nakamoto]]. The first block is known as the [[genesis block]]. The first transaction recorded in the first block was a single transaction paying the reward of 50 new bitcoins to its creator.&lt;br /&gt;
&lt;br /&gt;
== Staking ==&lt;br /&gt;
&lt;br /&gt;
Staking is a concept in the [[Delegated proof of stake]] coins, closely resembling pooled mining of proof of work coins. According to the [[Proof of Stake|proof of share]] principle, instead of computing powers, the partaking users are pooling their &#039;&#039;stakes&#039;&#039;, certain amounts of money, blocked on their wallets and delegated to the pool’s staking balance.&lt;br /&gt;
&lt;br /&gt;
The network periodically selects a pre-defined number of top staking pools (usually between 20 and 100), based on their staking balances, and allows them to validate transactions in order to get a reward. The rewards are then shared with the delegators, according to their stakes with the pool.&lt;br /&gt;
&lt;br /&gt;
Although staking doesn’t require lots of computing power as mining, it still needs very stable and fast Internet connection in order to collect, verify and sign all transactions in the queue within a small timespan, which can be as short as one second. If a pool fails to do so, it doesn’t get the reward, and it may be shared with the next pool in order.&lt;br /&gt;
&lt;br /&gt;
A lot of [[altcoin]]s are using staking. Staking is often marketed as a much more efficient alternative. Unfortunately staking has the potential to not be much different than politics. A good example is that it&#039;s easy for a big actor to take over the network by simply buying enough coins. This actually happened in 2020 when TRON&#039;s Justin Sun took over the Steem &amp;quot;forum&amp;quot; network and then did some things that made some people unhappy. &lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
&lt;br /&gt;
* [https://99bitcoins.com/beginners-guide-to-mining/ Beginner&#039;s Guide to Bitcoin Mining]&lt;br /&gt;
* [https://www.zpool.ca Bitcoin Multipool]&lt;br /&gt;
* [https://www.bitcoinmining.com Bitcoin Mining]&lt;br /&gt;
* [http://codinginmysleep.com/bitcoin-mining-in-plain-english Bitcoin Mining in Plain English] by David Perry&lt;br /&gt;
* [https://www.weusecoins.com/en/mining-guide/ Getting Started With Bitcoin Mining]&lt;br /&gt;
* [[Automatically mine when computer is locked|Tutorial to automatically start mining when you lock your computer]]. (Windows 7)&lt;br /&gt;
* [http://bitcoinminer.com Bitcoin Miner]&lt;br /&gt;
* [http://www.bitcongress.org/bitcoin/best-bitcoin-mining-hardware/ Bitcoin Mining Hardware Comparison]&lt;br /&gt;
* [http://www.reddit.com/r/Bitcoin/comments/18q2jx/eli5_bitcoin_mining_xpost_in_eli5/ Simplified Explanation of Bitcoin Mining] by reddit user [http://www.reddit.com/user/azotic azotic]&lt;br /&gt;
* [https://bitcoinchain.com/pools Bitcoin Mining Pools Comparison]&lt;br /&gt;
* [http://www.bitcoinmining.com/best-bitcoin-cloud-mining-contract-reviews/ Research, Review and Compare Cloud Mining Contracts]&lt;br /&gt;
* [https://www.youtube.com/watch?v=GmOzih6I1zs Video: What is Bitcoin Mining?] &lt;br /&gt;
* [http://yogh.io/#mine:last Mining Simulator] ([https://github.com/JornC/bitcoin-transaction-explorer GitHub source])&lt;br /&gt;
* [http://bitcoindaily.org/bitcoin-guides/what-is-bitcoin-mining/ Bitcoin Mining Explained]&lt;br /&gt;
[[ru:Mining]]&lt;br /&gt;
[[Category:Mining]][[Category:Vocabulary]]&lt;/div&gt;</summary>
		<author><name>Kamariks</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Mining&amp;diff=69557</id>
		<title>Mining</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Mining&amp;diff=69557"/>
		<updated>2022-11-23T17:55:16Z</updated>

		<summary type="html">&lt;p&gt;Kamariks: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;!-- This page is designed to be short and simple! It should provide only a very brief explanation of things that have their own page and should link to other pages whenever possible. This page should serve as an entry point and a place to organize most of our mining articles. Thank You! (-Atheros) --&amp;gt;&lt;br /&gt;
[[File:Quick-and-dirty-4x5970-cooling.jpg|thumb|right|A home-made &amp;quot;[[Mining rig|mining rig]]&amp;quot;]]&lt;br /&gt;
== Introduction ==&lt;br /&gt;
&#039;&#039;&#039;Mining&#039;&#039;&#039; is the process of adding transaction records to Bitcoin&#039;s public ledger of past transactions (and a &amp;quot;[[Mining rig|mining rig]]&amp;quot; is a colloquial metaphor for a single computer system that performs the necessary computations for &amp;quot;mining&amp;quot;.&lt;br /&gt;
This ledger of past transactions calls itself the [[blockchain]] as it is a chain of [[block|blocks]].&lt;br /&gt;
The blockchain serves to [[Confirmation|confirm]] transactions to the rest of the network as having taken place.&lt;br /&gt;
Bitcoin nodes use the blockchain to distinguish legitimate Bitcoin transactions from attempts to re-spend coins that have already been spent elsewhere.&lt;br /&gt;
&lt;br /&gt;
Mining is intentionally designed to be resource-intensive and difficult so that the number of blocks found each day by miners remains steady. Individual [[blocks]] must contain a [[proof of work|proof of work]] to be considered valid. This proof of work is verified by other Bitcoin nodes each time they receive a block. Bitcoin uses the [[hashcash]] proof-of-work function.&lt;br /&gt;
&lt;br /&gt;
The primary purpose of mining is to set the history of [[transactions]] in a way that is [[Irreversible Transactions|computationally impractical to modify by any one entity]]. By downloading and verifying the blockchain, bitcoin [[full node|nodes]] are able to reach a consensus about the ordering of events in bitcoin.&lt;br /&gt;
&lt;br /&gt;
Mining is also the mechanism used to [[Controlled supply|introduce Bitcoins]] into the system:&lt;br /&gt;
Miners are paid any [[transaction fees]] as well as a &amp;quot;subsidy&amp;quot; of newly created coins.&lt;br /&gt;
This both serves the purpose of disseminating new coins in a decentralized manner as well as motivating people to provide security for the system.&lt;br /&gt;
&lt;br /&gt;
Bitcoin mining is so-called because it resembles the mining of other commodities:&lt;br /&gt;
it requires exertion and it slowly makes new units available to anybody who wishes to take part. An important difference is that the [[Controlled supply|supply]] does not depend on the amount of mining. In general changing total miner hashpower does not change how many bitcoins are created over the long term.&lt;br /&gt;
&lt;br /&gt;
== Difficulty ==&lt;br /&gt;
=== The Computationally-Difficult Problem ===&lt;br /&gt;
Mining a block is difficult because the SHA-256 hash of a block&#039;s header must be lower than or equal to the [[Target|target]] in order for the block to be accepted by the network. This problem can be simplified for explanation purposes: The hash of a block must start with a certain number of zeros. The probability of calculating a hash that starts with many zeros is very low, therefore many attempts must be made. In order to generate a new hash each round, a [[Nonce|nonce]] is incremented. See [[Proof of work]] for more information.&lt;br /&gt;
&lt;br /&gt;
=== The Difficulty Metric ===&lt;br /&gt;
The [[Difficulty|difficulty]] is the measure of how difficult it is to find a new block compared to the easiest it can ever be. The rate is recalculated every 2,016 blocks to a value such that the previous 2,016 blocks would have been generated in exactly one fortnight (two weeks) had everyone been mining at this difficulty. This is expected yield, on average, one block every ten minutes.&lt;br /&gt;
&lt;br /&gt;
As more miners join, the rate of block creation increases. As the rate of block generation increases, the difficulty rises to compensate, which has a balancing of effect due to reducing the rate of block-creation. Any blocks released by malicious miners that do not meet the required [[Target|difficulty target]] will simply be rejected by the other participants in the network.&lt;br /&gt;
&lt;br /&gt;
=== Reward ===&lt;br /&gt;
When a block is discovered, the discoverer may award themselves a certain number of bitcoins, which is agreed-upon by everyone in the network. Currently this bounty is 6.25 bitcoins; this value will halve every 210,000 blocks. See [[Controlled Currency Supply]].&lt;br /&gt;
&lt;br /&gt;
Additionally, the miner is awarded the fees paid by users sending transactions. The fee is an incentive for the miner to include the transaction in their block. In the future, as the number of new bitcoins miners are allowed to create in each block dwindles, the fees will make up a much more important percentage of mining income.&lt;br /&gt;
&lt;br /&gt;
== The mining ecosystem ==&lt;br /&gt;
&lt;br /&gt;
=== Hardware ===&lt;br /&gt;
[[File:Usb-fpga module 1.15x-hs-800.jpg|thumb|right|FPGA Module]]&lt;br /&gt;
Users have used various types of hardware over time to mine blocks. Hardware specifications and performance statistics are detailed on the [[Mining Hardware Comparison]] page.&lt;br /&gt;
==== CPU Mining ==== &lt;br /&gt;
Early Bitcoin client versions allowed users to use their CPUs to mine. The advent of GPU mining made CPU mining financially unwise as the hashrate of the network grew to such a degree that the amount of bitcoins produced by CPU mining became lower than the cost of power to operate a CPU. The option was therefore removed from the core Bitcoin client&#039;s user interface.&lt;br /&gt;
&lt;br /&gt;
==== GPU Mining ====&lt;br /&gt;
GPU Mining is drastically faster and more efficient than CPU mining. See the main article: [[Why a GPU mines faster than a CPU]]. A variety of popular [[Mining rig|mining rigs]] have been documented.&lt;br /&gt;
==== FPGA Mining ====&lt;br /&gt;
FPGA mining is a very efficient and fast way to mine, comparable to GPU mining and drastically outperforming CPU mining. FPGAs typically consume very small amounts of power with relatively high hash ratings, making them more viable and efficient than GPU mining. See [[Mining Hardware Comparison]] for FPGA hardware specifications and statistics.&lt;br /&gt;
==== ASIC Mining ====&lt;br /&gt;
An application-specific integrated circuit, or &#039;&#039;ASIC&#039;&#039;, is a microchip designed and manufactured for a very specific purpose. ASICs designed for Bitcoin mining were first released in 2013. For the amount of power they consume, they are vastly faster than all previous technologies and already have made GPU mining financially.&lt;br /&gt;
&lt;br /&gt;
==== Mining services (Cloud mining) ====&lt;br /&gt;
[[:Category:Mining_contractors|Mining contractors]] provide mining services with performance specified by contract, often referred to as a &amp;quot;Mining Contract.&amp;quot; They may, for example, rent out a specific level of mining capacity for a set price at a specific duration.&lt;br /&gt;
&lt;br /&gt;
=== Pools ===&lt;br /&gt;
As more and more miners competed for the limited supply of blocks, individuals found that they were working for months without finding a block and receiving any reward for their mining efforts. This made mining something of a gamble. To address the variance in their income miners started organizing themselves into [[Pooled mining|pools]] so that they could share rewards more evenly. See [[Pooled mining]] and [[Comparison of mining pools]].&lt;br /&gt;
&lt;br /&gt;
=== History ===&lt;br /&gt;
Bitcoin&#039;s public ledger (the &amp;quot;block chain&amp;quot;) was started on January 3rd, 2009 at 18:15 UTC presumably by [[Satoshi Nakamoto]]. The first block is known as the [[genesis block]]. The first transaction recorded in the first block was a single transaction paying the reward of 50 new bitcoins to its creator.&lt;br /&gt;
&lt;br /&gt;
== Staking ==&lt;br /&gt;
&lt;br /&gt;
Staking is a concept in the [[Delegated proof of stake]] coins, closely resembling pooled mining of proof of work coins. According to the [[Proof of Stake|proof of share]] principle, instead of computing powers, the partaking users are pooling their &#039;&#039;stakes&#039;&#039;, certain amounts of money, blocked on their wallets and delegated to the pool’s staking balance.&lt;br /&gt;
&lt;br /&gt;
The network periodically selects a pre-defined number of top staking pools (usually between 20 and 100), based on their staking balances, and allows them to validate transactions in order to get a reward. The rewards are then shared with the delegators, according to their stakes with the pool.&lt;br /&gt;
&lt;br /&gt;
Although staking doesn’t require lots of computing power as mining, it still needs very stable and fast Internet connection in order to collect, verify and sign all transactions in the queue within a small timespan, which can be as short as one second. If a pool fails to do so, it doesn’t get the reward, and it may be shared with the next pool in order.&lt;br /&gt;
&lt;br /&gt;
A lot of [[altcoin]]s are using staking. Staking is often marketed as a much more efficient alternative. Unfortunately staking has the potential to not be much different than politics. A good example is that it&#039;s easy for a big actor to take over the network by simply buying enough coins. This actually happened in 2020 when TRON&#039;s Justin Sun took over the Steem &amp;quot;forum&amp;quot; network and then did some things that made some people unhappy. &lt;br /&gt;
hotel obvious agent lecture gadget evil jealous keen fragile before damp clarify Mnemonic phrase&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
&lt;br /&gt;
* [https://99bitcoins.com/beginners-guide-to-mining/ Beginner&#039;s Guide to Bitcoin Mining]&lt;br /&gt;
* [https://www.zpool.ca Bitcoin Multipool]&lt;br /&gt;
* [https://www.bitcoinmining.com Bitcoin Mining]&lt;br /&gt;
* [http://codinginmysleep.com/bitcoin-mining-in-plain-english Bitcoin Mining in Plain English] by David Perry&lt;br /&gt;
* [https://www.weusecoins.com/en/mining-guide/ Getting Started With Bitcoin Mining]&lt;br /&gt;
* [[Automatically mine when computer is locked|Tutorial to automatically start mining when you lock your computer]]. (Windows 7)&lt;br /&gt;
* [http://bitcoinminer.com Bitcoin Miner]&lt;br /&gt;
* [http://www.bitcongress.org/bitcoin/best-bitcoin-mining-hardware/ Bitcoin Mining Hardware Comparison]&lt;br /&gt;
* [http://www.reddit.com/r/Bitcoin/comments/18q2jx/eli5_bitcoin_mining_xpost_in_eli5/ Simplified Explanation of Bitcoin Mining] by reddit user [http://www.reddit.com/user/azotic azotic]&lt;br /&gt;
* [https://bitcoinchain.com/pools Bitcoin Mining Pools Comparison]&lt;br /&gt;
* [http://www.bitcoinmining.com/best-bitcoin-cloud-mining-contract-reviews/ Research, Review and Compare Cloud Mining Contracts]&lt;br /&gt;
* [https://www.youtube.com/watch?v=GmOzih6I1zs Video: What is Bitcoin Mining?] &lt;br /&gt;
* [http://yogh.io/#mine:last Mining Simulator] ([https://github.com/JornC/bitcoin-transaction-explorer GitHub source])&lt;br /&gt;
* [http://bitcoindaily.org/bitcoin-guides/what-is-bitcoin-mining/ Bitcoin Mining Explained]&lt;br /&gt;
[[ru:Mining]]&lt;br /&gt;
[[Category:Mining]][[Category:Vocabulary]]&lt;/div&gt;</summary>
		<author><name>Kamariks</name></author>
	</entry>
</feed>