<?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=Lux</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=Lux"/>
	<link rel="alternate" type="text/html" href="https://en.bitcoin.it/wiki/Special:Contributions/Lux"/>
	<updated>2026-05-07T04:07:24Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.43.8</generator>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Network&amp;diff=43448</id>
		<title>Network</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Network&amp;diff=43448"/>
		<updated>2013-12-25T23:30:30Z</updated>

		<summary type="html">&lt;p&gt;Lux: added definition of SPV clients, removed stale v0.3 information regarding getheaders, updated external links&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Bitcoin uses a simple broadcast network to propagate transactions and blocks. All communications are done over TCP. Bitcoin is fully able to use ports other than 8333 via the -port parameter. IPv6 is [https://bitcointalk.org/index.php?topic=81378.0 suported] with Bitcoind/Bitcoin-Qt v0.7.&lt;br /&gt;
&lt;br /&gt;
== Messages ==&lt;br /&gt;
* &#039;&#039;version&#039;&#039; - Information about program version and block count. Exchanged when first connecting.&lt;br /&gt;
* &#039;&#039;verack&#039;&#039; - Sent in response to a version message to acknowledge that we are willing to connect.&lt;br /&gt;
* &#039;&#039;addr&#039;&#039; - List of one or more IP addresses and ports.&lt;br /&gt;
* &#039;&#039;inv&#039;&#039; - &amp;quot;I have these blocks/transactions: ...&amp;quot; Normally sent only when a &#039;&#039;new&#039;&#039; block or transaction is being relayed. This is only a list, not the actual data.&lt;br /&gt;
* &#039;&#039;getdata&#039;&#039; - Request a single block or transaction by hash.&lt;br /&gt;
* &#039;&#039;getblocks&#039;&#039; - Request an &#039;&#039;inv&#039;&#039; of all blocks in a range.&lt;br /&gt;
* &#039;&#039;getheaders&#039;&#039; - Request a &#039;&#039;headers&#039;&#039; message containing all block headers in a range.&lt;br /&gt;
* &#039;&#039;tx&#039;&#039; - Send a transaction. This is sent only in response to a &#039;&#039;getdata&#039;&#039; request.&lt;br /&gt;
* &#039;&#039;block&#039;&#039; - Send a block. This is sent only in response to a &#039;&#039;getdata&#039;&#039; request.&lt;br /&gt;
* &#039;&#039;headers&#039;&#039; - Send up to 2,000 block headers. Non-generators can download the headers of blocks instead of entire blocks.&lt;br /&gt;
* &#039;&#039;getaddr&#039;&#039; - Request an &#039;&#039;addr&#039;&#039; message containing a bunch of known-active peers (for bootstrapping).&lt;br /&gt;
* &#039;&#039;submitorder&#039;&#039;, &#039;&#039;checkorder&#039;&#039;, and &#039;&#039;reply&#039;&#039; - Used when performing an [[IP address|IP transaction]].&lt;br /&gt;
* &#039;&#039;alert&#039;&#039; - Send a network alert.&lt;br /&gt;
* &#039;&#039;ping&#039;&#039; - Does nothing. Used to check that the connection is still online. A TCP error will occur if the connection has died.&lt;br /&gt;
&lt;br /&gt;
More information and in-depth technical information is in the [[Protocol Specification]].&lt;br /&gt;
&lt;br /&gt;
== Connection ==&lt;br /&gt;
&lt;br /&gt;
To connect to a peer, you send a &#039;&#039;version&#039;&#039; message containing your version number, block count, and current time. The remote peer will send back a &#039;&#039;verack&#039;&#039; message and his own &#039;&#039;version&#039;&#039; message if he is accepting connections from your version. You will respond with your own &#039;&#039;verack&#039;&#039; if you are accepting connections from his version.&lt;br /&gt;
&lt;br /&gt;
The time data from all of your peers is collected, and the median is used by Bitcoin for all network tasks that use the time (except for other version messages).&lt;br /&gt;
&lt;br /&gt;
You then exchange &#039;&#039;getaddr&#039;&#039; and &#039;&#039;addr&#039;&#039; messages, storing all addresses that you don&#039;t know about. &#039;&#039;addr&#039;&#039; messages often contain only one address, but sometimes contain up to 1000. This is most common at the beginning of an exchange.&lt;br /&gt;
&lt;br /&gt;
== Standard relaying ==&lt;br /&gt;
&lt;br /&gt;
When someone sends a transaction, they send an &#039;&#039;inv&#039;&#039; message containing it to all of their peers. Their peers will request the full transaction with &#039;&#039;getdata&#039;&#039;. If they consider the transaction valid after receiving it, they will also broadcast the transaction to all of their peers with an &#039;&#039;inv&#039;&#039;, and so on. Peers ask for or relay transactions only if they don&#039;t already have them. A peer will never rebroadcast a transaction that it already knows about, though transactions will eventually be forgotten if they don&#039;t get into a block after a while. The sender and receiver of the transaction will rebroadcast, however.&lt;br /&gt;
&lt;br /&gt;
Anyone who is generating will collect valid received transactions and work on including them in a block. When someone does find a block, they send an &#039;&#039;inv&#039;&#039; containing it to all of their peers, as above. It works the same as transactions.&lt;br /&gt;
&lt;br /&gt;
Everyone broadcasts an &#039;&#039;addr&#039;&#039; containing their own IP address every 24 hours. Nodes relay these messages to a couple of their peers and store the address if it&#039;s new to them. Through this system, everyone has a reasonably clear picture of which IPs are connected to the network at the moment. After connecting to the network, you get added to everyone&#039;s address database almost instantly because of your initial &#039;&#039;addr&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
Network alerts are broadcast with &#039;&#039;alert&#039;&#039; messages. No &#039;&#039;inv&#039;&#039;-like system is used; these contain the entire alert. If a received alert is valid (signed by one of the people with the private key), it is relayed to all peers. For as long as an alert is still in effect, it is rebroadcast at the start of every new connection.&lt;br /&gt;
&lt;br /&gt;
== Initial block download ==&lt;br /&gt;
&lt;br /&gt;
At the start of a connection, you send a &#039;&#039;getblocks&#039;&#039; message containing the hash of the latest block you know about. If the peer doesn&#039;t think that this is the latest block, it will send an &#039;&#039;inv&#039;&#039; that contains up to 500 blocks ahead of the one you listed. You will then request all of these blocks with &#039;&#039;getdata&#039;&#039;, and the peer will send them to you with &#039;&#039;block&#039;&#039; messages. After you have downloaded and processed all of these blocks, you will send another &#039;&#039;getblocks&#039;&#039;, etc., until you have all of the blocks.&lt;br /&gt;
&lt;br /&gt;
== Thin SPV Clients ==&lt;br /&gt;
&lt;br /&gt;
[[BIP 0037]] introduced support for thin or lite clients by way of Simple Payment Verification. SPV clients do not need to download the full block contents to verify the existence of funds in the blockchain, but rely on the chain of block headers and bloom filters to obtain the data they need from other nodes. This method of client communication allows high security trustless communication with full nodes, but at the expensive of some privacy as the peers can deduce which addresses the SPV client is seeking information about. &lt;br /&gt;
&lt;br /&gt;
[[MultiBit]] and [[Bitcoin Wallet]] work in this fashion using the library [[bitcoinj]] as their foundation.  &lt;br /&gt;
&lt;br /&gt;
== Bootstrapping ==&lt;br /&gt;
&lt;br /&gt;
You choose which peers to connect to by sorting your address database by the time since you last saw the address and then adding a bit of randomization.&lt;br /&gt;
&lt;br /&gt;
Bitcoin has three methods of finding peers.&lt;br /&gt;
&lt;br /&gt;
=== Addr ===&lt;br /&gt;
&lt;br /&gt;
The &#039;&#039;addr&#039;&#039; messages described above create an effect similar to the IRC bootstrapping method. You know reasonably quickly whenever a peer joins, though you won&#039;t know for a while when they leave.&lt;br /&gt;
&lt;br /&gt;
Bitcoin comes with a list of addresses known as &amp;quot;seed nodes&amp;quot;. If you are unable to connect to IRC and you&#039;ve never connected to the network before, the client will update the address database by connecting to one of the nodes from this list.&lt;br /&gt;
&lt;br /&gt;
The -addnode command line option can be used to manually add a node.  The -connect option can force bitcoin to connect only to a specific node.&lt;br /&gt;
&lt;br /&gt;
=== DNS ===&lt;br /&gt;
&lt;br /&gt;
Bitcoin looks up the IP Addresses of several host names and adds those to the list of potential addresses.  This is the default seeding mechanism, as of v0.6.x and later.&lt;br /&gt;
&lt;br /&gt;
=== IRC ===&lt;br /&gt;
&lt;br /&gt;
As-of version 0.6.x of the Bitcoin client, IRC bootstrapping is no longer enabled by default.  The information below is accurate for most versions prior.&lt;br /&gt;
&lt;br /&gt;
Bitcoin joins a random channel between #bitcoin00 and #bitcoin99 on irc.lfnet.org. Your nick is set to an encoded form of your IP address. By decoding all the nicks of all users on the channel, you get a list of all IP addresses currently connected to Bitcoin.&lt;br /&gt;
&lt;br /&gt;
For hosts that cannot make outbound connections on port 6667, the lfnet servers are also [[FAQ#Do_I_need_to_configure_my_firewall_to_run_bitcoin?|listening on port 7777]].&lt;br /&gt;
&lt;br /&gt;
== Heartbeat ==&lt;br /&gt;
&lt;br /&gt;
If thirty minutes or more has passed since the client has transmitted any messages it will transmit a message to keep the connection to the peer node alive.&lt;br /&gt;
&lt;br /&gt;
If ninety minutes has passed since a peer node has communicated any messages, then the client will assume that connection has closed.&lt;br /&gt;
&lt;br /&gt;
== See Also ==&lt;br /&gt;
&lt;br /&gt;
* [[Protocol Specification]]&lt;br /&gt;
* [[Satoshi Client Node Discovery]]&lt;br /&gt;
* [http://bitcoinstatus.rowit.co.uk/ Historical Network Status (no longer updated)]&lt;br /&gt;
* [http://getaddr.bitnodes.io/ Bitnodes.io&#039;s network size estimate]&lt;br /&gt;
&lt;br /&gt;
[[Category:Technical]]&lt;br /&gt;
&lt;br /&gt;
[[pl:Sieć]]&lt;/div&gt;</summary>
		<author><name>Lux</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=List_of_address_prefixes&amp;diff=43447</id>
		<title>List of address prefixes</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=List_of_address_prefixes&amp;diff=43447"/>
		<updated>2013-12-25T23:09:48Z</updated>

		<summary type="html">&lt;p&gt;Lux: removed &amp;quot;dead&amp;quot; altcoin prefixes, added private key example for testnet&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Blockchain-based currencies use addresses, which are a [[Base58Check encoding]] of some hash, typically that of a public key. The encoding includes a version byte, which affects the first character in the address. The following is a list of some prefixes which are in use.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; &lt;br /&gt;
|-&lt;br /&gt;
!Decimal version&lt;br /&gt;
!Leading symbol&lt;br /&gt;
!Use&lt;br /&gt;
!Example&lt;br /&gt;
|-&lt;br /&gt;
|0&lt;br /&gt;
|1&lt;br /&gt;
|Bitcoin pubkey hash&lt;br /&gt;
|&amp;lt;tt&amp;gt;17VZNX1SN5NtKa8UQFxwQbFeFc3iqRYhem&amp;lt;/tt&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|5&lt;br /&gt;
|3&lt;br /&gt;
|Bitcoin script hash&lt;br /&gt;
| 3EktnHQD7RiAE6uzMj2ZifT9YgRrkSgzQX&lt;br /&gt;
|-&lt;br /&gt;
|48&lt;br /&gt;
|L&lt;br /&gt;
|Litecoin pubkey hash&lt;br /&gt;
|&amp;lt;tt&amp;gt;LhK2kQwiaAvhjWY799cZvMyYwnQAcxkarr&amp;lt;/tt&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|52&lt;br /&gt;
|M or N&lt;br /&gt;
|Namecoin pubkey hash&lt;br /&gt;
|&amp;lt;tt&amp;gt;NATX6zEUNfxfvgVwz8qVnnw3hLhhYXhgQn&amp;lt;/tt&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|111&lt;br /&gt;
|m or n&lt;br /&gt;
|Bitcoin testnet pubkey hash&lt;br /&gt;
|&amp;lt;tt&amp;gt;mipcBbFg9gMiCh81Kj8tqqdgoZub1ZJRfn&amp;lt;/tt&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|128&lt;br /&gt;
|5&lt;br /&gt;
|Bitcoin Private key&lt;br /&gt;
|&amp;lt;tt&amp;gt;5Hwgr3u458GLafKBgxtssHSPqJnYoGrSzgQsPwLFhLNYskDPyyA&amp;lt;/tt&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|196&lt;br /&gt;
|2&lt;br /&gt;
|Testnet script hash&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|239&lt;br /&gt;
|9&lt;br /&gt;
|Testnet Private key&lt;br /&gt;
|&amp;lt;tt&amp;gt;92Pg46rUhgTT7romnV7iGW6W1gbGdeezqdbJCzShkCsYNzyyNcc&amp;lt;/tt&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
The following table shows the leading symbol(s) and address length(s) for 160 bit hashes for each of the possible decimal version values:&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
!Decimal version&lt;br /&gt;
!Leading symbol&lt;br /&gt;
!Address length&lt;br /&gt;
|-&lt;br /&gt;
|0&lt;br /&gt;
|1&lt;br /&gt;
|up to 34&lt;br /&gt;
|-&lt;br /&gt;
|1&lt;br /&gt;
|Q-Z, a-k, m-o&lt;br /&gt;
|33&lt;br /&gt;
|-&lt;br /&gt;
|2&lt;br /&gt;
|o-z, 2&lt;br /&gt;
|33 or 34&lt;br /&gt;
|-&lt;br /&gt;
|3&lt;br /&gt;
|2&lt;br /&gt;
|34&lt;br /&gt;
|-&lt;br /&gt;
|4&lt;br /&gt;
|2 or 3&lt;br /&gt;
|34&lt;br /&gt;
|-&lt;br /&gt;
|5-6&lt;br /&gt;
|3&lt;br /&gt;
|34&lt;br /&gt;
|-&lt;br /&gt;
|7&lt;br /&gt;
|3 or 4&lt;br /&gt;
|34&lt;br /&gt;
|-&lt;br /&gt;
|8&lt;br /&gt;
|4&lt;br /&gt;
|34&lt;br /&gt;
|-&lt;br /&gt;
|9&lt;br /&gt;
|4 or 5&lt;br /&gt;
|34&lt;br /&gt;
|-&lt;br /&gt;
|10-11&lt;br /&gt;
|5&lt;br /&gt;
|34&lt;br /&gt;
|-&lt;br /&gt;
|12&lt;br /&gt;
|5 or 6&lt;br /&gt;
|34&lt;br /&gt;
|-&lt;br /&gt;
|13&lt;br /&gt;
|6&lt;br /&gt;
|34&lt;br /&gt;
|-&lt;br /&gt;
|14&lt;br /&gt;
|6 or 7&lt;br /&gt;
|34&lt;br /&gt;
|-&lt;br /&gt;
|15-16&lt;br /&gt;
|7&lt;br /&gt;
|34&lt;br /&gt;
|-&lt;br /&gt;
|17&lt;br /&gt;
|7 or 8&lt;br /&gt;
|34&lt;br /&gt;
|-&lt;br /&gt;
|18&lt;br /&gt;
|8&lt;br /&gt;
|34&lt;br /&gt;
|-&lt;br /&gt;
|19&lt;br /&gt;
|8 or 9&lt;br /&gt;
|34&lt;br /&gt;
|-&lt;br /&gt;
|20-21&lt;br /&gt;
|9&lt;br /&gt;
|34&lt;br /&gt;
|-&lt;br /&gt;
|22&lt;br /&gt;
|9 or A&lt;br /&gt;
|34&lt;br /&gt;
|-&lt;br /&gt;
|23&lt;br /&gt;
|A&lt;br /&gt;
|34&lt;br /&gt;
|-&lt;br /&gt;
|24&lt;br /&gt;
|A or B&lt;br /&gt;
|34&lt;br /&gt;
|-&lt;br /&gt;
|25-26&lt;br /&gt;
|B&lt;br /&gt;
|34&lt;br /&gt;
|-&lt;br /&gt;
|27&lt;br /&gt;
|B or C&lt;br /&gt;
|34&lt;br /&gt;
|-&lt;br /&gt;
|28&lt;br /&gt;
|C&lt;br /&gt;
|34&lt;br /&gt;
|-&lt;br /&gt;
|29&lt;br /&gt;
|C or D&lt;br /&gt;
|34&lt;br /&gt;
|-&lt;br /&gt;
|30-31&lt;br /&gt;
|D&lt;br /&gt;
|34&lt;br /&gt;
|-&lt;br /&gt;
|32&lt;br /&gt;
|D or E&lt;br /&gt;
|34&lt;br /&gt;
|-&lt;br /&gt;
|33&lt;br /&gt;
|E&lt;br /&gt;
|34&lt;br /&gt;
|-&lt;br /&gt;
|34&lt;br /&gt;
|E or F&lt;br /&gt;
|34&lt;br /&gt;
|-&lt;br /&gt;
|35-36&lt;br /&gt;
|F&lt;br /&gt;
|34&lt;br /&gt;
|-&lt;br /&gt;
|37&lt;br /&gt;
|F or G&lt;br /&gt;
|34&lt;br /&gt;
|-&lt;br /&gt;
|38&lt;br /&gt;
|G&lt;br /&gt;
|34&lt;br /&gt;
|-&lt;br /&gt;
|39&lt;br /&gt;
|G or H&lt;br /&gt;
|34&lt;br /&gt;
|-&lt;br /&gt;
|40-41&lt;br /&gt;
|H&lt;br /&gt;
|34&lt;br /&gt;
|-&lt;br /&gt;
|42&lt;br /&gt;
|H or J&lt;br /&gt;
|34&lt;br /&gt;
|-&lt;br /&gt;
|43&lt;br /&gt;
|J&lt;br /&gt;
|34&lt;br /&gt;
|-&lt;br /&gt;
|44&lt;br /&gt;
|J or K&lt;br /&gt;
|34&lt;br /&gt;
|-&lt;br /&gt;
|45-46&lt;br /&gt;
|K&lt;br /&gt;
|34&lt;br /&gt;
|-&lt;br /&gt;
|47&lt;br /&gt;
|K or L&lt;br /&gt;
|34&lt;br /&gt;
|-&lt;br /&gt;
|48&lt;br /&gt;
|L&lt;br /&gt;
|34&lt;br /&gt;
|-&lt;br /&gt;
|49&lt;br /&gt;
|L or M&lt;br /&gt;
|34&lt;br /&gt;
|-&lt;br /&gt;
|50-51&lt;br /&gt;
|M&lt;br /&gt;
|34&lt;br /&gt;
|-&lt;br /&gt;
|52&lt;br /&gt;
|M or N&lt;br /&gt;
|34&lt;br /&gt;
|-&lt;br /&gt;
|53&lt;br /&gt;
|N&lt;br /&gt;
|34&lt;br /&gt;
|-&lt;br /&gt;
|54&lt;br /&gt;
|N or P&lt;br /&gt;
|34&lt;br /&gt;
|-&lt;br /&gt;
|55-56&lt;br /&gt;
|P&lt;br /&gt;
|34&lt;br /&gt;
|-&lt;br /&gt;
|57&lt;br /&gt;
|P or Q&lt;br /&gt;
|34&lt;br /&gt;
|-&lt;br /&gt;
|58&lt;br /&gt;
|Q&lt;br /&gt;
|34&lt;br /&gt;
|-&lt;br /&gt;
|59&lt;br /&gt;
|Q or R&lt;br /&gt;
|34&lt;br /&gt;
|-&lt;br /&gt;
|60-61&lt;br /&gt;
|R&lt;br /&gt;
|34&lt;br /&gt;
|-&lt;br /&gt;
|62&lt;br /&gt;
|R or S&lt;br /&gt;
|34&lt;br /&gt;
|-&lt;br /&gt;
|63&lt;br /&gt;
|S&lt;br /&gt;
|34&lt;br /&gt;
|-&lt;br /&gt;
|64&lt;br /&gt;
|S or T&lt;br /&gt;
|34&lt;br /&gt;
|-&lt;br /&gt;
|65-66&lt;br /&gt;
|T&lt;br /&gt;
|34&lt;br /&gt;
|-&lt;br /&gt;
|67&lt;br /&gt;
|T or U&lt;br /&gt;
|34&lt;br /&gt;
|-&lt;br /&gt;
|68&lt;br /&gt;
|U&lt;br /&gt;
|34&lt;br /&gt;
|-&lt;br /&gt;
|69&lt;br /&gt;
|U or V&lt;br /&gt;
|34&lt;br /&gt;
|-&lt;br /&gt;
|70-71&lt;br /&gt;
|V&lt;br /&gt;
|34&lt;br /&gt;
|-&lt;br /&gt;
|72&lt;br /&gt;
|V or W&lt;br /&gt;
|34&lt;br /&gt;
|-&lt;br /&gt;
|73&lt;br /&gt;
|W&lt;br /&gt;
|34&lt;br /&gt;
|-&lt;br /&gt;
|74&lt;br /&gt;
|W or X&lt;br /&gt;
|34&lt;br /&gt;
|-&lt;br /&gt;
|75-76&lt;br /&gt;
|X&lt;br /&gt;
|34&lt;br /&gt;
|-&lt;br /&gt;
|77&lt;br /&gt;
|X or Y&lt;br /&gt;
|34&lt;br /&gt;
|-&lt;br /&gt;
|78&lt;br /&gt;
|Y&lt;br /&gt;
|34&lt;br /&gt;
|-&lt;br /&gt;
|79&lt;br /&gt;
|Y or Z&lt;br /&gt;
|34&lt;br /&gt;
|-&lt;br /&gt;
|80-81&lt;br /&gt;
|Z&lt;br /&gt;
|34&lt;br /&gt;
|-&lt;br /&gt;
|82&lt;br /&gt;
|Z or a&lt;br /&gt;
|34&lt;br /&gt;
|-&lt;br /&gt;
|83&lt;br /&gt;
|a&lt;br /&gt;
|34&lt;br /&gt;
|-&lt;br /&gt;
|84&lt;br /&gt;
|a or b&lt;br /&gt;
|34&lt;br /&gt;
|-&lt;br /&gt;
|85&lt;br /&gt;
|b&lt;br /&gt;
|34&lt;br /&gt;
|-&lt;br /&gt;
|86&lt;br /&gt;
|b or c&lt;br /&gt;
|34&lt;br /&gt;
|-&lt;br /&gt;
|87-88&lt;br /&gt;
|c&lt;br /&gt;
|34&lt;br /&gt;
|-&lt;br /&gt;
|89&lt;br /&gt;
|c or d&lt;br /&gt;
|34&lt;br /&gt;
|-&lt;br /&gt;
|90&lt;br /&gt;
|d&lt;br /&gt;
|34&lt;br /&gt;
|-&lt;br /&gt;
|91&lt;br /&gt;
|d or e&lt;br /&gt;
|34&lt;br /&gt;
|-&lt;br /&gt;
|92-93&lt;br /&gt;
|e&lt;br /&gt;
|34&lt;br /&gt;
|-&lt;br /&gt;
|94&lt;br /&gt;
|e or f&lt;br /&gt;
|34&lt;br /&gt;
|-&lt;br /&gt;
|95&lt;br /&gt;
|f&lt;br /&gt;
|34&lt;br /&gt;
|-&lt;br /&gt;
|96&lt;br /&gt;
|f or g&lt;br /&gt;
|34&lt;br /&gt;
|-&lt;br /&gt;
|97-98&lt;br /&gt;
|g&lt;br /&gt;
|34&lt;br /&gt;
|-&lt;br /&gt;
|99&lt;br /&gt;
|g or h&lt;br /&gt;
|34&lt;br /&gt;
|-&lt;br /&gt;
|100&lt;br /&gt;
|h&lt;br /&gt;
|34&lt;br /&gt;
|-&lt;br /&gt;
|101&lt;br /&gt;
|h or i&lt;br /&gt;
|34&lt;br /&gt;
|-&lt;br /&gt;
|102-103&lt;br /&gt;
|i&lt;br /&gt;
|34&lt;br /&gt;
|-&lt;br /&gt;
|104&lt;br /&gt;
|i or j&lt;br /&gt;
|34&lt;br /&gt;
|-&lt;br /&gt;
|105&lt;br /&gt;
|j&lt;br /&gt;
|34&lt;br /&gt;
|-&lt;br /&gt;
|106&lt;br /&gt;
|j or k&lt;br /&gt;
|34&lt;br /&gt;
|-&lt;br /&gt;
|107-108&lt;br /&gt;
|k&lt;br /&gt;
|34&lt;br /&gt;
|-&lt;br /&gt;
|109&lt;br /&gt;
|k or m&lt;br /&gt;
|34&lt;br /&gt;
|-&lt;br /&gt;
|110&lt;br /&gt;
|m&lt;br /&gt;
|34&lt;br /&gt;
|-&lt;br /&gt;
|111&lt;br /&gt;
|m or n&lt;br /&gt;
|34&lt;br /&gt;
|-&lt;br /&gt;
|112-113&lt;br /&gt;
|n&lt;br /&gt;
|34&lt;br /&gt;
|-&lt;br /&gt;
|114&lt;br /&gt;
|n or o&lt;br /&gt;
|34&lt;br /&gt;
|-&lt;br /&gt;
|115&lt;br /&gt;
|o&lt;br /&gt;
|34&lt;br /&gt;
|-&lt;br /&gt;
|116&lt;br /&gt;
|o or p&lt;br /&gt;
|34&lt;br /&gt;
|-&lt;br /&gt;
|117-118&lt;br /&gt;
|p&lt;br /&gt;
|34&lt;br /&gt;
|-&lt;br /&gt;
|119&lt;br /&gt;
|p or q&lt;br /&gt;
|34&lt;br /&gt;
|-&lt;br /&gt;
|120&lt;br /&gt;
|q&lt;br /&gt;
|34&lt;br /&gt;
|-&lt;br /&gt;
|121&lt;br /&gt;
|q or r&lt;br /&gt;
|34&lt;br /&gt;
|-&lt;br /&gt;
|122-123&lt;br /&gt;
|r&lt;br /&gt;
|34&lt;br /&gt;
|-&lt;br /&gt;
|124&lt;br /&gt;
|r or s&lt;br /&gt;
|34&lt;br /&gt;
|-&lt;br /&gt;
|125&lt;br /&gt;
|s&lt;br /&gt;
|34&lt;br /&gt;
|-&lt;br /&gt;
|126&lt;br /&gt;
|s or t&lt;br /&gt;
|34&lt;br /&gt;
|-&lt;br /&gt;
|127-128&lt;br /&gt;
|t&lt;br /&gt;
|34&lt;br /&gt;
|-&lt;br /&gt;
|129&lt;br /&gt;
|t or u&lt;br /&gt;
|34&lt;br /&gt;
|-&lt;br /&gt;
|130&lt;br /&gt;
|u&lt;br /&gt;
|34&lt;br /&gt;
|-&lt;br /&gt;
|131&lt;br /&gt;
|u or v&lt;br /&gt;
|34&lt;br /&gt;
|-&lt;br /&gt;
|132-133&lt;br /&gt;
|v&lt;br /&gt;
|34&lt;br /&gt;
|-&lt;br /&gt;
|134&lt;br /&gt;
|v or w&lt;br /&gt;
|34&lt;br /&gt;
|-&lt;br /&gt;
|135&lt;br /&gt;
|w&lt;br /&gt;
|34&lt;br /&gt;
|-&lt;br /&gt;
|136&lt;br /&gt;
|w or x&lt;br /&gt;
|34&lt;br /&gt;
|-&lt;br /&gt;
|137-138&lt;br /&gt;
|x&lt;br /&gt;
|34&lt;br /&gt;
|-&lt;br /&gt;
|139&lt;br /&gt;
|x or y&lt;br /&gt;
|34&lt;br /&gt;
|-&lt;br /&gt;
|140&lt;br /&gt;
|y&lt;br /&gt;
|34&lt;br /&gt;
|-&lt;br /&gt;
|141&lt;br /&gt;
|y or z&lt;br /&gt;
|34&lt;br /&gt;
|-&lt;br /&gt;
|142-143&lt;br /&gt;
|z&lt;br /&gt;
|34&lt;br /&gt;
|-&lt;br /&gt;
|144&lt;br /&gt;
|z or 2&lt;br /&gt;
|34 or 35&lt;br /&gt;
|-&lt;br /&gt;
|145-255&lt;br /&gt;
|2&lt;br /&gt;
|35&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Lux</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Testnet&amp;diff=43446</id>
		<title>Testnet</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Testnet&amp;diff=43446"/>
		<updated>2013-12-25T22:53:43Z</updated>

		<summary type="html">&lt;p&gt;Lux: reorganization of external links, added BTClook&amp;#039;s testnet explorer&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The &#039;&#039;&#039;testnet&#039;&#039;&#039; is an alternative Bitcoin [[block chain]], to be used for testing. This allows application developers or bitcoin testers to experiment, without having to use real bitcoins or worrying about breaking the main bitcoin chain.&lt;br /&gt;
&lt;br /&gt;
Run bitcoin or bitcoind with the -testnet flag to use the testnet (or put testnet=1 in the bitcoin.conf file).&lt;br /&gt;
&lt;br /&gt;
There have been three generations of testnet. Testnet2 was just the first testnet reset with a different genesis block, because people were starting to trade testnet coins for real money. &#039;&#039;&#039;Testnet3&#039;&#039;&#039; is the current test network. It was introduced with the 0.7 release, introduced a third genesis block, a new rule to avoid the &amp;quot;difficulty was too high, is now too low, and transactions take too long to verify&amp;quot; problem, and contains blocks with edge-case transactions designed to test implementation compatibility.&lt;br /&gt;
&lt;br /&gt;
==Differences==&lt;br /&gt;
* Default Bitcoin network protocol listen port is 18333 (instead of 8333)&lt;br /&gt;
* Default RPC connection port is 18332 (instead of 8332)&lt;br /&gt;
* Bootstrapping IRC channel is #bitcoinTEST instead of #bitcoin (both on irc.lfnet.org). The built-in node list is disabled.&lt;br /&gt;
* A different value of ADDRESSVERSION field ensures no testnet Bitcoin addresses will work on the production network. (0x6F rather than 0x00)&lt;br /&gt;
* The protocol message header bytes are 0x0B110907 (instead of 0xF9BEB4D9) &lt;br /&gt;
* Minimum [[difficulty]] of 1.0 on testnet is equal to difficulty of 0.5 on mainnet. This means that the mainnet-equivalent of any testnet difficulty is half the testnet difficulty. In addition, if no block has been found in 20 minutes, the difficulty automatically resets back to the minimum for a single block, after which it returns to its previous value.&lt;br /&gt;
* A new genesis block&lt;br /&gt;
* The IsStandard() check is disabled so that non-standard transactions can be experimented with.&lt;br /&gt;
&lt;br /&gt;
==Genesis Block==&lt;br /&gt;
&lt;br /&gt;
Testnet uses a different genesis block to the main network. You can find it [https://www.biteasy.com/testnet/blocks/000000000933ea01ad0ee984209779baaec3ced90fa3f408719526f8d77f4943 here] or [http://blockexplorer.com/testnet/b/0 here].&lt;br /&gt;
The testnet was reset with a new genesis block for the 0.7 bitcoin release.&lt;br /&gt;
&lt;br /&gt;
==External links==&lt;br /&gt;
* [https://bitcointalk.org/?topic=4483.0 Test Network forum topic]&lt;br /&gt;
* [http://faucet.xeno-genesis.com/ Mojocoin Testnet3 Faucet]&lt;br /&gt;
* [http://tpfaucet.appspot.com/ TP&#039;s TestNet Faucet]&lt;br /&gt;
* [https://freebitcoins.appspot.com/test/ Testnet Faucet (closed)]&lt;br /&gt;
* [http://testnet.btclook.com/ BTCLook Testnet Explorer]&lt;br /&gt;
* [https://www.biteasy.com/testnet/blocks Biteasy.com Testnet Blockexplorer]&lt;br /&gt;
* [http://pool.qdoop.net:18331/chain/Testnet3 Testnet3 ABE based Block Explorer]&lt;br /&gt;
* [http://blockexplorer.com/testnet Testnet Block Explorer]&lt;br /&gt;
* [https://sourceforge.net/projects/bitcoin/files/Bitcoin/testnet-in-a-box/ Testnet-In-A-Box self-contained testnet]&lt;br /&gt;
* [https://github.com/freewil/bitcoin-testnet-box Forked/Updated testnet-box]&lt;br /&gt;
&lt;br /&gt;
[[Category:Technical]]&lt;br /&gt;
[[Category:Developer]]&lt;/div&gt;</summary>
		<author><name>Lux</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Xtreme_Miners_Leopard&amp;diff=43423</id>
		<title>Xtreme Miners Leopard</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Xtreme_Miners_Leopard&amp;diff=43423"/>
		<updated>2013-12-25T08:57:35Z</updated>

		<summary type="html">&lt;p&gt;Lux: Undo revision 43420 by Lux (talk)&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{delete|Astroturfing probable scam.}}&lt;br /&gt;
&lt;br /&gt;
The Leopard is the 2.5 TH Miner from Xtreme Miners.&lt;br /&gt;
&lt;br /&gt;
Xtreme Miners are the perfect combination of latest technology, most powerful hashing power on the market (compared to size and price), and futuristic design.&lt;br /&gt;
&lt;br /&gt;
We offer 3 different types of miners, The Leopard is the smallest one (2,5 TH/s)&lt;br /&gt;
It works perfectly stable for 24 hours straight and longer.&lt;br /&gt;
The Leopards will start shipping January 2014. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Details:&lt;br /&gt;
&lt;br /&gt;
- 2,5 TH/s&lt;br /&gt;
&lt;br /&gt;
- Dimensions: 15“ x 13.3“ x 13.7“ (38cm x 34cm x 35cm)&lt;br /&gt;
&lt;br /&gt;
- 28nm ASIC technology&lt;br /&gt;
&lt;br /&gt;
- Silent Cooling&lt;br /&gt;
&lt;br /&gt;
- In-built WiFi Connection (without Antenna)&lt;br /&gt;
&lt;br /&gt;
- Less than 750 watt (0.3 per GH)&lt;br /&gt;
&lt;br /&gt;
- 1 Year Guarantee&lt;br /&gt;
     &lt;br /&gt;
&lt;br /&gt;
Price: $ 5.800&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
COMES WITH :&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
- Power Supply&lt;br /&gt;
&lt;br /&gt;
- Free Remote Power Outlet &amp;amp; Smartphone App&lt;br /&gt;
&lt;br /&gt;
- Free User Guide&lt;br /&gt;
&lt;br /&gt;
- Free Personal Assistance for Setup&lt;/div&gt;</summary>
		<author><name>Lux</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Deterministic_wallet&amp;diff=43422</id>
		<title>Deterministic wallet</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Deterministic_wallet&amp;diff=43422"/>
		<updated>2013-12-25T08:52:06Z</updated>

		<summary type="html">&lt;p&gt;Lux: article rewrite, clarification of &amp;quot;type 2 wallets&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A deterministic wallet is a system of deriving keys from a single starting point known as a seed. The seed allows a user to easily back up and restore a wallet without needing any other information and can in some cases allow the creation of public addresses without the knowledge of the private key. &lt;br /&gt;
&lt;br /&gt;
== Benefits ==&lt;br /&gt;
&lt;br /&gt;
Early clients such as the [[Satoshi client]] generate a buffer of fresh random private keys to be used as receiving and [[change|change addresses]] in the future. This has the effect of invalidating backups after a short period when the keypool buffer (typically 100 addresses) is exhausted, deterministic wallets can generate an unlimited number of addresses on the fly and as such don&#039;t suffer from this issue. As the addresses are generated in a known fashion rather than randomly some clients can be used on multiple devices without the risk of losing funds. Users can conveniently create a single backup of the seed in a human readable format that will last the life of the wallet, without the worry of this backup becoming stale. &lt;br /&gt;
&lt;br /&gt;
Certain types of deterministic wallet (BIP0032 and Armory) additionally allow for the complete separation of private and public key creation for greater security and convenience. In this model a server can be set up to only know the Master Public Key of a particular deterministic wallet. This allows the server to create as many public keys as is necessary for receiving funds, but a compromise of the MPK will not allow an attacker to spend from the wallet. They can alternatively be used in [[Electrum]] and [[Armory]] to enable completely offline storage and spending, where an offline computer knows the private key and an online one knows only the MPK. Transactions spending coins are ferried between the two computers via USB storage which avoids exposing the offline computer to a network-based attack. &lt;br /&gt;
&lt;br /&gt;
==Types==&lt;br /&gt;
&lt;br /&gt;
===Type 1 deterministic wallet===&lt;br /&gt;
A type 1 deterministic wallet is a simple method of generating addresses from a known starting string, as such it does not allow advanced features such as a Master Public Key. To generate a private key take SHA256(string + n), where n is an ASCII-coded number that starts from 1 and increments as additional keys are needed. &lt;br /&gt;
&lt;br /&gt;
This  type of wallet can be created by Casascius Bitcoin Address Utility.&lt;br /&gt;
&lt;br /&gt;
===Type 2 hierarchical deterministic wallet===&lt;br /&gt;
This wallet type is described in [[BIP 0032]] and is fully implemented in [[Electrum]] and [[CarbonWallet]]. The seed is a random 128 bit value presented to the user as a 12 word mnemonic using common English words. The seed is used after 100,000 rounds of SHA256 to slow down attacks against weak user-chosen strings. [https://bitcointalk.org/index.php?topic=330672.msg3547258#msg3547258]. &lt;br /&gt;
&lt;br /&gt;
The initial description and workings of this wallet type is credited to Gregory Maxwell. [https://bitcointalk.org/index.php?topic=19137.msg239768#msg239768]&lt;br /&gt;
&lt;br /&gt;
===Armory deterministic wallet===&lt;br /&gt;
[[Armory]] has its own Type-2 deterministic wallet format based on a &amp;quot;root key&amp;quot; and a &amp;quot;chain code.&amp;quot; Earlier versions of Armory required backing up both the &amp;quot;root key&amp;quot; and &amp;quot;chaincode,&amp;quot; while newer versions start deriving the chaincode from the private key in a non-reversible way.  These newer Armory wallets (0.89+) only require the single, 256-bit root key. This older format is intended to be phased out in favor of the standard BIP0032 format. [https://bitcointalk.org/index.php?topic=351099.msg3770818#msg3770818]&lt;/div&gt;</summary>
		<author><name>Lux</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Xtreme_Miners_Leopard&amp;diff=43420</id>
		<title>Xtreme Miners Leopard</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Xtreme_Miners_Leopard&amp;diff=43420"/>
		<updated>2013-12-25T07:45:00Z</updated>

		<summary type="html">&lt;p&gt;Lux: astroturfing warning&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;This entry appears to be astroturfing, the company is likely untrustworthy. Use caution.&#039;&#039;&#039; [[User:Lux|Lux]] ([[User talk:Lux|talk]]) 07:45, 25 December 2013 (GMT)&lt;br /&gt;
&lt;br /&gt;
-----------&lt;br /&gt;
&lt;br /&gt;
The Leopard is the 2.5 TH Miner from Xtreme Miners.&lt;br /&gt;
&lt;br /&gt;
Xtreme Miners are the perfect combination of latest technology, most powerful hashing power on the market (compared to size and price), and futuristic design.&lt;br /&gt;
&lt;br /&gt;
We offer 3 different types of miners, The Leopard is the smallest one (2,5 TH/s)&lt;br /&gt;
It works perfectly stable for 24 hours straight and longer.&lt;br /&gt;
The Leopards will start shipping January 2014. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Details:&lt;br /&gt;
&lt;br /&gt;
- 2,5 TH/s&lt;br /&gt;
&lt;br /&gt;
- Dimensions: 15“ x 13.3“ x 13.7“ (38cm x 34cm x 35cm)&lt;br /&gt;
&lt;br /&gt;
- 28nm ASIC technology&lt;br /&gt;
&lt;br /&gt;
- Silent Cooling&lt;br /&gt;
&lt;br /&gt;
- In-built WiFi Connection (without Antenna)&lt;br /&gt;
&lt;br /&gt;
- Less than 750 watt (0.3 per GH)&lt;br /&gt;
&lt;br /&gt;
- 1 Year Guarantee&lt;br /&gt;
     &lt;br /&gt;
&lt;br /&gt;
Price: $ 5.800&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
COMES WITH :&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
- Power Supply&lt;br /&gt;
&lt;br /&gt;
- Free Remote Power Outlet &amp;amp; Smartphone App&lt;br /&gt;
&lt;br /&gt;
- Free User Guide&lt;br /&gt;
&lt;br /&gt;
- Free Personal Assistance for Setup&lt;/div&gt;</summary>
		<author><name>Lux</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=User:XtremeMiners&amp;diff=43418</id>
		<title>User:XtremeMiners</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=User:XtremeMiners&amp;diff=43418"/>
		<updated>2013-12-25T07:44:07Z</updated>

		<summary type="html">&lt;p&gt;Lux: noting&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;This entry appears to be astroturfing, the company is likely untrustworthy. Use caution.&#039;&#039;&#039; [[User:Lux|Lux]] ([[User talk:Lux|talk]]) 07:44, 25 December 2013 (GMT)&lt;br /&gt;
&lt;br /&gt;
-----------&lt;br /&gt;
&lt;br /&gt;
Xtreme Miners take Bitcoin Mining to a whole other level.&lt;br /&gt;
Be a part of the future, and let us shape it – together!&lt;br /&gt;
Let us create a world where a decentralized currency rules, where you don’t have to confide your money to any bank or governmental institution.&lt;br /&gt;
&lt;br /&gt;
Bitcoins have the ability to change the world forever, and you can participate in this change!&lt;br /&gt;
&lt;br /&gt;
Let our Miners enthuse you, and let us welcome you into the future of Bitcoin Mining.&lt;br /&gt;
&lt;br /&gt;
Visit us at www.xtrememiners.net&lt;/div&gt;</summary>
		<author><name>Lux</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=User_talk:Nanotube&amp;diff=43416</id>
		<title>User talk:Nanotube</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=User_talk:Nanotube&amp;diff=43416"/>
		<updated>2013-12-25T07:41:38Z</updated>

		<summary type="html">&lt;p&gt;Lux: /* Astroturfing removal */ new section&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Hi Nanotube,&lt;br /&gt;
can you please delete [[Mining pool reward FAQ]]? I created it to provide information about some commonly confused issues, but it&#039;s being abused and thus can&#039;t serve this purpose. [[User:Holy-Fire|Holy-Fire]] 18:43, 26 May 2011 (GMT)&lt;br /&gt;
: I removed the troublesome content and left it to-the-point. This should serve to remove any abuse. --[[User:Firestorm|&amp;lt;span style=&amp;quot;text-shadow:orange 0px 0px 3px;&amp;quot;&amp;gt;&amp;lt;font color=&amp;quot;#FF6600&amp;quot;&amp;gt;&amp;lt;tt&amp;gt;&amp;lt;big&amp;gt;&amp;lt;u&amp;gt;&#039;&#039;&#039;Firestorm&#039;&#039;&#039;&amp;lt;/u&amp;gt;&amp;lt;/big&amp;gt;&amp;lt;/tt&amp;gt;&amp;lt;/font&amp;gt;]]&amp;lt;/span&amp;gt; 18:51, 26 May 2011 (GMT)&lt;br /&gt;
::Sorry, it really doesn&#039;t, see my comment on your talk page. [[User:Holy-Fire|Holy-Fire]] 19:08, 26 May 2011 (GMT)&lt;br /&gt;
:::posted my comments on firestorm&#039;s user talk page and the faq-page talk page. https://en.bitcoin.it/wiki/Talk:Mining_pool_reward_FAQ&lt;br /&gt;
&lt;br /&gt;
==Help Page==&lt;br /&gt;
&lt;br /&gt;
Hello, Nanotube. I&#039;ve created a fairly simple [[Help:Contents|Help page]] that I&#039;m going to be expanding over time. Would it be a good idea to link to this in the sidebar? --[[User:Firestorm|&amp;lt;span style=&amp;quot;text-shadow:orange 0px 0px 3px;&amp;quot;&amp;gt;&amp;lt;font color=&amp;quot;#FF6600&amp;quot;&amp;gt;&amp;lt;tt&amp;gt;&amp;lt;big&amp;gt;&amp;lt;u&amp;gt;&#039;&#039;&#039;Firestorm&#039;&#039;&#039;&amp;lt;/u&amp;gt;&amp;lt;/big&amp;gt;&amp;lt;/tt&amp;gt;&amp;lt;/font&amp;gt;]]&amp;lt;/span&amp;gt; 14:46, 30 May 2011 (GMT)&lt;br /&gt;
: add it as &amp;quot;Wiki Help&amp;quot;, you think?--[[User:Nanotube|Nanotube]] 16:44, 30 May 2011 (GMT)&lt;br /&gt;
:: Just &amp;quot;Help&amp;quot; should be fine. I&#039;ll collaborate links to various FAQs and help pages regarding Bitcoin itself. I hope to make it the resource to go to if you need information on anything --[[User:Firestorm|&amp;lt;span style=&amp;quot;text-shadow:orange 0px 0px 3px;&amp;quot;&amp;gt;&amp;lt;font color=&amp;quot;#FF6600&amp;quot;&amp;gt;&amp;lt;tt&amp;gt;&amp;lt;big&amp;gt;&amp;lt;u&amp;gt;&#039;&#039;&#039;Firestorm&#039;&#039;&#039;&amp;lt;/u&amp;gt;&amp;lt;/big&amp;gt;&amp;lt;/tt&amp;gt;&amp;lt;/font&amp;gt;]]&amp;lt;/span&amp;gt; 17:06, 30 May 2011 (GMT)&lt;br /&gt;
::: How&#039;s the page looking? --[[User:Firestorm|&amp;lt;span style=&amp;quot;text-shadow:orange 0px 0px 3px;&amp;quot;&amp;gt;&amp;lt;font color=&amp;quot;#FF6600&amp;quot;&amp;gt;&amp;lt;tt&amp;gt;&amp;lt;big&amp;gt;&amp;lt;u&amp;gt;&#039;&#039;&#039;Firestorm&#039;&#039;&#039;&amp;lt;/u&amp;gt;&amp;lt;/big&amp;gt;&amp;lt;/tt&amp;gt;&amp;lt;/font&amp;gt;]]&amp;lt;/span&amp;gt; 05:19, 1 June 2011 (GMT)&lt;br /&gt;
:::: Looking good to me. :) Sorry for delay in response, been busy. --[[User:Nanotube|Nanotube]] 03:11, 30 June 2011 (GMT)&lt;br /&gt;
::::: Could you add it to the sidebar, then? I think it would be more useful than the FAQ --[[User:Firestorm|&amp;lt;span style=&amp;quot;text-shadow:orange 0px 0px 3px;&amp;quot;&amp;gt;&amp;lt;font color=&amp;quot;#FF6600&amp;quot;&amp;gt;&amp;lt;tt&amp;gt;&amp;lt;big&amp;gt;&amp;lt;u&amp;gt;&#039;&#039;&#039;Firestorm&#039;&#039;&#039;&amp;lt;/u&amp;gt;&amp;lt;/big&amp;gt;&amp;lt;/tt&amp;gt;&amp;lt;/font&amp;gt;]]&amp;lt;/span&amp;gt; 16:40, 21 July 2011 (GMT)&lt;br /&gt;
:::::: Took me long enough... but done! :) --[[User:Nanotube|Nanotube]] 22:27, 27 September 2011 (GMT)&lt;br /&gt;
&lt;br /&gt;
==Another language==&lt;br /&gt;
If it will be possible Wiki in another language? Like Wikipedia it will be good to translate to other language, for example Polish. [[User:Frodo|Frodo]] 11:52, 4 May 2012 (GMT)&lt;br /&gt;
&lt;br /&gt;
== user access to modify pages ==&lt;br /&gt;
&lt;br /&gt;
Hi, as discussed, the process is available on [[Special:BitcoinPayment]] [[User:MagicalTux|MagicalTux]] ([[User talk:MagicalTux|talk]]) 08:08, 17 January 2013 (GMT)&lt;br /&gt;
&lt;br /&gt;
== Testing ==&lt;br /&gt;
&lt;br /&gt;
Did you get an email notification about this?&lt;br /&gt;
Please leave a similar comment on my own talk page.&lt;br /&gt;
&lt;br /&gt;
[[User:Ripper234|Ripper234]] ([[User talk:Ripper234|talk]]) 20:45, 30 April 2013 (GMT)&lt;br /&gt;
&lt;br /&gt;
== Message text fix ==&lt;br /&gt;
&lt;br /&gt;
Please [https://en.bitcoin.it/wiki/MediaWiki:Centralauth-groupname edit this page] and make it say something like &amp;quot;The bitcoin wikis&amp;quot;, this will get the goofy wikimedia foundation text off the login screen. Thanks. --[[User:Gmaxwell|Gmaxwell]] ([[User talk:Gmaxwell|talk]]) 20:40, 9 May 2013 (GMT)&lt;br /&gt;
:: Thanks for the heads-up, done. [[User:Nanotube|Nanotube]] ([[User talk:Nanotube|talk]]) 23:32, 9 May 2013 (GMT)&lt;br /&gt;
&lt;br /&gt;
== project:todo ==&lt;br /&gt;
&lt;br /&gt;
Hi! I have some ideas for improving this wiki. See [[project:todo]]. I hope you like it. [[User:Guaka|Guaka]] ([[User talk:Guaka|talk]]) 12:27, 14 July 2013 (GMT)&lt;br /&gt;
&lt;br /&gt;
== table sorting not working here ==&lt;br /&gt;
Why is it when I try to create a sortable table on: https://en.bitcoin.it/wiki/Comparison_of_mining_pools it doesn&#039;t work?&lt;br /&gt;
&lt;br /&gt;
I even tested it out by copying and pasting this simple example &amp;quot;code&amp;quot;: http://en.wikipedia.org/wiki/Help:Sorting&lt;br /&gt;
&lt;br /&gt;
It did not show a sortable table even with the copying and pasting of the code. Is it possible that bitcoin.it is using an older version of wiki  and that&#039;s why??&lt;br /&gt;
&lt;br /&gt;
* What&#039;s the problem? The table on that page has always worked fine for sorting... --[[User:Luke-jr|Luke-jr]] ([[User talk:Luke-jr|talk]]) 21:05, 9 November 2013 (GMT)&lt;br /&gt;
&lt;br /&gt;
== Astroturfing removal ==&lt;br /&gt;
&lt;br /&gt;
Can the following be removed? They appear to be astroturfing of a very suspicious looking company. I can find no record of them existing outside of this wiki. &lt;br /&gt;
&lt;br /&gt;
https://en.bitcoin.it/w/index.php?title=Xtreme_Miners_Tiger&lt;br /&gt;
&lt;br /&gt;
https://en.bitcoin.it/w/index.php?title=Xtreme_Miners_Lion&lt;/div&gt;</summary>
		<author><name>Lux</name></author>
	</entry>
</feed>