<?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=Stemby</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=Stemby"/>
	<link rel="alternate" type="text/html" href="https://en.bitcoin.it/wiki/Special:Contributions/Stemby"/>
	<updated>2026-05-14T20:26:54Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.43.8</generator>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Network&amp;diff=60433</id>
		<title>Network</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Network&amp;diff=60433"/>
		<updated>2016-02-20T01:13:16Z</updated>

		<summary type="html">&lt;p&gt;Stemby: fixing typo&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 supported] 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;
* [http://fullnode.info/howto.html How to run your own cheap full bitcoin node]&lt;br /&gt;
* [https://www.bitcoinmining.com/ Bitcoin Mining]&lt;br /&gt;
* [https://www.youtube.com/watch?v=GmOzih6I1zs Video: What is Bitcoin Mining]&lt;br /&gt;
&lt;br /&gt;
[[Category:Technical]]&lt;br /&gt;
&lt;br /&gt;
[[pl:Sieć]]&lt;/div&gt;</summary>
		<author><name>Stemby</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Vanitygen&amp;diff=48770</id>
		<title>Vanitygen</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Vanitygen&amp;diff=48770"/>
		<updated>2014-07-13T16:41:37Z</updated>

		<summary type="html">&lt;p&gt;Stemby: /* Expected keysearch rate */ + GTX 770&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Vanitygen&#039;&#039;&#039; is a command-line vanity bitcoin address generator.&lt;br /&gt;
&lt;br /&gt;
If you&#039;re tired of the random, cryptic addresses generated by regular bitcoin clients, you can use vanitygen to create a more personalized address.&lt;br /&gt;
Add unique flair when you tell people to send bitcoins to 1stDownqyMHHqnDPRSfiZ5GXJ8Gk9dbjO.&lt;br /&gt;
Alternatively, vanitygen can be used to generate random addresses offline.&lt;br /&gt;
&lt;br /&gt;
Vanitygen accepts as input a pattern, or list of patterns to search for, and produces a list of addresses and private keys.  Vanitygen&#039;s search is probabilistic, and the amount of time required to find a given pattern depends on how complex the pattern is, the speed of your computer, and whether you get lucky.&lt;br /&gt;
&lt;br /&gt;
The example below illustrates a session of vanitygen.  It is typical, and takes about 10 sec to finish, using a Core 2 Duo E6600 CPU on x86-64 Linux:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
$ ./vanitygen 1Boat&lt;br /&gt;
Difficulty: 4476342&lt;br /&gt;
Pattern: 1Boat                                                                 &lt;br /&gt;
Address: 1BoatSLRHtKNngkdXEeobR76b53LETtpyT&lt;br /&gt;
Privkey: 5J4XJRyLVgzbXEgh8VNi4qovLzxRftzMd8a18KkdXv4EqAwX3tS&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Vanitygen includes components to perform address searching on your CPU (vanitygen) and your OpenCL-compatible GPU (oclvanitygen).  Both can be built from source, and both are included in the Windows binary package.  Also included is oclvanityminer, the vanity address mining client.  Oclvanityminer can be used to automatically claim bounties on sites such as [[User:ThePiachu|ThePiachu]]&#039;s [[Vanity Pool]].&lt;br /&gt;
&lt;br /&gt;
Current version: 0.22&lt;br /&gt;
&lt;br /&gt;
Windows x86+x64 binaries [https://github.com/downloads/samr7/vanitygen/vanitygen-0.20-win.zip here].  PGP signature [http://insight.gotdns.org/~samr7/vanitygen-0.20-win.zip.asc here].&lt;br /&gt;
&lt;br /&gt;
Get the source from [https://github.com/samr7/vanitygen GitHub].  Includes Makefiles for Linux and Mac OS X.&lt;br /&gt;
&lt;br /&gt;
Main discussion at [https://bitcointalk.org/index.php?topic=25804.0 BitCoinTalk]&lt;br /&gt;
&lt;br /&gt;
For AMD Catalyst 13.1+ you need to run the AMD APP SDK Runtime from Catalyst 12.10 in order to get this program to work. (So all your Catalyst drivers would be brand new except for the SDK Runtime.) This is discussed on [https://github.com/samr7/vanitygen/issues/19 GitHub]. Linux users try [https://github.com/samr7/vanitygen/issues/19#issuecomment-28689948 this solution].&lt;br /&gt;
&lt;br /&gt;
Also the latest source doesn&#039;t work properly for high-end AMD cards (7XXX and greater). Solution is to change line 459 in oclengine.c from: return quirks; to: return quirks &amp;amp; ~VG_OCL_AMD_BFI_INT;&lt;br /&gt;
Windows x86+x64 binaries that solve this problem plus provide support for compressed keys [https://lifeboat.com/oclvanitygen here]. PGP signature [https://lifeboat.com/oclvanitygen.zip.sig here]. If you have any problems with the binaries, join the relevant [https://bitcointalk.org/index.php?topic=301068.0 BitCoinTalk discussion].&lt;br /&gt;
&lt;br /&gt;
== Expected keysearch rate ==&lt;br /&gt;
Main article: [[Vanitygen keysearch rate]]&lt;br /&gt;
&lt;br /&gt;
What key search rate can I expect from hardware X?&lt;br /&gt;
&lt;br /&gt;
Detailed list forthcoming.  Some ballpark estimates are listed below.&lt;br /&gt;
&lt;br /&gt;
 Dual-core desktop CPUs, 32-bit mode: 100-250 Kkey/s.&lt;br /&gt;
 Dual-core desktop CPUs, 64-bit mode: 150-450 Kkey/s.&lt;br /&gt;
 Quad-core desktop CPUs, 32-bit mode: 200-400 Kkey/s.&lt;br /&gt;
 Quad-core desktop CPUs, 64-bit mode: 300-750 Kkey/s.&lt;br /&gt;
 NVIDIA GT200 GPUs: up to 6.5 Mkey/s.&lt;br /&gt;
 NVIDIA GTX 770 GPUs: around 29.5 Mkey/s.&lt;br /&gt;
 AMD Radeon 58XX, 68XX GPUs: up to 23.5 Mkey/s.&lt;br /&gt;
 AMD Radeon 69XX GPUs: up to 19.5 Mkey/s.&lt;br /&gt;
&lt;br /&gt;
As vanitygen performs a lot of large integer arithmetic, running it in 64-bit mode makes a huge difference in key search rate, easily a 50% improvement over 32-bit mode.  If you are using a 64-bit edition of Windows, and not using a GPU, be sure to use vanitygen64.exe.&lt;br /&gt;
&lt;br /&gt;
Radeon 58XX outperforms Radeon 69XX by a very comfortable margin.  Oclvanitygen is sensitive to integer multiply throughput, and Radeon 58XX can multiply concurrently with other operations.  At similar clocks, a hobbled Radeon 5830 will outperform a Radeon 6970.&lt;br /&gt;
&lt;br /&gt;
In custom builds, CPU performance will be less than expected if the OpenSSL library is an older version (&amp;lt;1.0.0d) or is not built with the appropriate optimizations enabled.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
* [[Bitcoin Vanity Generation Website]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Vanity address]]&lt;/div&gt;</summary>
		<author><name>Stemby</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Technical_background_of_version_1_Bitcoin_addresses&amp;diff=48457</id>
		<title>Technical background of version 1 Bitcoin addresses</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Technical_background_of_version_1_Bitcoin_addresses&amp;diff=48457"/>
		<updated>2014-06-27T01:04:27Z</updated>

		<summary type="html">&lt;p&gt;Stemby: 50 → 25 (halving)&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:PubKeyToAddr.png|thumb|right|Conversion from ECDSA public key to Bitcoin Address]]&lt;br /&gt;
This article may be too technical for some users. The more basic article on [[Address|Bitcoin Addresses]] may be more appropriate.&lt;br /&gt;
&lt;br /&gt;
A [[Bitcoin address]] is a 160-bit hash of the public portion of a public/private [[Wikipedia:Elliptic_Curve_DSA|ECDSA]] keypair. Using [[Wikipedia:Public-key_cryptography|public-key cryptography]], you can &amp;quot;sign&amp;quot; data with your [[private key]] and anyone who knows your public key can verify that the signature is valid.&lt;br /&gt;
&lt;br /&gt;
A new keypair is generated for each receiving address. Bitcoin addresses (the public keys) and their associated private keys are stored in the [[wallet]] data file. This is the only file you need to [[backup|back up]]. A &amp;quot;send&amp;quot; transaction to a specific Bitcoin address requires that the corresponding private key exist in the recipient&#039;s wallet. This has the implication that if you create a receiving address and receive coins to that address, then restore the wallet from an earlier backup, before the address was generated, then the coins associated with that address are lost.  Addresses are added to an address [[key pool]] prior to being used for receiving coins. If you lose your wallet entirely, all of your coins are lost and can never be recovered.&lt;br /&gt;
&lt;br /&gt;
&amp;quot;Generate&amp;quot; transactions happen in the same way as a send transaction: each batch of 25 (50 in the past) generated coins is &amp;quot;sent&amp;quot; to a unique address that you generate just for that purpose. These addresses are also stored in your wallet, but they are not shown in the &amp;quot;your receiving addresses&amp;quot; section.&lt;br /&gt;
&lt;br /&gt;
Bitcoin allows you to create as many addresses as you want, and each one is completely separate. There is no &amp;quot;master address&amp;quot;: the &amp;quot;Your Bitcoin address&amp;quot; area in the Bitcoin UI has no special importance. It&#039;s only there for your convenience, and it will change automatically from time to time to enhance your anonymity. All of your other addresses will continue to work forever. They&#039;re listed in the &amp;quot;your receiving addresses&amp;quot; section. Each address takes up only about 500 bytes, so having a large number of addresses in your wallet is generally not a problem.&lt;br /&gt;
&lt;br /&gt;
Bitcoin addresses contain a built-in check code, so it&#039;s generally not possible to send Bitcoins to a mistyped address. However, if the address is well-formed but no one owns it (or the owner lost their wallet.dat), any coins sent to that address will be lost forever.&lt;br /&gt;
&lt;br /&gt;
Hash values and the checksum data are converted to an alpha-numeric representation using a custom scheme: the [[Base58Check encoding]] scheme. Under Base58Check, addresses can contain all alphanumeric characters except 0, O, I, and l. Normal addresses currently always start with 1 (addresses from script hashes use 3), though this might change in a future version. Testnet addresses usually start with &#039;&#039;m&#039;&#039; or &#039;&#039;n&#039;&#039;. Mainline addresses can be 25-34 characters in length, and testnet addresses can be 26-34 characters in length. Most addresses are 33 or 34 characters long.&lt;br /&gt;
&lt;br /&gt;
It is also possible to send Bitcoins directly to an [[IP address]] but this method is never recommended as a man-in-the-middle attacks makes redirecting coins trivial.&lt;br /&gt;
&lt;br /&gt;
Since Bitcoin addresses are basically random numbers, it is possible, although extremely unlikely, for two people to independently generate the same address. This is called a [[Wikipedia:Collision_(computer_science)|collision]]. If this happens, then  both the original owner of the address and the colliding owner could spend money sent to that address. It would not be possible for the colliding person to spend the original owner&#039;s entire wallet (or vice versa). If you were to intentionally try to make a collision, it would currently take 2^107 times longer to generate a colliding Bitcoin address than to generate a block. As long as the signing and hashing algorithms remain cryptographically strong, it will likely always be more profitable to collect generations and [[transaction fee|transaction fees]] than to try to create collisions.&lt;br /&gt;
&lt;br /&gt;
==How to create Bitcoin Address==&lt;br /&gt;
0 - Having a private [[ECDSA]] key&lt;br /&gt;
    18E14A7B6A307F426A94F8114701E7C8E774E7F9A47E2C2035DB29A206321725&lt;br /&gt;
1 - Take the corresponding public key generated with it (65 bytes, 1 byte 0x04, 32 bytes corresponding to X coordinate, 32 bytes corresponding to Y coordinate)&lt;br /&gt;
    0450863AD64A87AE8A2FE83C1AF1A8403CB53F53E486D8511DAD8A04887E5B23522CD470243453A299FA9E77237716103ABC11A1DF38855ED6F2EE187E9C582BA6&lt;br /&gt;
2 - Perform SHA-256 hashing on the public key&lt;br /&gt;
    600FFE422B4E00731A59557A5CCA46CC183944191006324A447BDB2D98D4B408&lt;br /&gt;
3 - Perform RIPEMD-160 hashing on the result of SHA-256&lt;br /&gt;
    010966776006953D5567439E5E39F86A0D273BEE&lt;br /&gt;
4 - Add version byte in front of RIPEMD-160 hash (0x00 for Main Network)&lt;br /&gt;
    00010966776006953D5567439E5E39F86A0D273BEE&lt;br /&gt;
5 - Perform SHA-256 hash on the extended RIPEMD-160 result&lt;br /&gt;
    445C7A8007A93D8733188288BB320A8FE2DEBD2AE1B47F0F50BC10BAE845C094&lt;br /&gt;
6 - Perform SHA-256 hash on the result of the previous SHA-256 hash&lt;br /&gt;
    D61967F63C7DD183914A4AE452C9F6AD5D462CE3D277798075B107615C1A8A30&lt;br /&gt;
7 - Take the first 4 bytes of the second SHA-256 hash. This is the address checksum&lt;br /&gt;
    D61967F6&lt;br /&gt;
8 - Add the 4 checksum bytes from stage 7 at the end of extended RIPEMD-160 hash from stage 4. This is the 25-byte binary Bitcoin Address.&lt;br /&gt;
    00010966776006953D5567439E5E39F86A0D273BEED61967F6&lt;br /&gt;
9 - Convert the result from a byte string into a base58 string using [[Base58Check encoding]]. This is the most commonly used Bitcoin Address format&lt;br /&gt;
    16UwLL9Risc3QfPqBUvKofHmBQ7wMtjvM&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
* [[Address]]&lt;br /&gt;
* [http://gobittest.appspot.com/Address Address testing suite]&lt;br /&gt;
&lt;br /&gt;
[[Category:Technical]]&lt;/div&gt;</summary>
		<author><name>Stemby</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Elliptic_Curve_Digital_Signature_Algorithm&amp;diff=48456</id>
		<title>Elliptic Curve Digital Signature Algorithm</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Elliptic_Curve_Digital_Signature_Algorithm&amp;diff=48456"/>
		<updated>2014-06-27T00:23:16Z</updated>

		<summary type="html">&lt;p&gt;Stemby: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Elliptic Curve Digital Signature Algorithm&#039;&#039;&#039; or &#039;&#039;&#039;ECDSA&#039;&#039;&#039; is a cryptographic algorithm used by Bitcoin to ensure that funds can only be spent by their rightful owners.&lt;br /&gt;
&lt;br /&gt;
A few concepts related to ECDSA:&lt;br /&gt;
* [[private key]]: A secret number, known only to the person that generated it.  A private key is essentially a randomly generated number.  In Bitcoin, someone with the private key that corresponds to funds on the [[public ledger]] can spend the funds.  In Bitcoin, a private key is a single unsigned 256 bit integer (32 bytes).&lt;br /&gt;
* [[public key]]: A number that corresponds to a private key, but does not need to be kept secret.  A public key can be calculated from a private key, but not vice versa.  A public key can be used to determine if a signature is genuine (in other words, produced with the proper key) without requiring the private key to be divulged.  In Bitcoin, public key are either compressed or uncompressed. Compressed public keys are 33 bytes, consisting of a prefix either 0x02 or 0x03, and a 256-bit integer called &#039;&#039;x&#039;&#039;. The older uncompressed keys are 65 bytes, consisting of constant prefix (0x04), followed by two 256-bit integers called &#039;&#039;x&#039;&#039; and &#039;&#039;y&#039;&#039; (2 * 32 bytes). The prefix of a compressed key allows for the &#039;&#039;y&#039;&#039; value to be derived from the &#039;&#039;x&#039;&#039; value.&lt;br /&gt;
* [[signature]]: A number that proves that a signing operation took place.  A signature is mathematically generated from a [[hash]] of something to be signed, plus a private key.  The signature itself is two numbers known as &#039;&#039;r&#039;&#039; and &#039;&#039;s&#039;&#039;.  With the public key, a mathematical algorithm can be used on the signature to determine that it was originally produced from the hash and the private key, without needing to know the private key. Signatures are either 73, 72, or 71 bytes long, with probabilities approximately 25%, 50% and 25% respectively, although sizes even smaller than that are possible with exponentially decreasing probability.&lt;br /&gt;
&lt;br /&gt;
Read more about [[wikipedia:Elliptic_Curve_DSA|ECDSA on Wikipedia]].&lt;/div&gt;</summary>
		<author><name>Stemby</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Mt._Gox&amp;diff=44647</id>
		<title>Mt. Gox</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Mt._Gox&amp;diff=44647"/>
		<updated>2014-02-26T12:02:54Z</updated>

		<summary type="html">&lt;p&gt;Stemby: note/disclaimer&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;MtGox&#039;&#039;&#039;, called &amp;quot;Mount Gox&amp;quot; or &amp;quot;MTGOX&amp;quot;, has been the most widely used bitcoin [[currency exchange]] market&amp;lt;ref&amp;gt;2011-06-07 on #bitcoin-otc: &amp;quot;MagicalTux: you could use the count of users on mtgox (went over 30k recently)&amp;quot;&amp;lt;/ref&amp;gt; since it was started.&lt;br /&gt;
&lt;br /&gt;
The market was closed February 25, 2014.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;lt;THE FOLLOWING TEXT HAS TO BE VERIFIED AND UPDATED&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
A registrant on MtGox has at least two sub-accounts: one for bitcoins (BTC), and one for US dollars (USD or MTGUSD) or other national currency. Bitcoins are bought using funds from the trader&#039;s national currency account, and the proceeds from the sale of bitcoins are deposited into the same account. Trading must always involve bitcoins as trading between different national currencies is not offered.&lt;br /&gt;
&lt;br /&gt;
Trades on Mt. Gox&#039;s execute from balances on deposit with the exchange which in turn makes trading on the market instantaneous, compared to some other Bitcoin markets where a subsequent settlement occurs manually between the trading partners. The disadvantage of this is that a third party must be trusted with keeping the money safe.&lt;br /&gt;
&lt;br /&gt;
MtGox was originally started by Jed McCaleb in July 2010, and was sold to [[Tibanne Co.]] in Japan in March 2011.  It is currently operated by Tibanne Co., managed by Mark Karpeles (MagicalTux).&lt;br /&gt;
&lt;br /&gt;
==Trading==&lt;br /&gt;
===Buying and selling===&lt;br /&gt;
&lt;br /&gt;
Buying and selling Bitcoins is simple.  A buy order is executed partially or in full when the price bid can be matched against a sell order that is at or below the bid amount.  A sell order is executed partially or in full when the price asked can be matched against a buy order that is at or above the ask amount.  Orders that cannot be matched immediately remain in the orderbook.&lt;br /&gt;
&lt;br /&gt;
Unfunded orders do not appear in the order book, but are automatically readded if a deposit is credited.  For example, Mt. Gox allows the entry of a &amp;quot;buy&amp;quot; order even if the account has insufficient funds.  If possible, Mt. Gox will execute a portion of the order if it can be partially funded.  If a deposit is later credited and the deposit resolves the insufficient funds status of an outstanding order, the order will be immediately activated, and if possible, executed.&lt;br /&gt;
&lt;br /&gt;
===Fees===&lt;br /&gt;
&lt;br /&gt;
Mt. Gox charges a trading fee of up to 0.6% from each party of successful trades made through the market.  The fee appears in the account history next to each trade.  The trading fee is discounted for larger customers based on volume, which is calculated as a sliding window over the last 720 hours (30 days).&lt;br /&gt;
&lt;br /&gt;
The fees are, by default, subtracted from the proceeds of each trade (e.g., a buy of 1.0 BTC will add to the account balance 0.994 BTC when the exchange fee is 0.6%).  An account setting will allow fees to be added to the purchase amount instead (e.g., buying 1.0 BTC at $5 will cost about $5.03 when the exchange fee is 0.6%).&lt;br /&gt;
&lt;br /&gt;
==Adding Funds==&lt;br /&gt;
&lt;br /&gt;
===BTC===&lt;br /&gt;
There are no fees incurred when transferring bitcoins to a Mt. Gox account.&lt;br /&gt;
&lt;br /&gt;
Funds are available once [[confirmation|confirmed]] (6 blocks)&amp;lt;ref&amp;gt;[http://www.bitcoin.org/smf/index.php?topic=3851.msg55220#msg55220 How long does it take to Deposit bitcoins to MtGox?]&amp;lt;/ref&amp;gt;, a process that can take roughly an hour.&lt;br /&gt;
&lt;br /&gt;
The deposit address is presented along with a QR code that can be scanned with a mobile.  This address does not change with each deposit request.&lt;br /&gt;
&lt;br /&gt;
The Add Bitcoins function experiences issues with some browser ad-blocking utilities even though no advertisements are displayed on the website.&lt;br /&gt;
&lt;br /&gt;
====Redeemable Code====&lt;br /&gt;
&lt;br /&gt;
Bitcoins from another Mt. Gox user sent by Mt. Gox [[redeemable code]] (A.K.A. &amp;quot;coupon&amp;quot;) may be deposited and will be available for trading immediately.&lt;br /&gt;
&lt;br /&gt;
===OKPay===&lt;br /&gt;
&lt;br /&gt;
[[OKPay]] may be used for depositing funds to USD, EUR, GBP, CHF, and RUB&amp;lt;ref&amp;gt;[https://support.mtgox.com/entries/21034626-okpay OKPAY]&amp;lt;/ref&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
===Cash Deposit===&lt;br /&gt;
&lt;br /&gt;
====U.S. (USD)====&lt;br /&gt;
* BitInstant - Cash (U.S. dollars) may be deposited at any of thousands of banks, 7-11, Walmart, CVS, Moneygram and more that [[BitInstant]] uses to transfer funds to your Mt. Gox account.&lt;br /&gt;
&lt;br /&gt;
====Brazil (BRL)====&lt;br /&gt;
* BitInstant - Cash (Brazilian real) may be deposited using Boleto or through Banco Recomendito.&lt;br /&gt;
&lt;br /&gt;
====Brazil (BRL)====&lt;br /&gt;
* BitInstant - Cash (Russian rubles) may be deposited using QIWI or Cyberplat&lt;br /&gt;
&lt;br /&gt;
====UK (GBP)====&lt;br /&gt;
* Barclays - Cash (British pound sterling) may be deposited at any Barclays location.  There is a 1.5% fee on deposits made with this method&amp;lt;ref&amp;gt;[https://mtgox.com/press_release_20120806.html Introducing a new 1.5% fee on Barclays cash deposit]&amp;lt;/ref&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
===Bank Wire===&lt;br /&gt;
&lt;br /&gt;
====International USD====&lt;br /&gt;
Funds in USD may be wired to the exchange&#039;s bank in Japan. Each wire is subject to a per-wire fee plus any intermediate fees.  &lt;br /&gt;
&lt;br /&gt;
====International Wire====&lt;br /&gt;
&lt;br /&gt;
An account can be configured with a wallet for each of the currencies that the exchange supports&amp;lt;ref&amp;gt;[https://mtgox.zendesk.com/entries/20413328-mt-gox-opens-15-new-currency-markets Mt.Gox Opens 15 New Currency Markets]&amp;lt;/ref&amp;gt;.  When a wire is received in one of these currencies, that account will be credited.&lt;br /&gt;
&lt;br /&gt;
* USD - U.S. Dollar &lt;br /&gt;
* EUR - Euro (SEPA or Int&#039;l wire)&lt;br /&gt;
* CAD - Canadian Dollar&lt;br /&gt;
* GBP - British Pound (Domestic or Int&#039;l wire)&lt;br /&gt;
* CHF - Swiss Francs&lt;br /&gt;
* RUB - Russian Rubles&lt;br /&gt;
* AUD - Australian Dollars&lt;br /&gt;
* SEK - Swedish Krona&lt;br /&gt;
* DKK - Danish Krona&lt;br /&gt;
* HKD - Hong Kong Dollars&lt;br /&gt;
* PLN - Polish Zloty (Domestic or Int&#039;l wire)&lt;br /&gt;
* CNY - Chinese Yuan&lt;br /&gt;
* SGD - Singapore Dollars&lt;br /&gt;
* TBH - Thai Baht&lt;br /&gt;
* NZD - New Zealand Dollars&lt;br /&gt;
* JPY - Japanese Yen (Domestic or Int&#039;l wire)&lt;br /&gt;
&lt;br /&gt;
===Direct Deposit===&lt;br /&gt;
====EU====&lt;br /&gt;
&lt;br /&gt;
Funds in EUR may be added using SEPA Direct Debit for free, with funds convert to USD at the current ECB rate at the time the funds are received&amp;lt;ref&amp;gt;[http://www.bitcoin.org/smf/index.php?topic=5461.0 MTGox: Euro deposits]&amp;lt;/ref&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
====U.S.====&lt;br /&gt;
&lt;br /&gt;
Mt. Gox doesn&#039;t directly support an ACH-based (direct deposit) deposit method.  Dwolla supports ACH-based fund transfers and those funds can then be deposited with Mt. Gox.&lt;br /&gt;
&lt;br /&gt;
====UK====&lt;br /&gt;
&lt;br /&gt;
Funds may be sent as a GBP direct deposit free of charge.&lt;br /&gt;
&lt;br /&gt;
====Australia====&lt;br /&gt;
&lt;br /&gt;
Funds may be sent using direct deposit (BPay) for a AU$2.00 per-deposit fee.  The funds will be converted to USD at the current rate.&lt;br /&gt;
&lt;br /&gt;
==Withdrawing Funds==&lt;br /&gt;
&lt;br /&gt;
MtGox imposes a $1,000 USD limit for withdrawals per 24 hours and a $10,000 USD limit for withdrawals per month with most non-verified accounts.  Bitcoins withdrawn are counted toward this limit as well and the USD value is calculated at the market rate at the time of the attempted withdrawal.  Customers that have been Verified have higher limits and customers that have Trusted status have limits even higher&amp;lt;ref&amp;gt;[http://bitcoin.stackexchange.com/questions/2442/mtgox-trusted-vs-verified MtGox - trusted vs verified]&amp;lt;/ref&amp;gt;.  Any [[MtGox#Transfers_to_Other_Customers|account-to-account transfers]] made also count toward this limit as well.&lt;br /&gt;
&lt;br /&gt;
Requests for higher withdrawal limits may be submitted by email&lt;br /&gt;
* For higher limits for withdrawal of USD funds, email: aml@mtgox.com&lt;br /&gt;
* For higher limits for withdrawal of BTC funds, email: btcupd@mtgox.com&lt;br /&gt;
&lt;br /&gt;
See the [[MtGox#AML|AML]] section regarding verification levels for AML purposes.&lt;br /&gt;
&lt;br /&gt;
===Dwolla===&lt;br /&gt;
&lt;br /&gt;
[[Dwolla]] is among the fastest and least expensive methods for withdrawing USD funds from a Mt. Gox account. The transaction fee to do so is just $0.25.&lt;br /&gt;
[[Dwolla]] withdrawals are processed every hour during business hours (Japan time) and every 12 hours on weekends.&lt;br /&gt;
&lt;br /&gt;
As of 25 May 2012, MtGox requires account holders to be &amp;quot;verified (level 1) - &#039;see below&#039;&amp;quot; to withdraw via Dwolla. &amp;lt;ref&amp;gt;https://support.mtgox.com/entries/21503347-new-aml-policy-for-all-dwolla-users&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The status of the withdrawal request will show one of the following status codes:&lt;br /&gt;
&lt;br /&gt;
* Preparing: System is running checks to see if the transfer can be executed.&lt;br /&gt;
* Confirmed: Transfer can be executed and is pending in queue.&lt;br /&gt;
* Todo: Transfer is near the top of the queue and will be executed soon.&lt;br /&gt;
* Processed: Transfer has been processed.&lt;br /&gt;
&lt;br /&gt;
===BTC===&lt;br /&gt;
&lt;br /&gt;
Bitcoins may be withdrawn at no charge.&lt;br /&gt;
&lt;br /&gt;
A [[green address]] option is available though this type of transaction could experience a delay if the exchange&#039;s wallet funding level for green address transactions is insufficient.  The withdrawal form also offers an &amp;quot;open transaction&amp;quot; option which forces the transaction to go through the blockchain.  If the recipient of a BTC withdrawal happens to also be from Mt. Gox&#039;s [[EWallet]], then that transfer would occur instantly and the transaction would not be broadcast to the Bitcoin network.  This &amp;quot;open transaction&amp;quot; option forces a withdrawal to be broadcast to the Bitcoin network.&lt;br /&gt;
&lt;br /&gt;
====Redeemable Code====&lt;br /&gt;
&lt;br /&gt;
Mt. Gox no longer allows bitcoins or other currency to be withdrawn using a [[redeemable code]].&lt;br /&gt;
&lt;br /&gt;
===Direct Deposit===&lt;br /&gt;
====U.S.====&lt;br /&gt;
&lt;br /&gt;
There is currently no option for withdrawing funds through a direct deposit bank transaction.  Funds withdrawn to Dwolla may then, in turn, be withdrawn with bank funds deposited as an ACH transaction.&lt;br /&gt;
&lt;br /&gt;
====EU====&lt;br /&gt;
&lt;br /&gt;
You may withdraw any amount as a direct deposit to your bank.  There is a 2% fee on these withdrawals.  Contact the exchange by e-mail for this service.&lt;br /&gt;
&lt;br /&gt;
====Australia====&lt;br /&gt;
&lt;br /&gt;
A per-withdrawal fee (2,000 JPY) is subtracted and the remaining amount is sent via international wire in the chosen currency. If not AUD then an exchange fee of 2.5% will be charged.&lt;br /&gt;
&lt;br /&gt;
===International Wire===&lt;br /&gt;
&lt;br /&gt;
To any IBAN, SWIFT/BIC and ABA routable bank&amp;lt;ref&amp;gt;[http://www.facebook.com/MtGox/posts/343372689080478 Mt.Gox now offers international wire transfer to all US Banks]&amp;lt;/ref&amp;gt;.  Fee applies.&lt;br /&gt;
&lt;br /&gt;
=&lt;br /&gt;
&lt;br /&gt;
==Customer Service==&lt;br /&gt;
&lt;br /&gt;
The preferred method for obtaining service is to place a request through the exchange&#039;s [https://mtgox.zendesk.com help desk].  Another method is to send e-mail with the request.&lt;br /&gt;
&lt;br /&gt;
==Wallet/Banking==&lt;br /&gt;
&lt;br /&gt;
An account at this exchange can be considered to be an [[eWallet]]. This service also offers [[:Category:ECommerce|eCommerce]] merchant [https://mtgox.com/merch/about payment services].&lt;br /&gt;
&lt;br /&gt;
==Security Center==&lt;br /&gt;
&lt;br /&gt;
The Security Center allows an account to be secured through the use of one or more One Time Password (OTP) solutions such as what YubiKey and Google Authenticator offer.  Features can be protected where the OTP must be provided for each action and are configured independently.&lt;br /&gt;
&lt;br /&gt;
For example, a typical configuration is to set OTP as being required for both withdrawals and security center changes but not for login.  With that configuration, the worst damage that can happen from a compromised account or session would be that bitcoins would be bought or sold (though they could also be bought and sold over and over until funds are depleted).&lt;br /&gt;
&lt;br /&gt;
* Login - The OTP must be provided for each login.&lt;br /&gt;
* Withdraw - The OTP must be provided for each withdrawal request.&lt;br /&gt;
* Security - The OTP must be provided during each configuration change to be performed.&lt;br /&gt;
&lt;br /&gt;
==AML==&lt;br /&gt;
&lt;br /&gt;
Varying degrees of verification will allow for greater per-day and per-month total amounts to be withdrawn&amp;lt;ref&amp;gt;[http://support.mtgox.com/entries/20919111-aml-account-statuses AML Account Statuses]&amp;lt;/ref&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
===Unverified (Level 0)===&lt;br /&gt;
&lt;br /&gt;
Designed for basic users, consumers and Bitcoin enthusiasts where 10,000 USD (monthly) is enough for most needs.&lt;br /&gt;
&lt;br /&gt;
===Verified (Level 1)===&lt;br /&gt;
&lt;br /&gt;
The &amp;quot;verified&amp;quot; status is designed for active traders and/or small companies.&lt;br /&gt;
&lt;br /&gt;
===Trusted (Level 2)===&lt;br /&gt;
&lt;br /&gt;
The “trusted” status is designed for day traders, professionals, and companies.&lt;br /&gt;
&lt;br /&gt;
==API==&lt;br /&gt;
&lt;br /&gt;
Mt Gox offers an [[MtGox/API|API]] which can be used to automate operations.&lt;br /&gt;
&lt;br /&gt;
==Data Services==&lt;br /&gt;
&lt;br /&gt;
===Web===&lt;br /&gt;
* Bitstock live watcher for trades, depth, history [http://bitstock.info bitstock.info] (Websockets browser required)&lt;br /&gt;
* [[Bitcoin Charts]]&lt;br /&gt;
* Clark Moody&#039;s [[Real Time Bitcoin Market Data]] including Ticker, Order Book and Time Sales (Websockets browser support required)&lt;br /&gt;
* [[MtGox Live]] (Websockets browser support required)&lt;br /&gt;
* [[Bitcoin Arbitrage Opportunities]] (Websockets browser support required)&lt;br /&gt;
* [[Bitcoin Prices]] market rates in multiple currencies&lt;br /&gt;
* [https://mtgox-viz.appspot.com MtGox-Viz], a visualization of your MtGox account history&lt;br /&gt;
&lt;br /&gt;
===Windows===&lt;br /&gt;
* [[Sierra Chart MtGox Bridge]] trading and charting tool.&lt;br /&gt;
* [[ToyTrader]] command line trading tool&lt;br /&gt;
&lt;br /&gt;
===Mac OS X===&lt;br /&gt;
* [[BitTicker]] for Mac OS X&lt;br /&gt;
* [http://sneak.datavibe.net/20110613/mtgoxwatcher MtGox Watcher] for Mac OS X&lt;br /&gt;
&lt;br /&gt;
===Mobile===&lt;br /&gt;
* [[BitcoinX]] mobile app with bid, ask and 24 hour history. For Android&lt;br /&gt;
* [[MtGox Live]] Bitcoin Trader with buy, sell, send, chart and depth for Android and iOS&lt;br /&gt;
* [https://play.google.com/store/apps/details?id=com.veken0m.cavirtex Bitcoinium] for Android on Google Play&lt;br /&gt;
&lt;br /&gt;
=== firefox addon ===&lt;br /&gt;
* [https://github.com/joric/mtgox-ticker] firefox ticker addon &lt;br /&gt;
&lt;br /&gt;
===Linux===&lt;br /&gt;
* [http://www.goxsh.info goxsh] command line ticker / depth chart&lt;br /&gt;
&lt;br /&gt;
==E-Commerce==&lt;br /&gt;
&lt;br /&gt;
Online sellers can accept bitcoins for payment using the Mt. Gox&#039;s E-commerce Solution, which is an interface to the exchange&#039;s [[MtGox/API/HTTP/v1#Merchant_System|Merchant System API]].&lt;br /&gt;
&lt;br /&gt;
==History==&lt;br /&gt;
The exchange went online on July 18, 2010.&amp;lt;ref&amp;gt;[http://www.bitcoin.org/smf/index.php?topic=444.0 MtGox announcement on forum]&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
On October 10, 2010 the exchange switched from [[PayPal]] to Liberty Reserve as the main funding option as a result of this attack. Former PayPal customers still had the possibility to withdraw their USD using alternative methods.&lt;br /&gt;
&lt;br /&gt;
On March 6th, 2011 ownership of the exchange changed hands&amp;lt;ref&amp;gt;[https://bitcointalk.org/index.php?topic=4187.0 Mtgox is changing owners]&amp;lt;/ref&amp;gt;.  Tibanne publishes their [http://legal.tibanne.com/docs/20110801_company_certificate.pdf company certificate] from the Japanese government.&lt;br /&gt;
&lt;br /&gt;
On June 19, 2011 the service experienced a significant security breach&amp;lt;ref&amp;gt;[https://support.mtgox.com/entries/20224998-huge-bitcoin-sell-off-due-to-a-compromised-account-rollback Huge Bitcoin sell off due to a compromised account - rollback]&amp;lt;/ref&amp;gt;.  The incident caused a selloff down to BTC/USD of $0.01 due to fraudulent trading.  The site was disabled and all trading following the point that fraudulent trading began was rolled back. Complicating this breach was the release of a list of the exchange&#039;s accounts including username, email address and a password hash, which forced the exchange to implement an account recovery method for customers to regain control of their accounts.&lt;br /&gt;
&lt;br /&gt;
In July, 2011 it was observed that the exchange no longer allows new registrations to occur without having a valid e-mail address.&lt;br /&gt;
&lt;br /&gt;
On July 19, 2011 a press release announced that MtGox had acquired [[MtGox Live]].&amp;lt;ref&amp;gt;[https://mtgox.com/press_release_20110719.html World&#039;s Leading Bitcoin Exchange, Mt.Gox, acquires MtGoxLive.com]&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Announced on March 6, 2012 was the Merchant Solution and API&amp;lt;ref&amp;gt;[https://mtgox.com/press_release_20120306.html Mt.Gox launches the definitive bitcoin checkout solution]&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
&lt;br /&gt;
* [[Buying bitcoins]]&lt;br /&gt;
* [[Selling bitcoins]]&lt;br /&gt;
* [[MtGox/API|API]]&lt;br /&gt;
* [[Bitcoin Ladder]]&lt;br /&gt;
&lt;br /&gt;
==External Links==&lt;br /&gt;
&lt;br /&gt;
* [https://mtgox.com MT. Gox exchange] website&lt;br /&gt;
* [https://mtgox.com/merch/about Mt. Gox Merchant Services]&lt;br /&gt;
* [https://mtgox.zendesk.com Customer Service Help Desk]&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&amp;lt;references/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Exchanges]]&lt;br /&gt;
[[Category:eWallets]]&lt;br /&gt;
[[Category:Shopping Cart Interfaces]]&lt;br /&gt;
[[ru:MtGox]]&lt;/div&gt;</summary>
		<author><name>Stemby</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Mt._Gox&amp;diff=44646</id>
		<title>Mt. Gox</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Mt._Gox&amp;diff=44646"/>
		<updated>2014-02-26T12:01:17Z</updated>

		<summary type="html">&lt;p&gt;Stemby: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;MtGox&#039;&#039;&#039;, called &amp;quot;Mount Gox&amp;quot; or &amp;quot;MTGOX&amp;quot;, has been the most widely used bitcoin [[currency exchange]] market&amp;lt;ref&amp;gt;2011-06-07 on #bitcoin-otc: &amp;quot;MagicalTux: you could use the count of users on mtgox (went over 30k recently)&amp;quot;&amp;lt;/ref&amp;gt; since it was started.&lt;br /&gt;
&lt;br /&gt;
The market was closed February 25, 2014.&lt;br /&gt;
&lt;br /&gt;
A registrant on MtGox has at least two sub-accounts: one for bitcoins (BTC), and one for US dollars (USD or MTGUSD) or other national currency. Bitcoins are bought using funds from the trader&#039;s national currency account, and the proceeds from the sale of bitcoins are deposited into the same account. Trading must always involve bitcoins as trading between different national currencies is not offered.&lt;br /&gt;
&lt;br /&gt;
Trades on Mt. Gox&#039;s execute from balances on deposit with the exchange which in turn makes trading on the market instantaneous, compared to some other Bitcoin markets where a subsequent settlement occurs manually between the trading partners. The disadvantage of this is that a third party must be trusted with keeping the money safe.&lt;br /&gt;
&lt;br /&gt;
MtGox was originally started by Jed McCaleb in July 2010, and was sold to [[Tibanne Co.]] in Japan in March 2011.  It is currently operated by Tibanne Co., managed by Mark Karpeles (MagicalTux).&lt;br /&gt;
&lt;br /&gt;
==Trading==&lt;br /&gt;
===Buying and selling===&lt;br /&gt;
&lt;br /&gt;
Buying and selling Bitcoins is simple.  A buy order is executed partially or in full when the price bid can be matched against a sell order that is at or below the bid amount.  A sell order is executed partially or in full when the price asked can be matched against a buy order that is at or above the ask amount.  Orders that cannot be matched immediately remain in the orderbook.&lt;br /&gt;
&lt;br /&gt;
Unfunded orders do not appear in the order book, but are automatically readded if a deposit is credited.  For example, Mt. Gox allows the entry of a &amp;quot;buy&amp;quot; order even if the account has insufficient funds.  If possible, Mt. Gox will execute a portion of the order if it can be partially funded.  If a deposit is later credited and the deposit resolves the insufficient funds status of an outstanding order, the order will be immediately activated, and if possible, executed.&lt;br /&gt;
&lt;br /&gt;
===Fees===&lt;br /&gt;
&lt;br /&gt;
Mt. Gox charges a trading fee of up to 0.6% from each party of successful trades made through the market.  The fee appears in the account history next to each trade.  The trading fee is discounted for larger customers based on volume, which is calculated as a sliding window over the last 720 hours (30 days).&lt;br /&gt;
&lt;br /&gt;
The fees are, by default, subtracted from the proceeds of each trade (e.g., a buy of 1.0 BTC will add to the account balance 0.994 BTC when the exchange fee is 0.6%).  An account setting will allow fees to be added to the purchase amount instead (e.g., buying 1.0 BTC at $5 will cost about $5.03 when the exchange fee is 0.6%).&lt;br /&gt;
&lt;br /&gt;
==Adding Funds==&lt;br /&gt;
&lt;br /&gt;
===BTC===&lt;br /&gt;
There are no fees incurred when transferring bitcoins to a Mt. Gox account.&lt;br /&gt;
&lt;br /&gt;
Funds are available once [[confirmation|confirmed]] (6 blocks)&amp;lt;ref&amp;gt;[http://www.bitcoin.org/smf/index.php?topic=3851.msg55220#msg55220 How long does it take to Deposit bitcoins to MtGox?]&amp;lt;/ref&amp;gt;, a process that can take roughly an hour.&lt;br /&gt;
&lt;br /&gt;
The deposit address is presented along with a QR code that can be scanned with a mobile.  This address does not change with each deposit request.&lt;br /&gt;
&lt;br /&gt;
The Add Bitcoins function experiences issues with some browser ad-blocking utilities even though no advertisements are displayed on the website.&lt;br /&gt;
&lt;br /&gt;
====Redeemable Code====&lt;br /&gt;
&lt;br /&gt;
Bitcoins from another Mt. Gox user sent by Mt. Gox [[redeemable code]] (A.K.A. &amp;quot;coupon&amp;quot;) may be deposited and will be available for trading immediately.&lt;br /&gt;
&lt;br /&gt;
===OKPay===&lt;br /&gt;
&lt;br /&gt;
[[OKPay]] may be used for depositing funds to USD, EUR, GBP, CHF, and RUB&amp;lt;ref&amp;gt;[https://support.mtgox.com/entries/21034626-okpay OKPAY]&amp;lt;/ref&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
===Cash Deposit===&lt;br /&gt;
&lt;br /&gt;
====U.S. (USD)====&lt;br /&gt;
* BitInstant - Cash (U.S. dollars) may be deposited at any of thousands of banks, 7-11, Walmart, CVS, Moneygram and more that [[BitInstant]] uses to transfer funds to your Mt. Gox account.&lt;br /&gt;
&lt;br /&gt;
====Brazil (BRL)====&lt;br /&gt;
* BitInstant - Cash (Brazilian real) may be deposited using Boleto or through Banco Recomendito.&lt;br /&gt;
&lt;br /&gt;
====Brazil (BRL)====&lt;br /&gt;
* BitInstant - Cash (Russian rubles) may be deposited using QIWI or Cyberplat&lt;br /&gt;
&lt;br /&gt;
====UK (GBP)====&lt;br /&gt;
* Barclays - Cash (British pound sterling) may be deposited at any Barclays location.  There is a 1.5% fee on deposits made with this method&amp;lt;ref&amp;gt;[https://mtgox.com/press_release_20120806.html Introducing a new 1.5% fee on Barclays cash deposit]&amp;lt;/ref&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
===Bank Wire===&lt;br /&gt;
&lt;br /&gt;
====International USD====&lt;br /&gt;
Funds in USD may be wired to the exchange&#039;s bank in Japan. Each wire is subject to a per-wire fee plus any intermediate fees.  &lt;br /&gt;
&lt;br /&gt;
====International Wire====&lt;br /&gt;
&lt;br /&gt;
An account can be configured with a wallet for each of the currencies that the exchange supports&amp;lt;ref&amp;gt;[https://mtgox.zendesk.com/entries/20413328-mt-gox-opens-15-new-currency-markets Mt.Gox Opens 15 New Currency Markets]&amp;lt;/ref&amp;gt;.  When a wire is received in one of these currencies, that account will be credited.&lt;br /&gt;
&lt;br /&gt;
* USD - U.S. Dollar &lt;br /&gt;
* EUR - Euro (SEPA or Int&#039;l wire)&lt;br /&gt;
* CAD - Canadian Dollar&lt;br /&gt;
* GBP - British Pound (Domestic or Int&#039;l wire)&lt;br /&gt;
* CHF - Swiss Francs&lt;br /&gt;
* RUB - Russian Rubles&lt;br /&gt;
* AUD - Australian Dollars&lt;br /&gt;
* SEK - Swedish Krona&lt;br /&gt;
* DKK - Danish Krona&lt;br /&gt;
* HKD - Hong Kong Dollars&lt;br /&gt;
* PLN - Polish Zloty (Domestic or Int&#039;l wire)&lt;br /&gt;
* CNY - Chinese Yuan&lt;br /&gt;
* SGD - Singapore Dollars&lt;br /&gt;
* TBH - Thai Baht&lt;br /&gt;
* NZD - New Zealand Dollars&lt;br /&gt;
* JPY - Japanese Yen (Domestic or Int&#039;l wire)&lt;br /&gt;
&lt;br /&gt;
===Direct Deposit===&lt;br /&gt;
====EU====&lt;br /&gt;
&lt;br /&gt;
Funds in EUR may be added using SEPA Direct Debit for free, with funds convert to USD at the current ECB rate at the time the funds are received&amp;lt;ref&amp;gt;[http://www.bitcoin.org/smf/index.php?topic=5461.0 MTGox: Euro deposits]&amp;lt;/ref&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
====U.S.====&lt;br /&gt;
&lt;br /&gt;
Mt. Gox doesn&#039;t directly support an ACH-based (direct deposit) deposit method.  Dwolla supports ACH-based fund transfers and those funds can then be deposited with Mt. Gox.&lt;br /&gt;
&lt;br /&gt;
====UK====&lt;br /&gt;
&lt;br /&gt;
Funds may be sent as a GBP direct deposit free of charge.&lt;br /&gt;
&lt;br /&gt;
====Australia====&lt;br /&gt;
&lt;br /&gt;
Funds may be sent using direct deposit (BPay) for a AU$2.00 per-deposit fee.  The funds will be converted to USD at the current rate.&lt;br /&gt;
&lt;br /&gt;
==Withdrawing Funds==&lt;br /&gt;
&lt;br /&gt;
MtGox imposes a $1,000 USD limit for withdrawals per 24 hours and a $10,000 USD limit for withdrawals per month with most non-verified accounts.  Bitcoins withdrawn are counted toward this limit as well and the USD value is calculated at the market rate at the time of the attempted withdrawal.  Customers that have been Verified have higher limits and customers that have Trusted status have limits even higher&amp;lt;ref&amp;gt;[http://bitcoin.stackexchange.com/questions/2442/mtgox-trusted-vs-verified MtGox - trusted vs verified]&amp;lt;/ref&amp;gt;.  Any [[MtGox#Transfers_to_Other_Customers|account-to-account transfers]] made also count toward this limit as well.&lt;br /&gt;
&lt;br /&gt;
Requests for higher withdrawal limits may be submitted by email&lt;br /&gt;
* For higher limits for withdrawal of USD funds, email: aml@mtgox.com&lt;br /&gt;
* For higher limits for withdrawal of BTC funds, email: btcupd@mtgox.com&lt;br /&gt;
&lt;br /&gt;
See the [[MtGox#AML|AML]] section regarding verification levels for AML purposes.&lt;br /&gt;
&lt;br /&gt;
===Dwolla===&lt;br /&gt;
&lt;br /&gt;
[[Dwolla]] is among the fastest and least expensive methods for withdrawing USD funds from a Mt. Gox account. The transaction fee to do so is just $0.25.&lt;br /&gt;
[[Dwolla]] withdrawals are processed every hour during business hours (Japan time) and every 12 hours on weekends.&lt;br /&gt;
&lt;br /&gt;
As of 25 May 2012, MtGox requires account holders to be &amp;quot;verified (level 1) - &#039;see below&#039;&amp;quot; to withdraw via Dwolla. &amp;lt;ref&amp;gt;https://support.mtgox.com/entries/21503347-new-aml-policy-for-all-dwolla-users&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The status of the withdrawal request will show one of the following status codes:&lt;br /&gt;
&lt;br /&gt;
* Preparing: System is running checks to see if the transfer can be executed.&lt;br /&gt;
* Confirmed: Transfer can be executed and is pending in queue.&lt;br /&gt;
* Todo: Transfer is near the top of the queue and will be executed soon.&lt;br /&gt;
* Processed: Transfer has been processed.&lt;br /&gt;
&lt;br /&gt;
===BTC===&lt;br /&gt;
&lt;br /&gt;
Bitcoins may be withdrawn at no charge.&lt;br /&gt;
&lt;br /&gt;
A [[green address]] option is available though this type of transaction could experience a delay if the exchange&#039;s wallet funding level for green address transactions is insufficient.  The withdrawal form also offers an &amp;quot;open transaction&amp;quot; option which forces the transaction to go through the blockchain.  If the recipient of a BTC withdrawal happens to also be from Mt. Gox&#039;s [[EWallet]], then that transfer would occur instantly and the transaction would not be broadcast to the Bitcoin network.  This &amp;quot;open transaction&amp;quot; option forces a withdrawal to be broadcast to the Bitcoin network.&lt;br /&gt;
&lt;br /&gt;
====Redeemable Code====&lt;br /&gt;
&lt;br /&gt;
Mt. Gox no longer allows bitcoins or other currency to be withdrawn using a [[redeemable code]].&lt;br /&gt;
&lt;br /&gt;
===Direct Deposit===&lt;br /&gt;
====U.S.====&lt;br /&gt;
&lt;br /&gt;
There is currently no option for withdrawing funds through a direct deposit bank transaction.  Funds withdrawn to Dwolla may then, in turn, be withdrawn with bank funds deposited as an ACH transaction.&lt;br /&gt;
&lt;br /&gt;
====EU====&lt;br /&gt;
&lt;br /&gt;
You may withdraw any amount as a direct deposit to your bank.  There is a 2% fee on these withdrawals.  Contact the exchange by e-mail for this service.&lt;br /&gt;
&lt;br /&gt;
====Australia====&lt;br /&gt;
&lt;br /&gt;
A per-withdrawal fee (2,000 JPY) is subtracted and the remaining amount is sent via international wire in the chosen currency. If not AUD then an exchange fee of 2.5% will be charged.&lt;br /&gt;
&lt;br /&gt;
===International Wire===&lt;br /&gt;
&lt;br /&gt;
To any IBAN, SWIFT/BIC and ABA routable bank&amp;lt;ref&amp;gt;[http://www.facebook.com/MtGox/posts/343372689080478 Mt.Gox now offers international wire transfer to all US Banks]&amp;lt;/ref&amp;gt;.  Fee applies.&lt;br /&gt;
&lt;br /&gt;
=&lt;br /&gt;
&lt;br /&gt;
==Customer Service==&lt;br /&gt;
&lt;br /&gt;
The preferred method for obtaining service is to place a request through the exchange&#039;s [https://mtgox.zendesk.com help desk].  Another method is to send e-mail with the request.&lt;br /&gt;
&lt;br /&gt;
==Wallet/Banking==&lt;br /&gt;
&lt;br /&gt;
An account at this exchange can be considered to be an [[eWallet]]. This service also offers [[:Category:ECommerce|eCommerce]] merchant [https://mtgox.com/merch/about payment services].&lt;br /&gt;
&lt;br /&gt;
==Security Center==&lt;br /&gt;
&lt;br /&gt;
The Security Center allows an account to be secured through the use of one or more One Time Password (OTP) solutions such as what YubiKey and Google Authenticator offer.  Features can be protected where the OTP must be provided for each action and are configured independently.&lt;br /&gt;
&lt;br /&gt;
For example, a typical configuration is to set OTP as being required for both withdrawals and security center changes but not for login.  With that configuration, the worst damage that can happen from a compromised account or session would be that bitcoins would be bought or sold (though they could also be bought and sold over and over until funds are depleted).&lt;br /&gt;
&lt;br /&gt;
* Login - The OTP must be provided for each login.&lt;br /&gt;
* Withdraw - The OTP must be provided for each withdrawal request.&lt;br /&gt;
* Security - The OTP must be provided during each configuration change to be performed.&lt;br /&gt;
&lt;br /&gt;
==AML==&lt;br /&gt;
&lt;br /&gt;
Varying degrees of verification will allow for greater per-day and per-month total amounts to be withdrawn&amp;lt;ref&amp;gt;[http://support.mtgox.com/entries/20919111-aml-account-statuses AML Account Statuses]&amp;lt;/ref&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
===Unverified (Level 0)===&lt;br /&gt;
&lt;br /&gt;
Designed for basic users, consumers and Bitcoin enthusiasts where 10,000 USD (monthly) is enough for most needs.&lt;br /&gt;
&lt;br /&gt;
===Verified (Level 1)===&lt;br /&gt;
&lt;br /&gt;
The &amp;quot;verified&amp;quot; status is designed for active traders and/or small companies.&lt;br /&gt;
&lt;br /&gt;
===Trusted (Level 2)===&lt;br /&gt;
&lt;br /&gt;
The “trusted” status is designed for day traders, professionals, and companies.&lt;br /&gt;
&lt;br /&gt;
==API==&lt;br /&gt;
&lt;br /&gt;
Mt Gox offers an [[MtGox/API|API]] which can be used to automate operations.&lt;br /&gt;
&lt;br /&gt;
==Data Services==&lt;br /&gt;
&lt;br /&gt;
===Web===&lt;br /&gt;
* Bitstock live watcher for trades, depth, history [http://bitstock.info bitstock.info] (Websockets browser required)&lt;br /&gt;
* [[Bitcoin Charts]]&lt;br /&gt;
* Clark Moody&#039;s [[Real Time Bitcoin Market Data]] including Ticker, Order Book and Time Sales (Websockets browser support required)&lt;br /&gt;
* [[MtGox Live]] (Websockets browser support required)&lt;br /&gt;
* [[Bitcoin Arbitrage Opportunities]] (Websockets browser support required)&lt;br /&gt;
* [[Bitcoin Prices]] market rates in multiple currencies&lt;br /&gt;
* [https://mtgox-viz.appspot.com MtGox-Viz], a visualization of your MtGox account history&lt;br /&gt;
&lt;br /&gt;
===Windows===&lt;br /&gt;
* [[Sierra Chart MtGox Bridge]] trading and charting tool.&lt;br /&gt;
* [[ToyTrader]] command line trading tool&lt;br /&gt;
&lt;br /&gt;
===Mac OS X===&lt;br /&gt;
* [[BitTicker]] for Mac OS X&lt;br /&gt;
* [http://sneak.datavibe.net/20110613/mtgoxwatcher MtGox Watcher] for Mac OS X&lt;br /&gt;
&lt;br /&gt;
===Mobile===&lt;br /&gt;
* [[BitcoinX]] mobile app with bid, ask and 24 hour history. For Android&lt;br /&gt;
* [[MtGox Live]] Bitcoin Trader with buy, sell, send, chart and depth for Android and iOS&lt;br /&gt;
* [https://play.google.com/store/apps/details?id=com.veken0m.cavirtex Bitcoinium] for Android on Google Play&lt;br /&gt;
&lt;br /&gt;
=== firefox addon ===&lt;br /&gt;
* [https://github.com/joric/mtgox-ticker] firefox ticker addon &lt;br /&gt;
&lt;br /&gt;
===Linux===&lt;br /&gt;
* [http://www.goxsh.info goxsh] command line ticker / depth chart&lt;br /&gt;
&lt;br /&gt;
==E-Commerce==&lt;br /&gt;
&lt;br /&gt;
Online sellers can accept bitcoins for payment using the Mt. Gox&#039;s E-commerce Solution, which is an interface to the exchange&#039;s [[MtGox/API/HTTP/v1#Merchant_System|Merchant System API]].&lt;br /&gt;
&lt;br /&gt;
==History==&lt;br /&gt;
The exchange went online on July 18, 2010.&amp;lt;ref&amp;gt;[http://www.bitcoin.org/smf/index.php?topic=444.0 MtGox announcement on forum]&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
On October 10, 2010 the exchange switched from [[PayPal]] to Liberty Reserve as the main funding option as a result of this attack. Former PayPal customers still had the possibility to withdraw their USD using alternative methods.&lt;br /&gt;
&lt;br /&gt;
On March 6th, 2011 ownership of the exchange changed hands&amp;lt;ref&amp;gt;[https://bitcointalk.org/index.php?topic=4187.0 Mtgox is changing owners]&amp;lt;/ref&amp;gt;.  Tibanne publishes their [http://legal.tibanne.com/docs/20110801_company_certificate.pdf company certificate] from the Japanese government.&lt;br /&gt;
&lt;br /&gt;
On June 19, 2011 the service experienced a significant security breach&amp;lt;ref&amp;gt;[https://support.mtgox.com/entries/20224998-huge-bitcoin-sell-off-due-to-a-compromised-account-rollback Huge Bitcoin sell off due to a compromised account - rollback]&amp;lt;/ref&amp;gt;.  The incident caused a selloff down to BTC/USD of $0.01 due to fraudulent trading.  The site was disabled and all trading following the point that fraudulent trading began was rolled back. Complicating this breach was the release of a list of the exchange&#039;s accounts including username, email address and a password hash, which forced the exchange to implement an account recovery method for customers to regain control of their accounts.&lt;br /&gt;
&lt;br /&gt;
In July, 2011 it was observed that the exchange no longer allows new registrations to occur without having a valid e-mail address.&lt;br /&gt;
&lt;br /&gt;
On July 19, 2011 a press release announced that MtGox had acquired [[MtGox Live]].&amp;lt;ref&amp;gt;[https://mtgox.com/press_release_20110719.html World&#039;s Leading Bitcoin Exchange, Mt.Gox, acquires MtGoxLive.com]&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Announced on March 6, 2012 was the Merchant Solution and API&amp;lt;ref&amp;gt;[https://mtgox.com/press_release_20120306.html Mt.Gox launches the definitive bitcoin checkout solution]&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
&lt;br /&gt;
* [[Buying bitcoins]]&lt;br /&gt;
* [[Selling bitcoins]]&lt;br /&gt;
* [[MtGox/API|API]]&lt;br /&gt;
* [[Bitcoin Ladder]]&lt;br /&gt;
&lt;br /&gt;
==External Links==&lt;br /&gt;
&lt;br /&gt;
* [https://mtgox.com MT. Gox exchange] website&lt;br /&gt;
* [https://mtgox.com/merch/about Mt. Gox Merchant Services]&lt;br /&gt;
* [https://mtgox.zendesk.com Customer Service Help Desk]&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&amp;lt;references/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Exchanges]]&lt;br /&gt;
[[Category:eWallets]]&lt;br /&gt;
[[Category:Shopping Cart Interfaces]]&lt;br /&gt;
[[ru:MtGox]]&lt;/div&gt;</summary>
		<author><name>Stemby</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Mt._Gox&amp;diff=44645</id>
		<title>Mt. Gox</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Mt._Gox&amp;diff=44645"/>
		<updated>2014-02-26T12:00:56Z</updated>

		<summary type="html">&lt;p&gt;Stemby: MtGox closed&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;MtGox&#039;&#039;&#039;, called &amp;quot;Mount Gox&amp;quot; or &amp;quot;MTGOX&amp;quot;, has been the most widely used bitcoin [[currency exchange]] market&amp;lt;ref&amp;gt;2011-06-07 on #bitcoin-otc: &amp;quot;MagicalTux: you could use the count of users on mtgox (went over 30k recently)&amp;quot;&amp;lt;/ref&amp;gt; since it was started.&lt;br /&gt;
&lt;br /&gt;
The market was closed fFbruary 25, 2014.&lt;br /&gt;
&lt;br /&gt;
A registrant on MtGox has at least two sub-accounts: one for bitcoins (BTC), and one for US dollars (USD or MTGUSD) or other national currency. Bitcoins are bought using funds from the trader&#039;s national currency account, and the proceeds from the sale of bitcoins are deposited into the same account. Trading must always involve bitcoins as trading between different national currencies is not offered.&lt;br /&gt;
&lt;br /&gt;
Trades on Mt. Gox&#039;s execute from balances on deposit with the exchange which in turn makes trading on the market instantaneous, compared to some other Bitcoin markets where a subsequent settlement occurs manually between the trading partners. The disadvantage of this is that a third party must be trusted with keeping the money safe.&lt;br /&gt;
&lt;br /&gt;
MtGox was originally started by Jed McCaleb in July 2010, and was sold to [[Tibanne Co.]] in Japan in March 2011.  It is currently operated by Tibanne Co., managed by Mark Karpeles (MagicalTux).&lt;br /&gt;
&lt;br /&gt;
==Trading==&lt;br /&gt;
===Buying and selling===&lt;br /&gt;
&lt;br /&gt;
Buying and selling Bitcoins is simple.  A buy order is executed partially or in full when the price bid can be matched against a sell order that is at or below the bid amount.  A sell order is executed partially or in full when the price asked can be matched against a buy order that is at or above the ask amount.  Orders that cannot be matched immediately remain in the orderbook.&lt;br /&gt;
&lt;br /&gt;
Unfunded orders do not appear in the order book, but are automatically readded if a deposit is credited.  For example, Mt. Gox allows the entry of a &amp;quot;buy&amp;quot; order even if the account has insufficient funds.  If possible, Mt. Gox will execute a portion of the order if it can be partially funded.  If a deposit is later credited and the deposit resolves the insufficient funds status of an outstanding order, the order will be immediately activated, and if possible, executed.&lt;br /&gt;
&lt;br /&gt;
===Fees===&lt;br /&gt;
&lt;br /&gt;
Mt. Gox charges a trading fee of up to 0.6% from each party of successful trades made through the market.  The fee appears in the account history next to each trade.  The trading fee is discounted for larger customers based on volume, which is calculated as a sliding window over the last 720 hours (30 days).&lt;br /&gt;
&lt;br /&gt;
The fees are, by default, subtracted from the proceeds of each trade (e.g., a buy of 1.0 BTC will add to the account balance 0.994 BTC when the exchange fee is 0.6%).  An account setting will allow fees to be added to the purchase amount instead (e.g., buying 1.0 BTC at $5 will cost about $5.03 when the exchange fee is 0.6%).&lt;br /&gt;
&lt;br /&gt;
==Adding Funds==&lt;br /&gt;
&lt;br /&gt;
===BTC===&lt;br /&gt;
There are no fees incurred when transferring bitcoins to a Mt. Gox account.&lt;br /&gt;
&lt;br /&gt;
Funds are available once [[confirmation|confirmed]] (6 blocks)&amp;lt;ref&amp;gt;[http://www.bitcoin.org/smf/index.php?topic=3851.msg55220#msg55220 How long does it take to Deposit bitcoins to MtGox?]&amp;lt;/ref&amp;gt;, a process that can take roughly an hour.&lt;br /&gt;
&lt;br /&gt;
The deposit address is presented along with a QR code that can be scanned with a mobile.  This address does not change with each deposit request.&lt;br /&gt;
&lt;br /&gt;
The Add Bitcoins function experiences issues with some browser ad-blocking utilities even though no advertisements are displayed on the website.&lt;br /&gt;
&lt;br /&gt;
====Redeemable Code====&lt;br /&gt;
&lt;br /&gt;
Bitcoins from another Mt. Gox user sent by Mt. Gox [[redeemable code]] (A.K.A. &amp;quot;coupon&amp;quot;) may be deposited and will be available for trading immediately.&lt;br /&gt;
&lt;br /&gt;
===OKPay===&lt;br /&gt;
&lt;br /&gt;
[[OKPay]] may be used for depositing funds to USD, EUR, GBP, CHF, and RUB&amp;lt;ref&amp;gt;[https://support.mtgox.com/entries/21034626-okpay OKPAY]&amp;lt;/ref&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
===Cash Deposit===&lt;br /&gt;
&lt;br /&gt;
====U.S. (USD)====&lt;br /&gt;
* BitInstant - Cash (U.S. dollars) may be deposited at any of thousands of banks, 7-11, Walmart, CVS, Moneygram and more that [[BitInstant]] uses to transfer funds to your Mt. Gox account.&lt;br /&gt;
&lt;br /&gt;
====Brazil (BRL)====&lt;br /&gt;
* BitInstant - Cash (Brazilian real) may be deposited using Boleto or through Banco Recomendito.&lt;br /&gt;
&lt;br /&gt;
====Brazil (BRL)====&lt;br /&gt;
* BitInstant - Cash (Russian rubles) may be deposited using QIWI or Cyberplat&lt;br /&gt;
&lt;br /&gt;
====UK (GBP)====&lt;br /&gt;
* Barclays - Cash (British pound sterling) may be deposited at any Barclays location.  There is a 1.5% fee on deposits made with this method&amp;lt;ref&amp;gt;[https://mtgox.com/press_release_20120806.html Introducing a new 1.5% fee on Barclays cash deposit]&amp;lt;/ref&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
===Bank Wire===&lt;br /&gt;
&lt;br /&gt;
====International USD====&lt;br /&gt;
Funds in USD may be wired to the exchange&#039;s bank in Japan. Each wire is subject to a per-wire fee plus any intermediate fees.  &lt;br /&gt;
&lt;br /&gt;
====International Wire====&lt;br /&gt;
&lt;br /&gt;
An account can be configured with a wallet for each of the currencies that the exchange supports&amp;lt;ref&amp;gt;[https://mtgox.zendesk.com/entries/20413328-mt-gox-opens-15-new-currency-markets Mt.Gox Opens 15 New Currency Markets]&amp;lt;/ref&amp;gt;.  When a wire is received in one of these currencies, that account will be credited.&lt;br /&gt;
&lt;br /&gt;
* USD - U.S. Dollar &lt;br /&gt;
* EUR - Euro (SEPA or Int&#039;l wire)&lt;br /&gt;
* CAD - Canadian Dollar&lt;br /&gt;
* GBP - British Pound (Domestic or Int&#039;l wire)&lt;br /&gt;
* CHF - Swiss Francs&lt;br /&gt;
* RUB - Russian Rubles&lt;br /&gt;
* AUD - Australian Dollars&lt;br /&gt;
* SEK - Swedish Krona&lt;br /&gt;
* DKK - Danish Krona&lt;br /&gt;
* HKD - Hong Kong Dollars&lt;br /&gt;
* PLN - Polish Zloty (Domestic or Int&#039;l wire)&lt;br /&gt;
* CNY - Chinese Yuan&lt;br /&gt;
* SGD - Singapore Dollars&lt;br /&gt;
* TBH - Thai Baht&lt;br /&gt;
* NZD - New Zealand Dollars&lt;br /&gt;
* JPY - Japanese Yen (Domestic or Int&#039;l wire)&lt;br /&gt;
&lt;br /&gt;
===Direct Deposit===&lt;br /&gt;
====EU====&lt;br /&gt;
&lt;br /&gt;
Funds in EUR may be added using SEPA Direct Debit for free, with funds convert to USD at the current ECB rate at the time the funds are received&amp;lt;ref&amp;gt;[http://www.bitcoin.org/smf/index.php?topic=5461.0 MTGox: Euro deposits]&amp;lt;/ref&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
====U.S.====&lt;br /&gt;
&lt;br /&gt;
Mt. Gox doesn&#039;t directly support an ACH-based (direct deposit) deposit method.  Dwolla supports ACH-based fund transfers and those funds can then be deposited with Mt. Gox.&lt;br /&gt;
&lt;br /&gt;
====UK====&lt;br /&gt;
&lt;br /&gt;
Funds may be sent as a GBP direct deposit free of charge.&lt;br /&gt;
&lt;br /&gt;
====Australia====&lt;br /&gt;
&lt;br /&gt;
Funds may be sent using direct deposit (BPay) for a AU$2.00 per-deposit fee.  The funds will be converted to USD at the current rate.&lt;br /&gt;
&lt;br /&gt;
==Withdrawing Funds==&lt;br /&gt;
&lt;br /&gt;
MtGox imposes a $1,000 USD limit for withdrawals per 24 hours and a $10,000 USD limit for withdrawals per month with most non-verified accounts.  Bitcoins withdrawn are counted toward this limit as well and the USD value is calculated at the market rate at the time of the attempted withdrawal.  Customers that have been Verified have higher limits and customers that have Trusted status have limits even higher&amp;lt;ref&amp;gt;[http://bitcoin.stackexchange.com/questions/2442/mtgox-trusted-vs-verified MtGox - trusted vs verified]&amp;lt;/ref&amp;gt;.  Any [[MtGox#Transfers_to_Other_Customers|account-to-account transfers]] made also count toward this limit as well.&lt;br /&gt;
&lt;br /&gt;
Requests for higher withdrawal limits may be submitted by email&lt;br /&gt;
* For higher limits for withdrawal of USD funds, email: aml@mtgox.com&lt;br /&gt;
* For higher limits for withdrawal of BTC funds, email: btcupd@mtgox.com&lt;br /&gt;
&lt;br /&gt;
See the [[MtGox#AML|AML]] section regarding verification levels for AML purposes.&lt;br /&gt;
&lt;br /&gt;
===Dwolla===&lt;br /&gt;
&lt;br /&gt;
[[Dwolla]] is among the fastest and least expensive methods for withdrawing USD funds from a Mt. Gox account. The transaction fee to do so is just $0.25.&lt;br /&gt;
[[Dwolla]] withdrawals are processed every hour during business hours (Japan time) and every 12 hours on weekends.&lt;br /&gt;
&lt;br /&gt;
As of 25 May 2012, MtGox requires account holders to be &amp;quot;verified (level 1) - &#039;see below&#039;&amp;quot; to withdraw via Dwolla. &amp;lt;ref&amp;gt;https://support.mtgox.com/entries/21503347-new-aml-policy-for-all-dwolla-users&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The status of the withdrawal request will show one of the following status codes:&lt;br /&gt;
&lt;br /&gt;
* Preparing: System is running checks to see if the transfer can be executed.&lt;br /&gt;
* Confirmed: Transfer can be executed and is pending in queue.&lt;br /&gt;
* Todo: Transfer is near the top of the queue and will be executed soon.&lt;br /&gt;
* Processed: Transfer has been processed.&lt;br /&gt;
&lt;br /&gt;
===BTC===&lt;br /&gt;
&lt;br /&gt;
Bitcoins may be withdrawn at no charge.&lt;br /&gt;
&lt;br /&gt;
A [[green address]] option is available though this type of transaction could experience a delay if the exchange&#039;s wallet funding level for green address transactions is insufficient.  The withdrawal form also offers an &amp;quot;open transaction&amp;quot; option which forces the transaction to go through the blockchain.  If the recipient of a BTC withdrawal happens to also be from Mt. Gox&#039;s [[EWallet]], then that transfer would occur instantly and the transaction would not be broadcast to the Bitcoin network.  This &amp;quot;open transaction&amp;quot; option forces a withdrawal to be broadcast to the Bitcoin network.&lt;br /&gt;
&lt;br /&gt;
====Redeemable Code====&lt;br /&gt;
&lt;br /&gt;
Mt. Gox no longer allows bitcoins or other currency to be withdrawn using a [[redeemable code]].&lt;br /&gt;
&lt;br /&gt;
===Direct Deposit===&lt;br /&gt;
====U.S.====&lt;br /&gt;
&lt;br /&gt;
There is currently no option for withdrawing funds through a direct deposit bank transaction.  Funds withdrawn to Dwolla may then, in turn, be withdrawn with bank funds deposited as an ACH transaction.&lt;br /&gt;
&lt;br /&gt;
====EU====&lt;br /&gt;
&lt;br /&gt;
You may withdraw any amount as a direct deposit to your bank.  There is a 2% fee on these withdrawals.  Contact the exchange by e-mail for this service.&lt;br /&gt;
&lt;br /&gt;
====Australia====&lt;br /&gt;
&lt;br /&gt;
A per-withdrawal fee (2,000 JPY) is subtracted and the remaining amount is sent via international wire in the chosen currency. If not AUD then an exchange fee of 2.5% will be charged.&lt;br /&gt;
&lt;br /&gt;
===International Wire===&lt;br /&gt;
&lt;br /&gt;
To any IBAN, SWIFT/BIC and ABA routable bank&amp;lt;ref&amp;gt;[http://www.facebook.com/MtGox/posts/343372689080478 Mt.Gox now offers international wire transfer to all US Banks]&amp;lt;/ref&amp;gt;.  Fee applies.&lt;br /&gt;
&lt;br /&gt;
=&lt;br /&gt;
&lt;br /&gt;
==Customer Service==&lt;br /&gt;
&lt;br /&gt;
The preferred method for obtaining service is to place a request through the exchange&#039;s [https://mtgox.zendesk.com help desk].  Another method is to send e-mail with the request.&lt;br /&gt;
&lt;br /&gt;
==Wallet/Banking==&lt;br /&gt;
&lt;br /&gt;
An account at this exchange can be considered to be an [[eWallet]]. This service also offers [[:Category:ECommerce|eCommerce]] merchant [https://mtgox.com/merch/about payment services].&lt;br /&gt;
&lt;br /&gt;
==Security Center==&lt;br /&gt;
&lt;br /&gt;
The Security Center allows an account to be secured through the use of one or more One Time Password (OTP) solutions such as what YubiKey and Google Authenticator offer.  Features can be protected where the OTP must be provided for each action and are configured independently.&lt;br /&gt;
&lt;br /&gt;
For example, a typical configuration is to set OTP as being required for both withdrawals and security center changes but not for login.  With that configuration, the worst damage that can happen from a compromised account or session would be that bitcoins would be bought or sold (though they could also be bought and sold over and over until funds are depleted).&lt;br /&gt;
&lt;br /&gt;
* Login - The OTP must be provided for each login.&lt;br /&gt;
* Withdraw - The OTP must be provided for each withdrawal request.&lt;br /&gt;
* Security - The OTP must be provided during each configuration change to be performed.&lt;br /&gt;
&lt;br /&gt;
==AML==&lt;br /&gt;
&lt;br /&gt;
Varying degrees of verification will allow for greater per-day and per-month total amounts to be withdrawn&amp;lt;ref&amp;gt;[http://support.mtgox.com/entries/20919111-aml-account-statuses AML Account Statuses]&amp;lt;/ref&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
===Unverified (Level 0)===&lt;br /&gt;
&lt;br /&gt;
Designed for basic users, consumers and Bitcoin enthusiasts where 10,000 USD (monthly) is enough for most needs.&lt;br /&gt;
&lt;br /&gt;
===Verified (Level 1)===&lt;br /&gt;
&lt;br /&gt;
The &amp;quot;verified&amp;quot; status is designed for active traders and/or small companies.&lt;br /&gt;
&lt;br /&gt;
===Trusted (Level 2)===&lt;br /&gt;
&lt;br /&gt;
The “trusted” status is designed for day traders, professionals, and companies.&lt;br /&gt;
&lt;br /&gt;
==API==&lt;br /&gt;
&lt;br /&gt;
Mt Gox offers an [[MtGox/API|API]] which can be used to automate operations.&lt;br /&gt;
&lt;br /&gt;
==Data Services==&lt;br /&gt;
&lt;br /&gt;
===Web===&lt;br /&gt;
* Bitstock live watcher for trades, depth, history [http://bitstock.info bitstock.info] (Websockets browser required)&lt;br /&gt;
* [[Bitcoin Charts]]&lt;br /&gt;
* Clark Moody&#039;s [[Real Time Bitcoin Market Data]] including Ticker, Order Book and Time Sales (Websockets browser support required)&lt;br /&gt;
* [[MtGox Live]] (Websockets browser support required)&lt;br /&gt;
* [[Bitcoin Arbitrage Opportunities]] (Websockets browser support required)&lt;br /&gt;
* [[Bitcoin Prices]] market rates in multiple currencies&lt;br /&gt;
* [https://mtgox-viz.appspot.com MtGox-Viz], a visualization of your MtGox account history&lt;br /&gt;
&lt;br /&gt;
===Windows===&lt;br /&gt;
* [[Sierra Chart MtGox Bridge]] trading and charting tool.&lt;br /&gt;
* [[ToyTrader]] command line trading tool&lt;br /&gt;
&lt;br /&gt;
===Mac OS X===&lt;br /&gt;
* [[BitTicker]] for Mac OS X&lt;br /&gt;
* [http://sneak.datavibe.net/20110613/mtgoxwatcher MtGox Watcher] for Mac OS X&lt;br /&gt;
&lt;br /&gt;
===Mobile===&lt;br /&gt;
* [[BitcoinX]] mobile app with bid, ask and 24 hour history. For Android&lt;br /&gt;
* [[MtGox Live]] Bitcoin Trader with buy, sell, send, chart and depth for Android and iOS&lt;br /&gt;
* [https://play.google.com/store/apps/details?id=com.veken0m.cavirtex Bitcoinium] for Android on Google Play&lt;br /&gt;
&lt;br /&gt;
=== firefox addon ===&lt;br /&gt;
* [https://github.com/joric/mtgox-ticker] firefox ticker addon &lt;br /&gt;
&lt;br /&gt;
===Linux===&lt;br /&gt;
* [http://www.goxsh.info goxsh] command line ticker / depth chart&lt;br /&gt;
&lt;br /&gt;
==E-Commerce==&lt;br /&gt;
&lt;br /&gt;
Online sellers can accept bitcoins for payment using the Mt. Gox&#039;s E-commerce Solution, which is an interface to the exchange&#039;s [[MtGox/API/HTTP/v1#Merchant_System|Merchant System API]].&lt;br /&gt;
&lt;br /&gt;
==History==&lt;br /&gt;
The exchange went online on July 18, 2010.&amp;lt;ref&amp;gt;[http://www.bitcoin.org/smf/index.php?topic=444.0 MtGox announcement on forum]&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
On October 10, 2010 the exchange switched from [[PayPal]] to Liberty Reserve as the main funding option as a result of this attack. Former PayPal customers still had the possibility to withdraw their USD using alternative methods.&lt;br /&gt;
&lt;br /&gt;
On March 6th, 2011 ownership of the exchange changed hands&amp;lt;ref&amp;gt;[https://bitcointalk.org/index.php?topic=4187.0 Mtgox is changing owners]&amp;lt;/ref&amp;gt;.  Tibanne publishes their [http://legal.tibanne.com/docs/20110801_company_certificate.pdf company certificate] from the Japanese government.&lt;br /&gt;
&lt;br /&gt;
On June 19, 2011 the service experienced a significant security breach&amp;lt;ref&amp;gt;[https://support.mtgox.com/entries/20224998-huge-bitcoin-sell-off-due-to-a-compromised-account-rollback Huge Bitcoin sell off due to a compromised account - rollback]&amp;lt;/ref&amp;gt;.  The incident caused a selloff down to BTC/USD of $0.01 due to fraudulent trading.  The site was disabled and all trading following the point that fraudulent trading began was rolled back. Complicating this breach was the release of a list of the exchange&#039;s accounts including username, email address and a password hash, which forced the exchange to implement an account recovery method for customers to regain control of their accounts.&lt;br /&gt;
&lt;br /&gt;
In July, 2011 it was observed that the exchange no longer allows new registrations to occur without having a valid e-mail address.&lt;br /&gt;
&lt;br /&gt;
On July 19, 2011 a press release announced that MtGox had acquired [[MtGox Live]].&amp;lt;ref&amp;gt;[https://mtgox.com/press_release_20110719.html World&#039;s Leading Bitcoin Exchange, Mt.Gox, acquires MtGoxLive.com]&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Announced on March 6, 2012 was the Merchant Solution and API&amp;lt;ref&amp;gt;[https://mtgox.com/press_release_20120306.html Mt.Gox launches the definitive bitcoin checkout solution]&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
&lt;br /&gt;
* [[Buying bitcoins]]&lt;br /&gt;
* [[Selling bitcoins]]&lt;br /&gt;
* [[MtGox/API|API]]&lt;br /&gt;
* [[Bitcoin Ladder]]&lt;br /&gt;
&lt;br /&gt;
==External Links==&lt;br /&gt;
&lt;br /&gt;
* [https://mtgox.com MT. Gox exchange] website&lt;br /&gt;
* [https://mtgox.com/merch/about Mt. Gox Merchant Services]&lt;br /&gt;
* [https://mtgox.zendesk.com Customer Service Help Desk]&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&amp;lt;references/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Exchanges]]&lt;br /&gt;
[[Category:eWallets]]&lt;br /&gt;
[[Category:Shopping Cart Interfaces]]&lt;br /&gt;
[[ru:MtGox]]&lt;/div&gt;</summary>
		<author><name>Stemby</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=BIP_0033&amp;diff=39748</id>
		<title>BIP 0033</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=BIP_0033&amp;diff=39748"/>
		<updated>2013-07-23T13:50:10Z</updated>

		<summary type="html">&lt;p&gt;Stemby: /* Abstract */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{bip}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
  BIP: 33&lt;br /&gt;
  Title: Stratized Nodes&lt;br /&gt;
  Author: Amir Taaki &amp;lt;genjix@riseup.net&amp;gt;&lt;br /&gt;
  Status: Draft&lt;br /&gt;
  Type: Standards Track&lt;br /&gt;
  Created: 15-05-2012&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Abstract ==&lt;br /&gt;
&lt;br /&gt;
As the Bitcoin network scales, roles are fast becoming specialised. In the beginning, a single Bitcoin user would perform the synonymous roles of miner, merchant and end-user. With the growth however of this system, these functions are being abstracted away to specialised services as a natural part of Bitcoin&#039;s growth.&lt;br /&gt;
&lt;br /&gt;
Bitcoin&#039;s blockchain becomes more unwieldy for end users over time, negatively affecting the usability of Bitcoin clients. As it grows, it becomes ever more impractical to deal with on portable devices or low end machines. Several proposals have been put forward to deal with this such as lightweight (headers-only) clients and skipping validation for blocks before the last checkpoint. However these measures are at best stop-gap workarounds to stave off a growing problem.&lt;br /&gt;
&lt;br /&gt;
This document will examine a proposal which will be termed &#039;&#039;stratized nodes&#039;&#039;, a modification of an earlier concept termed &#039;&#039;blockchain service&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
== History ==&lt;br /&gt;
&lt;br /&gt;
Jan Moller created BCCAPI in 2011. BCCAPI allowed a user&#039;s client to delegate blockchain interaction to a remote server. This server would store and manage the blockchain while the user client would run queries against that server.&lt;br /&gt;
&lt;br /&gt;
ThomasV later created Electrum server. BCCAPI&#039;s server backend was proprietary, and Electrum required a full Free Software stack. Electrum&#039;s server was an adhoc temporary replacement. As it grew and became used, issues started to appear in its design.&lt;br /&gt;
&lt;br /&gt;
Marek Palatinus (slush) drafted a new standard called Stratum to replace Electrum&#039;s server. Stratum has multiple transports and is usable as a blockchain server by merchants, miners and user-clients. Electrum moved to using a Stratum implementation first relying on ABE/bitcoind and more recently libbitcoin.&lt;br /&gt;
&lt;br /&gt;
Stratum is unmaintained by Marek Palatinus, suffers from easy resource starvation and denial of service attacks, and is insecure. The proposal specified here is intended to replace the Stratum&#039;s role as a blockchain for user-clients. The proposal here is solely concerned with removing the onus of blockchain validation and lookups from user-clients to specialised services in a secure manner. Any secondary benefits or uses are purely incidental.&lt;br /&gt;
&lt;br /&gt;
== Overview ==&lt;br /&gt;
&lt;br /&gt;
During the initial handshake between Bitcoin nodes, a version packet is sent. version packets have a bitfield called services. Nodes can fill this field to tell the network how they behave and which services they support. NODE_NETWORK (1) means a node can be asked for full blocks for example.&lt;br /&gt;
&lt;br /&gt;
We propose two more values of NODE_SERVICE (2) and NODE_STRATIZED (4).&lt;br /&gt;
&lt;br /&gt;
=== NODE_SERVICE ===&lt;br /&gt;
&lt;br /&gt;
* A blockchain service which supports the additional messages &amp;quot;getoutputs&amp;quot; and &amp;quot;getspends&amp;quot;.&lt;br /&gt;
* Does not respond to &amp;quot;getdata&amp;quot; messages by itself (unless NODE_NETWORK is specified)&lt;br /&gt;
* If NODE_NETWORK is specified, then &amp;quot;getdata&amp;quot; for transactions will retrieve them not only from the memory pool but also check the blockchain if necessary.&lt;br /&gt;
&lt;br /&gt;
=== NODE_STRATIZED ===&lt;br /&gt;
&lt;br /&gt;
* A node which uses the stratized strategy specified in this document.&lt;br /&gt;
* NODE_STRATIZED will relay inventories for accepted transactions.&lt;br /&gt;
* Does not support &amp;quot;getblocks&amp;quot; as stratized nodes do not contain the entire blockchain.&lt;br /&gt;
&lt;br /&gt;
Apart from the differences noted above, the nodes are otherwise unchanged in their behaviour from NODE_NETWORK.&lt;br /&gt;
&lt;br /&gt;
== Specification ==&lt;br /&gt;
&lt;br /&gt;
=== Initialisation ===&lt;br /&gt;
&lt;br /&gt;
Four new messages are defined which are represented below in C-like pseudocode.&lt;br /&gt;
&lt;br /&gt;
&amp;quot;getoutputs&amp;quot;&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
struct decoded_address&lt;br /&gt;
{&lt;br /&gt;
    uint8_t payment_type;&lt;br /&gt;
    uint8_t address_hash[16];&lt;br /&gt;
};&lt;br /&gt;
&lt;br /&gt;
struct get_outputs&lt;br /&gt;
{&lt;br /&gt;
    decoded_address dest;&lt;br /&gt;
};&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;quot;outputs&amp;quot;&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
struct point_t&lt;br /&gt;
{&lt;br /&gt;
    uint8_t hash[32];&lt;br /&gt;
    uint32_t index;&lt;br /&gt;
};&lt;br /&gt;
&lt;br /&gt;
struct outputs&lt;br /&gt;
{&lt;br /&gt;
    decoded_address dest;&lt;br /&gt;
    uint64_t number_outputs;  // variable uint&lt;br /&gt;
    point_t outpoints[];&lt;br /&gt;
};&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;quot;getspend&amp;quot;&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
struct get_spend&lt;br /&gt;
{&lt;br /&gt;
    point_t outpoint;&lt;br /&gt;
};&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;quot;spend&amp;quot;&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
struct spend&lt;br /&gt;
{&lt;br /&gt;
    point_t outpoint, inpoint;&lt;br /&gt;
};&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
These four messages allow a node to discover the history of a Bitcoin address without needing direct access to the blockchain.&lt;br /&gt;
&lt;br /&gt;
A typical use case might look like:&lt;br /&gt;
# Send &amp;quot;getoutputs&amp;quot; for a decoded Bitcoin address.&lt;br /&gt;
# Receive &amp;quot;outputs&amp;quot;, and loop through each contained output point:&lt;br /&gt;
## Send &amp;quot;getdata&amp;quot; to download the transaction for that point.&lt;br /&gt;
## Send &amp;quot;getspend&amp;quot; for each output point.&lt;br /&gt;
# Receive &amp;quot;spend&amp;quot;:&lt;br /&gt;
## Send &amp;quot;getdata&amp;quot; to download the transaction for that input point.&lt;br /&gt;
&lt;br /&gt;
This sequence allows the gradual but fast build up of history for an address.&lt;br /&gt;
&lt;br /&gt;
=== Updates ===&lt;br /&gt;
&lt;br /&gt;
Nodes receive &amp;quot;inv&amp;quot; messages as normal from service nodes, issuing &amp;quot;getdata&amp;quot; to download the block or transaction data. From this they check for newly sent (in the input points) or received (in the output points) payments in the transaction data.&lt;br /&gt;
&lt;br /&gt;
Note that blocks must at minimum have their merkle root validated and transactions must be checked for uniqueness by stratized nodes.&lt;br /&gt;
&lt;br /&gt;
== Security ==&lt;br /&gt;
&lt;br /&gt;
The concern here is that stratized nodes are at the mercy of blockchain services. This proposal deals with that issue by designing this protocol in such a way that the implementation can resolve the common history between multiple services.&lt;br /&gt;
&lt;br /&gt;
A stratized node will typically connect to 8 blockchain services. It will only accept an output, spend or inventory vector that has been sent by a common subset of all those services (6 in our example). This spreads the risk between all services, and does not make a node vulnerable to any one rogue blockchain service.&lt;br /&gt;
&lt;br /&gt;
== Privacy ==&lt;br /&gt;
&lt;br /&gt;
The other strategy for thin clients termed &#039;&#039;headers-only&#039;&#039; or &#039;&#039;Simplified. Payment. Verification.&#039;&#039; have the same privacy issues as this proposal. SPV resolves this problem by sending out fake requests for transaction data which obfuscates the client data. By sending out a sufficient number of fake requests, privacy can be kept to a sufficient level.&lt;br /&gt;
&lt;br /&gt;
== Rationale ==&lt;br /&gt;
&lt;br /&gt;
NODE_SERVICE does not respond to &amp;quot;getdata&amp;quot; requests by itself (unless used in conjunction with NODE_NETWORK) to prevent starvation attacks. This allows a single trusted NODE_SERVICE architecture (possibly acting as a front-end to multiple backends) to service very many nodes while externalising the costs to the Bitcoin network.&lt;br /&gt;
&lt;br /&gt;
NODE_STRATIZED tries its best to maintain the facade and help upkeep the Bitcoin network (see relaying), but cannot support &amp;quot;getblocks&amp;quot; as it does not have the entire blockchain.&lt;br /&gt;
&lt;br /&gt;
== Backwards Compatibility ==&lt;br /&gt;
&lt;br /&gt;
This proposal is an addon to the current Bitcoin network, and is completely backwards compatible.&lt;/div&gt;</summary>
		<author><name>Stemby</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Bitcoin_Wiki:Community_portal&amp;diff=39582</id>
		<title>Bitcoin Wiki:Community portal</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Bitcoin_Wiki:Community_portal&amp;diff=39582"/>
		<updated>2013-07-16T11:43:40Z</updated>

		<summary type="html">&lt;p&gt;Stemby: /* Maps */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Bitcoin Community Forums on various platforms ==&lt;br /&gt;
&lt;br /&gt;
* [http://bitcointalk.org/ Bitcointalk]&lt;br /&gt;
* [http://www.reddit.com/r/Bitcoin/ /r/Bitcoin]&lt;br /&gt;
* [http://bitcoin.org.uk/forums Bitcoin Forums]&lt;br /&gt;
* [http://bitcoin.stackexchange.com/ The Bitcoin StackExchange]&lt;br /&gt;
* [http://www.quora.com/Bitcoin/ Bitcoin group on Quora]&lt;br /&gt;
* [http://bitcointrading.com Bitcoin Trading Forum]&lt;br /&gt;
* [http://tweetforum.com/bitcoin TweetForum Bitcoin Community]&lt;br /&gt;
* [http://www.bitcoin-board.com/ Bitcoin-Board Forum]&lt;br /&gt;
* [http://www.bitcoinforums.net BitcoinForums.Net]&lt;br /&gt;
* [http://groups.google.com/group/bitcoin-discussion Bitcoin google group]&lt;br /&gt;
* [http://goo.gl/2PncY Bitcoin Portal p2p (on Osiris platform)]&lt;br /&gt;
* [http://www.btclog.com btc::log]&lt;br /&gt;
* [http://www.facebook.com/bitcoins Facebook page]&lt;br /&gt;
* [http://www.facebook.com/groups/136003253120130 Facebook Group]&lt;br /&gt;
* [https://plus.google.com/107581642674912229828/ Bitcoin Google+]&lt;br /&gt;
* [http://www.bitcointribe.com Bitcoin Tribe Social Network]&lt;br /&gt;
&lt;br /&gt;
===Regions / Languages===&lt;br /&gt;
&lt;br /&gt;
* [https://www.bitcoin-italia.org Bitcoin Italia]&lt;br /&gt;
* [http://forum.bitcoin.com.au/ Bitcoin Australia Forum]&lt;br /&gt;
* [http://www.bitcoin.org.il Isreali Bitcoin community forum]&lt;br /&gt;
* [http://bitcoin.pl/forum/ Polish Bitcoin community forum]&lt;br /&gt;
* [http://btcsec.com/ BTCsec.com] Russian website about Bitcoin&lt;br /&gt;
* [https://forum.btcsec.com/ BTCsec.com Bitcoin community forum (Russian)]&lt;br /&gt;
* [http://rubitcoin.com/ Russian bitcoin community forum]&lt;br /&gt;
&lt;br /&gt;
== Bitcoin Community Groups on Bitcoin Wiki platform ==&lt;br /&gt;
&lt;br /&gt;
=== Special interests ===&lt;br /&gt;
* [[Bitcoin Wiki]]-group&lt;br /&gt;
&lt;br /&gt;
=== Geographically ===&lt;br /&gt;
* [[Espagna]] / [[Spain]] (E.) &lt;br /&gt;
* [[France]]  / [[France]] (F.)&lt;br /&gt;
* [[Germany]] / [[Deutschland]] (D.) &lt;br /&gt;
* [[Netherlands]] (NL) and [[Belgium]] (B.)&lt;br /&gt;
* [[United Kingdom]] of Great Brittain (GB) and Northern Ireland&lt;br /&gt;
* [[United States]] of America (USA)&lt;br /&gt;
&lt;br /&gt;
====Clusters====&lt;br /&gt;
There are various temporary and permanent clusters where bitcoin-friendly communities form. Temporary clusters are listed in [[Bitcoin:Community_portal#Events|events]].  Permanent communities include:&lt;br /&gt;
&lt;br /&gt;
* [http://bitcointalk.org/index.php?topic=66832.0 Free State Project] New Hampshire&lt;br /&gt;
* [http://www.thebitcointrader.com/2012/05/bitcoins-hogwarts-san-francisco-tech.html 20 Mission] San Francisco, CA&lt;br /&gt;
* [http://bitcoinmagazine.net/bitcoin-kiez-rollout-3-new-btc-accepting-stores-and-restaurants-in-berlin-more-to-come Bitcoin Kiez] Berlin, Germany&lt;br /&gt;
&lt;br /&gt;
== IRC Chat ==&lt;br /&gt;
&lt;br /&gt;
* See [[IRC_channels|IRC channels]]&lt;br /&gt;
&lt;br /&gt;
==Wiki Users==&lt;br /&gt;
&lt;br /&gt;
* [http://en.bitcoin.it/wiki/Special:ListUsers List of Users] registered on the Bitcoin wiki.&lt;br /&gt;
&lt;br /&gt;
== Events ==&lt;br /&gt;
Periodic events where Bitcoin community meets include PorcFest, Chaos Computer Camp, Burning Man, Bitcoin conferences and more.&lt;br /&gt;
&lt;br /&gt;
* [[Meetups]]&lt;br /&gt;
* [http://bitcointalk.org/index.php?topic=4526.0 Events, conferences and other events]&lt;br /&gt;
&lt;br /&gt;
==Bitcoin Related Publications==&lt;br /&gt;
&lt;br /&gt;
* [http://bitcoinmagazine.net Bitcoin Magazine] periodical printed publication&lt;br /&gt;
* [http://twitter.com/bitcoinnews/bitcoin @BitcoinNews/bitcoin] Twitter list&lt;br /&gt;
* [[Bitcoin Weekly]] weekly newspaper by [[User:Kiba|Kiba]]&lt;br /&gt;
* See [[:Category:Blogs|Blogs]] category&lt;br /&gt;
* See [[:Category:Directories|Directories]] category&lt;br /&gt;
* See [[Press]]&lt;br /&gt;
&lt;br /&gt;
==Education==&lt;br /&gt;
&lt;br /&gt;
* [[:Category:Educational|Educational category]]&lt;br /&gt;
&lt;br /&gt;
== Maps ==&lt;br /&gt;
* [http://coinmap.org/ CoinMap], collaborative map based on OpenStreetMap data and rendering&lt;br /&gt;
* [[Bitcoin.local]] Local exchanges&lt;br /&gt;
* The [[Bitcoin Map (Collaborative map)|Bitcoin Map]] collaborative map&lt;br /&gt;
* [[Bitcoin Users Worldwide]] - Find nearby Bitcoin users • Engage in local trade • Add your own offers • Get notifications&lt;br /&gt;
&lt;br /&gt;
== Monitoring ==&lt;br /&gt;
* [http://bitcoincharts.com/markets/ Bitcoin Charts] displays an overview of Bitcoin exchange markets.&lt;br /&gt;
* The [http://www.bitcoinmonitor.com/ Bitcoin Monitor] visualizes transactions, new blocks and trades on markets as they are happening.&lt;br /&gt;
* [http://www.bitcoinwatch.com/ Bitcoin Watch] has various statistics on things like the size of the economy or the number of transactions.&lt;br /&gt;
&lt;br /&gt;
== Portfolio ==&lt;br /&gt;
* [http://my-btc.info MY-BTC.INFO] A free profit/loss portfolio manager for Bitcoins and other digital currencies.&lt;br /&gt;
&lt;br /&gt;
== Bitcoin Project ==&lt;br /&gt;
* [http://www.bitcoin.org Bitcoin.org] Official project site&lt;br /&gt;
* [[:Category:Developer|Developer]] pages&lt;br /&gt;
&lt;br /&gt;
== Non-profit Organizations ==&lt;br /&gt;
&lt;br /&gt;
* [[Bitcoin Foundation]]&lt;br /&gt;
* [http://www.bitcoin-austria.at/ Bitcoin Austria]&lt;br /&gt;
&lt;br /&gt;
== External Communities ==&lt;br /&gt;
* [http://steamcommunity.com/groups/bitcoin Bitcoin Group on Steam] platform by Valve&lt;br /&gt;
* [http://forums.somethingawful.com/showthread.php?threadid=3413928 Bitcoin on SomethingAwful]&lt;br /&gt;
* [http://AnonCoin.org AnonCoin.org]&lt;br /&gt;
* [http://forum.guildminers.com/ Guildminers Forum]&lt;br /&gt;
* [http://www.Ogrr.com Ogrr]&lt;br /&gt;
* [http://www.coinconnect.org/ CoinConnect] bitcoin social network&lt;br /&gt;
* [http://www.rugatu.com/ Rugatu] Q&amp;amp;A Community&lt;/div&gt;</summary>
		<author><name>Stemby</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Bitcoin_Wiki:Community_portal&amp;diff=39581</id>
		<title>Bitcoin Wiki:Community portal</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Bitcoin_Wiki:Community_portal&amp;diff=39581"/>
		<updated>2013-07-16T11:42:58Z</updated>

		<summary type="html">&lt;p&gt;Stemby: /* Maps */ CoinMap&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Bitcoin Community Forums on various platforms ==&lt;br /&gt;
&lt;br /&gt;
* [http://bitcointalk.org/ Bitcointalk]&lt;br /&gt;
* [http://www.reddit.com/r/Bitcoin/ /r/Bitcoin]&lt;br /&gt;
* [http://bitcoin.org.uk/forums Bitcoin Forums]&lt;br /&gt;
* [http://bitcoin.stackexchange.com/ The Bitcoin StackExchange]&lt;br /&gt;
* [http://www.quora.com/Bitcoin/ Bitcoin group on Quora]&lt;br /&gt;
* [http://bitcointrading.com Bitcoin Trading Forum]&lt;br /&gt;
* [http://tweetforum.com/bitcoin TweetForum Bitcoin Community]&lt;br /&gt;
* [http://www.bitcoin-board.com/ Bitcoin-Board Forum]&lt;br /&gt;
* [http://www.bitcoinforums.net BitcoinForums.Net]&lt;br /&gt;
* [http://groups.google.com/group/bitcoin-discussion Bitcoin google group]&lt;br /&gt;
* [http://goo.gl/2PncY Bitcoin Portal p2p (on Osiris platform)]&lt;br /&gt;
* [http://www.btclog.com btc::log]&lt;br /&gt;
* [http://www.facebook.com/bitcoins Facebook page]&lt;br /&gt;
* [http://www.facebook.com/groups/136003253120130 Facebook Group]&lt;br /&gt;
* [https://plus.google.com/107581642674912229828/ Bitcoin Google+]&lt;br /&gt;
* [http://www.bitcointribe.com Bitcoin Tribe Social Network]&lt;br /&gt;
&lt;br /&gt;
===Regions / Languages===&lt;br /&gt;
&lt;br /&gt;
* [https://www.bitcoin-italia.org Bitcoin Italia]&lt;br /&gt;
* [http://forum.bitcoin.com.au/ Bitcoin Australia Forum]&lt;br /&gt;
* [http://www.bitcoin.org.il Isreali Bitcoin community forum]&lt;br /&gt;
* [http://bitcoin.pl/forum/ Polish Bitcoin community forum]&lt;br /&gt;
* [http://btcsec.com/ BTCsec.com] Russian website about Bitcoin&lt;br /&gt;
* [https://forum.btcsec.com/ BTCsec.com Bitcoin community forum (Russian)]&lt;br /&gt;
* [http://rubitcoin.com/ Russian bitcoin community forum]&lt;br /&gt;
&lt;br /&gt;
== Bitcoin Community Groups on Bitcoin Wiki platform ==&lt;br /&gt;
&lt;br /&gt;
=== Special interests ===&lt;br /&gt;
* [[Bitcoin Wiki]]-group&lt;br /&gt;
&lt;br /&gt;
=== Geographically ===&lt;br /&gt;
* [[Espagna]] / [[Spain]] (E.) &lt;br /&gt;
* [[France]]  / [[France]] (F.)&lt;br /&gt;
* [[Germany]] / [[Deutschland]] (D.) &lt;br /&gt;
* [[Netherlands]] (NL) and [[Belgium]] (B.)&lt;br /&gt;
* [[United Kingdom]] of Great Brittain (GB) and Northern Ireland&lt;br /&gt;
* [[United States]] of America (USA)&lt;br /&gt;
&lt;br /&gt;
====Clusters====&lt;br /&gt;
There are various temporary and permanent clusters where bitcoin-friendly communities form. Temporary clusters are listed in [[Bitcoin:Community_portal#Events|events]].  Permanent communities include:&lt;br /&gt;
&lt;br /&gt;
* [http://bitcointalk.org/index.php?topic=66832.0 Free State Project] New Hampshire&lt;br /&gt;
* [http://www.thebitcointrader.com/2012/05/bitcoins-hogwarts-san-francisco-tech.html 20 Mission] San Francisco, CA&lt;br /&gt;
* [http://bitcoinmagazine.net/bitcoin-kiez-rollout-3-new-btc-accepting-stores-and-restaurants-in-berlin-more-to-come Bitcoin Kiez] Berlin, Germany&lt;br /&gt;
&lt;br /&gt;
== IRC Chat ==&lt;br /&gt;
&lt;br /&gt;
* See [[IRC_channels|IRC channels]]&lt;br /&gt;
&lt;br /&gt;
==Wiki Users==&lt;br /&gt;
&lt;br /&gt;
* [http://en.bitcoin.it/wiki/Special:ListUsers List of Users] registered on the Bitcoin wiki.&lt;br /&gt;
&lt;br /&gt;
== Events ==&lt;br /&gt;
Periodic events where Bitcoin community meets include PorcFest, Chaos Computer Camp, Burning Man, Bitcoin conferences and more.&lt;br /&gt;
&lt;br /&gt;
* [[Meetups]]&lt;br /&gt;
* [http://bitcointalk.org/index.php?topic=4526.0 Events, conferences and other events]&lt;br /&gt;
&lt;br /&gt;
==Bitcoin Related Publications==&lt;br /&gt;
&lt;br /&gt;
* [http://bitcoinmagazine.net Bitcoin Magazine] periodical printed publication&lt;br /&gt;
* [http://twitter.com/bitcoinnews/bitcoin @BitcoinNews/bitcoin] Twitter list&lt;br /&gt;
* [[Bitcoin Weekly]] weekly newspaper by [[User:Kiba|Kiba]]&lt;br /&gt;
* See [[:Category:Blogs|Blogs]] category&lt;br /&gt;
* See [[:Category:Directories|Directories]] category&lt;br /&gt;
* See [[Press]]&lt;br /&gt;
&lt;br /&gt;
==Education==&lt;br /&gt;
&lt;br /&gt;
* [[:Category:Educational|Educational category]]&lt;br /&gt;
&lt;br /&gt;
== Maps ==&lt;br /&gt;
* [[http://coinmap.org/ CoinMap]]&lt;br /&gt;
* [[Bitcoin.local]] Local exchanges&lt;br /&gt;
* The [[Bitcoin Map (Collaborative map)|Bitcoin Map]] collaborative map&lt;br /&gt;
* [[Bitcoin Users Worldwide]] - Find nearby Bitcoin users • Engage in local trade • Add your own offers • Get notifications&lt;br /&gt;
&lt;br /&gt;
== Monitoring ==&lt;br /&gt;
* [http://bitcoincharts.com/markets/ Bitcoin Charts] displays an overview of Bitcoin exchange markets.&lt;br /&gt;
* The [http://www.bitcoinmonitor.com/ Bitcoin Monitor] visualizes transactions, new blocks and trades on markets as they are happening.&lt;br /&gt;
* [http://www.bitcoinwatch.com/ Bitcoin Watch] has various statistics on things like the size of the economy or the number of transactions.&lt;br /&gt;
&lt;br /&gt;
== Portfolio ==&lt;br /&gt;
* [http://my-btc.info MY-BTC.INFO] A free profit/loss portfolio manager for Bitcoins and other digital currencies.&lt;br /&gt;
&lt;br /&gt;
== Bitcoin Project ==&lt;br /&gt;
* [http://www.bitcoin.org Bitcoin.org] Official project site&lt;br /&gt;
* [[:Category:Developer|Developer]] pages&lt;br /&gt;
&lt;br /&gt;
== Non-profit Organizations ==&lt;br /&gt;
&lt;br /&gt;
* [[Bitcoin Foundation]]&lt;br /&gt;
* [http://www.bitcoin-austria.at/ Bitcoin Austria]&lt;br /&gt;
&lt;br /&gt;
== External Communities ==&lt;br /&gt;
* [http://steamcommunity.com/groups/bitcoin Bitcoin Group on Steam] platform by Valve&lt;br /&gt;
* [http://forums.somethingawful.com/showthread.php?threadid=3413928 Bitcoin on SomethingAwful]&lt;br /&gt;
* [http://AnonCoin.org AnonCoin.org]&lt;br /&gt;
* [http://forum.guildminers.com/ Guildminers Forum]&lt;br /&gt;
* [http://www.Ogrr.com Ogrr]&lt;br /&gt;
* [http://www.coinconnect.org/ CoinConnect] bitcoin social network&lt;br /&gt;
* [http://www.rugatu.com/ Rugatu] Q&amp;amp;A Community&lt;/div&gt;</summary>
		<author><name>Stemby</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=User_talk:MagicalTux&amp;diff=39580</id>
		<title>User talk:MagicalTux</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=User_talk:MagicalTux&amp;diff=39580"/>
		<updated>2013-07-16T11:35:18Z</updated>

		<summary type="html">&lt;p&gt;Stemby: CoinMap&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Hey MagicalTux, The WikiBot is not following the post-February 20th protocol change and the Fallback nodes page is not functioning. [[User:Atheros|Atheros]] 07:37, 20 February 2012 (GMT)&lt;br /&gt;
&lt;br /&gt;
Wikibot currently malfunctioning, makring all the nodes as down when they arn&#039;t.&lt;br /&gt;
There is a steady trickle of spammers adding junk pages. How about granting delete and ban privileges to some established editors, it works for some other wiki&#039;s. [[User:Ziv|Ziv]] 14 April 2012&lt;br /&gt;
&lt;br /&gt;
== BitcoinPayment ==&lt;br /&gt;
Hi MagicalTux. I have a problem with the new BitcoinPayment system. I&#039;ve decided to contact you through your talk page because nobody seems to be available in the #bitcoin-wiki chatroom. Last week Nanotube read my questions and I think he asked you to have a look at this issue but I don&#039;t know if you got the chance to read that. Basically, the problem is that I made the payment to become a trusted member and now I find that the non-English wikis are off-limits to me. It seems as if not even trusted members can edit them. This is a bit frustrating since my activity was in the Spanish wiki, where I have translated some of the technical articles. I&#039;d like to continue enlarging the Spanish wiki, but it seems to be impossible for anyone to edit the articles at the moment. Could you have a look at this? [[User:Nubarius|Nubarius]] ([[User talk:Nubarius|talk]]) 20:47, 31 January 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;
== CoinMap ==&lt;br /&gt;
Hi,&lt;br /&gt;
could you look at [[Talk:Real_world_shops#Please_use_CoinMap|this discussion]], please?&lt;br /&gt;
&lt;br /&gt;
Thank you!--[[User:Stemby|Stemby]] ([[User talk:Stemby|talk]]) 11:35, 16 July 2013 (GMT)&lt;/div&gt;</summary>
		<author><name>Stemby</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Bitcoin_Wiki:Todo&amp;diff=39579</id>
		<title>Bitcoin Wiki:Todo</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Bitcoin_Wiki:Todo&amp;diff=39579"/>
		<updated>2013-07-16T11:31:42Z</updated>

		<summary type="html">&lt;p&gt;Stemby: CoinMap&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{project}}&lt;br /&gt;
&lt;br /&gt;
Some things &#039;&#039;&#039;to do&#039;&#039;&#039; on this wiki:&lt;br /&gt;
&lt;br /&gt;
* create a community talk page, e.g. [[Bitcoin talk:Community_portal]]&lt;br /&gt;
* add links to [[Special:DeadendPages]]&lt;br /&gt;
* set up a pywikipediabot for:&lt;br /&gt;
** linking between wikis in different languages&lt;br /&gt;
** fixing [[Special:DoubleRedirects]]&lt;br /&gt;
* category tree&lt;br /&gt;
* geographic categorization?&lt;br /&gt;
* replace the current buggy map in [[Real world shops]] with [http://coinmap.org/ CoinMap]&lt;/div&gt;</summary>
		<author><name>Stemby</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Bitnavigator&amp;diff=39325</id>
		<title>Bitnavigator</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Bitnavigator&amp;diff=39325"/>
		<updated>2013-07-12T16:17:48Z</updated>

		<summary type="html">&lt;p&gt;Stemby: /* External Links */ it doesn&amp;#039;t work&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Bitcoin Navigator is a Google Maps-based visual directory of physical locations which accept and deal with Bitcoins. &lt;br /&gt;
&lt;br /&gt;
The creators of Bitcoin Navigator felt that as the number of physical places that accept Bitcoins has grown, other locator services have listed bitcoin users side by side with stores and locations which has made the maps cluttered and difficult to navigate. With the lead up to the Bitcoin conference in New York City, they thought it would be a good idea to create a site with the sole purpose of listing local businesses that accept bitcoin.&lt;br /&gt;
&lt;br /&gt;
Visitors can inform the site operators of new bitcoin-accepting spots for inclusion into the directory via a contact form on the site.&lt;br /&gt;
&lt;br /&gt;
==External Links==&lt;br /&gt;
&lt;br /&gt;
* [http://www.bitnavigator.info Bitnavigator.info] web site. Currently (July 12 2013) the web site doesn&#039;t work (403 Forbidden).&lt;br /&gt;
&lt;br /&gt;
[[Category:Local]]&lt;br /&gt;
[[Category:Directories]]&lt;/div&gt;</summary>
		<author><name>Stemby</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Talk:Real_world_shops&amp;diff=39215</id>
		<title>Talk:Real world shops</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Talk:Real_world_shops&amp;diff=39215"/>
		<updated>2013-07-08T15:57:47Z</updated>

		<summary type="html">&lt;p&gt;Stemby: /* Please use CoinMap */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;note: the parser does not always include all markers.&amp;lt;br/&amp;gt;&lt;br /&gt;
use action=purge if necessary: https://en.bitcoin.it/wiki/Real_world_shops?action=purge&lt;br /&gt;
&lt;br /&gt;
== Cyberspace is not imaginary ==&lt;br /&gt;
&lt;br /&gt;
Maybe the term &amp;quot;real world&amp;quot; should be replaced by &amp;quot;physical world&amp;quot;? The fact that bitcoin is a virtual currency doesn&#039;t make it any less real....&lt;br /&gt;
&lt;br /&gt;
== https for the google map ==&lt;br /&gt;
&lt;br /&gt;
When I load the page in chrome it says that the map cannot be loaded, however it loads up just fine after allowing insecure content through (albeit causing the green https to go red and have a nasty red line through it)&lt;br /&gt;
&lt;br /&gt;
== Please use CoinMap ==&lt;br /&gt;
&lt;br /&gt;
Hi,&lt;br /&gt;
please use [http://coinmap.org/#zoom=4&amp;amp;lat=42.39&amp;amp;lon=3.25&amp;amp;layer=OpenStreetMap CoinMap] instead of the current map.--[[User:Stemby|Stemby]] ([[User talk:Stemby|talk]]) 16:33, 1 July 2013 (GMT)&lt;br /&gt;
:I added a note for every entry with geographical coordinates. Example: http://www.openstreetmap.org/?note=11792 --[[User:Stemby|Stemby]] ([[User talk:Stemby|talk]]) 11:06, 6 July 2013 (GMT)&lt;br /&gt;
::I manually added also a note for every entry without geographical coordinates; example: http://www.openstreetmap.org/?note=12189&lt;br /&gt;
::I think the current buggy map should be replaced by CoinMap right now. Thank you!--[[User:Stemby|Stemby]] ([[User talk:Stemby|talk]]) 12:13, 8 July 2013 (GMT)&lt;/div&gt;</summary>
		<author><name>Stemby</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Talk:Real_world_shops&amp;diff=39180</id>
		<title>Talk:Real world shops</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Talk:Real_world_shops&amp;diff=39180"/>
		<updated>2013-07-08T12:20:09Z</updated>

		<summary type="html">&lt;p&gt;Stemby: /* Please use CoinMap */ please replace the current map&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;note: the parser does not always include all markers.&amp;lt;br/&amp;gt;&lt;br /&gt;
use action=purge if necessary: https://en.bitcoin.it/wiki/Real_world_shops?action=purge&lt;br /&gt;
&lt;br /&gt;
== Cyberspace is not imaginary ==&lt;br /&gt;
&lt;br /&gt;
Maybe the term &amp;quot;real world&amp;quot; should be replaced by &amp;quot;physical world&amp;quot;? The fact that bitcoin is a virtual currency doesn&#039;t make it any less real....&lt;br /&gt;
&lt;br /&gt;
== https for the google map ==&lt;br /&gt;
&lt;br /&gt;
When I load the page in chrome it says that the map cannot be loaded, however it loads up just fine after allowing insecure content through (albeit causing the green https to go red and have a nasty red line through it)&lt;br /&gt;
&lt;br /&gt;
== Please use CoinMap ==&lt;br /&gt;
&lt;br /&gt;
Hi,&lt;br /&gt;
please use [http://coinmap.org/#zoom=4&amp;amp;lat=42.39&amp;amp;lon=3.25&amp;amp;layer=OpenStreetMap CoinMap] instead of the current map.--[[User:Stemby|Stemby]] ([[User talk:Stemby|talk]]) 16:33, 1 July 2013 (GMT)&lt;br /&gt;
:I added a note for every entry with geographical coordinates. Example: http://www.openstreetmap.org/?note=11792 --[[User:Stemby|Stemby]] ([[User talk:Stemby|talk]]) 11:06, 6 July 2013 (GMT)&lt;br /&gt;
::I manually added also a note for every entry without geographical coordinates; example: http://www.openstreetmap.org/?note=12189&lt;br /&gt;
::I think the current buggy map should be replaced by CoinMap now. Thank you!--[[User:Stemby|Stemby]] ([[User talk:Stemby|talk]]) 12:13, 8 July 2013 (GMT)&lt;/div&gt;</summary>
		<author><name>Stemby</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=User_talk:ThomasV&amp;diff=39179</id>
		<title>User talk:ThomasV</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=User_talk:ThomasV&amp;diff=39179"/>
		<updated>2013-07-08T12:16:57Z</updated>

		<summary type="html">&lt;p&gt;Stemby: CoinMap&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== CoinMap ==&lt;br /&gt;
Hi,&lt;br /&gt;
I saw that you created [[Real_world_shops|this page]].&lt;br /&gt;
&lt;br /&gt;
Could you look at [[Talk:Real_world_shops#Please_use_CoinMap|this discussion]], please?&lt;br /&gt;
&lt;br /&gt;
Thank you!--[[User:Stemby|Stemby]] ([[User talk:Stemby|talk]]) 12:16, 8 July 2013 (GMT)&lt;/div&gt;</summary>
		<author><name>Stemby</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Talk:Real_world_shops&amp;diff=39178</id>
		<title>Talk:Real world shops</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Talk:Real_world_shops&amp;diff=39178"/>
		<updated>2013-07-08T12:13:56Z</updated>

		<summary type="html">&lt;p&gt;Stemby: /* Please use CoinMap */ added other notes on OSM&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;note: the parser does not always include all markers.&amp;lt;br/&amp;gt;&lt;br /&gt;
use action=purge if necessary: https://en.bitcoin.it/wiki/Real_world_shops?action=purge&lt;br /&gt;
&lt;br /&gt;
== Cyberspace is not imaginary ==&lt;br /&gt;
&lt;br /&gt;
Maybe the term &amp;quot;real world&amp;quot; should be replaced by &amp;quot;physical world&amp;quot;? The fact that bitcoin is a virtual currency doesn&#039;t make it any less real....&lt;br /&gt;
&lt;br /&gt;
== https for the google map ==&lt;br /&gt;
&lt;br /&gt;
When I load the page in chrome it says that the map cannot be loaded, however it loads up just fine after allowing insecure content through (albeit causing the green https to go red and have a nasty red line through it)&lt;br /&gt;
&lt;br /&gt;
== Please use CoinMap ==&lt;br /&gt;
&lt;br /&gt;
Hi,&lt;br /&gt;
please use [http://coinmap.org/#zoom=4&amp;amp;lat=42.39&amp;amp;lon=3.25&amp;amp;layer=OpenStreetMap CoinMap] instead of the current map.--[[User:Stemby|Stemby]] ([[User talk:Stemby|talk]]) 16:33, 1 July 2013 (GMT)&lt;br /&gt;
:I added a note for every entry with geographical coordinates. Example: http://www.openstreetmap.org/?note=11792 --[[User:Stemby|Stemby]] ([[User talk:Stemby|talk]]) 11:06, 6 July 2013 (GMT)&lt;br /&gt;
::I manually added also a note for every entry without geographical coordinates, Example: http://www.openstreetmap.org/?note=12189 --[[User:Stemby|Stemby]] ([[User talk:Stemby|talk]]) 12:13, 8 July 2013 (GMT)&lt;/div&gt;</summary>
		<author><name>Stemby</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Talk:Real_world_shops&amp;diff=39122</id>
		<title>Talk:Real world shops</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Talk:Real_world_shops&amp;diff=39122"/>
		<updated>2013-07-06T11:06:32Z</updated>

		<summary type="html">&lt;p&gt;Stemby: /* Please use CoinMap */ added notes on OSM&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;note: the parser does not always include all markers.&amp;lt;br/&amp;gt;&lt;br /&gt;
use action=purge if necessary: https://en.bitcoin.it/wiki/Real_world_shops?action=purge&lt;br /&gt;
&lt;br /&gt;
== Cyberspace is not imaginary ==&lt;br /&gt;
&lt;br /&gt;
Maybe the term &amp;quot;real world&amp;quot; should be replaced by &amp;quot;physical world&amp;quot;? The fact that bitcoin is a virtual currency doesn&#039;t make it any less real....&lt;br /&gt;
&lt;br /&gt;
== https for the google map ==&lt;br /&gt;
&lt;br /&gt;
When I load the page in chrome it says that the map cannot be loaded, however it loads up just fine after allowing insecure content through (albeit causing the green https to go red and have a nasty red line through it)&lt;br /&gt;
&lt;br /&gt;
== Please use CoinMap ==&lt;br /&gt;
&lt;br /&gt;
Hi,&lt;br /&gt;
please use [http://coinmap.org/#zoom=4&amp;amp;lat=42.39&amp;amp;lon=3.25&amp;amp;layer=OpenStreetMap CoinMap] instead of the current map.--[[User:Stemby|Stemby]] ([[User talk:Stemby|talk]]) 16:33, 1 July 2013 (GMT)&lt;br /&gt;
:I added a note for every entry with geographical coordinates. Example: http://www.openstreetmap.org/?note=11792 --[[User:Stemby|Stemby]] ([[User talk:Stemby|talk]]) 11:06, 6 July 2013 (GMT)&lt;/div&gt;</summary>
		<author><name>Stemby</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Talk:Real_world_shops&amp;diff=39038</id>
		<title>Talk:Real world shops</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Talk:Real_world_shops&amp;diff=39038"/>
		<updated>2013-07-01T16:33:08Z</updated>

		<summary type="html">&lt;p&gt;Stemby: /* Please use CoinMap */ new section&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;note: the parser does not always include all markers.&amp;lt;br/&amp;gt;&lt;br /&gt;
use action=purge if necessary: https://en.bitcoin.it/wiki/Real_world_shops?action=purge&lt;br /&gt;
&lt;br /&gt;
== Cyberspace is not imaginary ==&lt;br /&gt;
&lt;br /&gt;
Maybe the term &amp;quot;real world&amp;quot; should be replaced by &amp;quot;physical world&amp;quot;? The fact that bitcoin is a virtual currency doesn&#039;t make it any less real....&lt;br /&gt;
&lt;br /&gt;
== https for the google map ==&lt;br /&gt;
&lt;br /&gt;
When I load the page in chrome it says that the map cannot be loaded, however it loads up just fine after allowing insecure content through (albeit causing the green https to go red and have a nasty red line through it)&lt;br /&gt;
&lt;br /&gt;
== Please use CoinMap ==&lt;br /&gt;
&lt;br /&gt;
Hi,&lt;br /&gt;
please use [http://coinmap.org/#zoom=4&amp;amp;lat=42.39&amp;amp;lon=3.25&amp;amp;layer=OpenStreetMap CoinMap] instead of the current map.--[[User:Stemby|Stemby]] ([[User talk:Stemby|talk]]) 16:33, 1 July 2013 (GMT)&lt;/div&gt;</summary>
		<author><name>Stemby</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Software&amp;diff=33879</id>
		<title>Software</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Software&amp;diff=33879"/>
		<updated>2012-12-18T03:23:40Z</updated>

		<summary type="html">&lt;p&gt;Stemby: /* Bitcoin clients */ adding 2 web interfaces&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;List of Bitcoin-related software. See also [[:Category:Software|Category:Software]].&lt;br /&gt;
&lt;br /&gt;
Be sure to keep on top of the latest [[CVEs|security vulnerabilities]]!&lt;br /&gt;
&lt;br /&gt;
==Bitcoin clients==&lt;br /&gt;
===Bitcoin clients===&lt;br /&gt;
*[[Bitcoin-Qt]] - C++/Qt based tabbed UI for Bitcoin, Linux/MacOSX/Windows, full-featured&lt;br /&gt;
*[[bitcoind]] - GUI-less version of the standard Bitcoin client, providing [[API reference (JSON-RPC)|JSON-RPC]] interface&lt;br /&gt;
*[[Bitcoin-js-remote]] - JavaScript RPC client, support for QR codes&lt;br /&gt;
*[https://github.com/TheSeven/Bitcoin-WebUI Bitcoin WebUI] - JavaScript RPC client&lt;br /&gt;
*[https://github.com/zamgo/bitcoin-webskin Bitcoin Webskin] - PHP web interface to bitcoind and namecoind&lt;br /&gt;
* [https://bitcointalk.org/index.php?topic=50721.0 subvertx] - Command line bitcoin tools&lt;br /&gt;
*[[Electrum]] - A blazing fast, open-source, multi-OS Bitcoin client/wallet with a very active community&lt;br /&gt;
*[[MultiBit]] - a secure, lightweight, international Bitcoin wallet for Windows, MacOS and Linux&lt;br /&gt;
*[[Bitcoiner]] - Java RPC client (Android)&lt;br /&gt;
*[[Spesmilo]] - Python/PySide RPC client (abandoned)&lt;br /&gt;
*[[Armory]] - Python-based client currently an alpha-level release, the beta version is being crowdfunded&lt;br /&gt;
&lt;br /&gt;
====Frontends to eWallet====&lt;br /&gt;
*[[BitPay]] - Android application&lt;br /&gt;
*[https://blockchain.info/wallet Blockchain] - Javascript bitcoin client with client side encryption.&lt;br /&gt;
&lt;br /&gt;
====Experimental====&lt;br /&gt;
*[[Freecoin]] - C++ client, supports alternative currencies like [[Beertoken]]&lt;br /&gt;
*[[BitDroid]] - Java client&lt;br /&gt;
*[[Bitdollar]] - C++/Qt client, unstable beta version&lt;br /&gt;
&lt;br /&gt;
===Libraries===&lt;br /&gt;
*[https://bitcointalk.org/index.php?topic=30646.0 libbitcoin]&lt;br /&gt;
*[[BitCoinJ]] - Java client library, early development stage but used in live projects already&lt;br /&gt;
*[[BCCAPI]] (Bitcoin Client API) - a java library designed for making secure light-weight bitcoin clients.&lt;br /&gt;
&lt;br /&gt;
==Bitcoin Trade Data==&lt;br /&gt;
*[[Bitcoin Charts]] – Prices, volume, and extensive charting on virtually all Bitcoin markets.&lt;br /&gt;
*[[MtGox Live]] - An innovative chart showing a live feed of [[MtGox]] trades and market depth.  (Must Use Chrome)&lt;br /&gt;
*[http://btccharts.com BTCCharts] - An innovative chart showing a live feed of multiple markets, currencies and timeframes.&lt;br /&gt;
*[http://BitcoinExchangeRate.org BitcoinExchangeRate.org] - Bitcoin and USD converter with convenient URL scheme and Auto-updating Portfolio Spreadsheet.&lt;br /&gt;
*[[Bitcoin Sentiment Index]] - A financial index that collects and disseminates sentiment data about bitcoin.&lt;br /&gt;
*[[Preev]] - Bitcoin converter with live exchange rates.&lt;br /&gt;
&lt;br /&gt;
==Bitcoin software==&lt;br /&gt;
&lt;br /&gt;
===Web interfaces for merchants===&lt;br /&gt;
*[[Bitcoin Evolution]] - Non wallet-based Buy Now button to insert into websites (handles sales tracking; client must be used for actual transaction)&lt;br /&gt;
*[[BitPay]] - Buy Now buttons, Checkout posts/callbacks, Mobile Checkout, JSON API&lt;br /&gt;
*[[Btceconomy]] - a JavaScript widget listing items for sale&lt;br /&gt;
*[[Javascript Bitcoin Converter]] - currency conversion&lt;br /&gt;
*[[WalletBit]] - Easy JavaScript Buy Now buttons, Instant Payment Notification, Application Programming Interface (JSON API), Mobile Checkout, QR-Code&lt;br /&gt;
*[[BitUtils Merchant]] - Customizable Buy Now buttons with hosted checkout interface. No programming skills required to set up.&lt;br /&gt;
&lt;br /&gt;
===Shopping Cart Integration in eCommerce-Systems===&lt;br /&gt;
*[[Zen Cart Bitcoin Payment Module]] - a payment module that interacts with bitcoind for the Zen Cart eCommerce shopping chart.&lt;br /&gt;
*[[Karsha Shopping Cart Interface]] -  is a mobile payment-interface which enables its users to accept payments.&lt;br /&gt;
*[[Bitcoin-Cash]] - an easy to use payment module for xt:Commerce&lt;br /&gt;
*[[BitPay]] - bitcoin plugins for Magento, Opencart, Zencart, PHP, JSON API&lt;br /&gt;
*[[WalletBit]] - Plugins for PrestaShop, OpenCart, PHP, JSON API&lt;br /&gt;
*[[OpenCart Bitcoin]] - An OpenCart payment module that communicates with a bitcoin client using JSON RPC.&lt;br /&gt;
*[[OsCommerce_Bitcoin_Payment_Module|OsCommerce Bitcoin Payment Module]] - a payment module that uses a python monitoring script to interact with bitcoind for OsCommerce&lt;br /&gt;
* [http://drupal.org/project/uc_bitcoin Drupal Ubercart Bitcoin payment method] enables you to accept Bitcoin as payment for your Drupal/Ubercart enabled website product/services.&lt;br /&gt;
&lt;br /&gt;
===Web apps (opensource)===&lt;br /&gt;
*[[Bitcoin Central]] - currency exchange&lt;br /&gt;
*[[Bitcoin Poker Room]] - poker site&lt;br /&gt;
*[[Abe]] - block chain viewer&lt;br /&gt;
*[[Simplecoin]] - PHP web frontend for a pool&lt;br /&gt;
*[[bitcoin_simple_php_tools]] simple php tools for webmasters&lt;br /&gt;
&lt;br /&gt;
===Browser extensions===&lt;br /&gt;
*[[Bitcoin Extension]] - check balance and send bitcoins (Chrome)&lt;br /&gt;
*[[Bitcoin Prices (extension)]] - monitoring price (Firefox)&lt;br /&gt;
*[[Bitcoin Ticker]] - monitoring price (Chrome)&lt;br /&gt;
*[[Biticker]] - Bitcoin ticker, currency converter and history price graph (Chrome)&lt;br /&gt;
&lt;br /&gt;
===PC apps===&lt;br /&gt;
*[[http://www.mybtc-trader.com MyBTC-Trader.com]] - a MtGox Bitcoin trading client for windows with GUI&lt;br /&gt;
*[[Mining Explorer]] - monitoring tool for bitcoin mining&lt;br /&gt;
*[[Bitcoin SMS Alert]] - sends SMS text alerts to a user&#039;s phone based on BTC price / percent thresholds.&lt;br /&gt;
*[[BTConvert]] - currency conversion&lt;br /&gt;
*[[Sierra Chart MtGox Bridge]] - real-time charting&lt;br /&gt;
*[[BitTicker]] - monitoring price (Mac OS X)&lt;br /&gt;
*[[ToyTrader]] - a command line trading tool for [[MtGox]]&lt;br /&gt;
*[[goxsh]] - a command-line frontend to the [[MtGox|Mt. Gox Bitcoin Exchange]] (Python)&lt;br /&gt;
*[[MyBitcoins gadget]] - monitoring pool earnings / price (Windows gadget)&lt;br /&gt;
*[[Bitcoin QR Popup]] - streamlined interface to bitcoin for POS systems (Windows)&lt;br /&gt;
*[http://gnome-help.org/content/show.php/Bitcoin+Rate?content=138572 Bitcoin Rate] - Desktop widget with BTC exchange rate (KDE)&lt;br /&gt;
*[http://kde-apps.org/content/show.php?content=142344 Bitcoin Monitor] - Desktop widget to monitor status of your Bitcoin miners on mining pools (KDE)&lt;br /&gt;
&lt;br /&gt;
===Mobile apps===&lt;br /&gt;
==== iPhone / iPad ====&lt;br /&gt;
*[https://blockchain.info/wallet/iphone-app Blockchain] - Fully featured iphone bitcoin app.&lt;br /&gt;
*[[Bitcoin Ticker (iPhone)]] - monitoring price w/push notifications&lt;br /&gt;
*[[BitCoins Mobile]] - First iPad native app! Live market data, news feeds, mining pool statistics, full screen exchange price charts, bitcoin network statistical charts. (iPad only, iPhone/iPod Touch coming soon!)&lt;br /&gt;
*[https://github.com/teeman/BitcoinTrader BitcoinTrader] - Spend/receive BTC via QR codes, trade, deposit/withdraw, etc. Supports Mt. Gox, TradeHill, ExchB, CampBX, and InstaWallet.&lt;br /&gt;
*[[Bit-pay]] - Mobile Checkout, set prices in any currency and receive mobile-to-mobile payment&lt;br /&gt;
*[[Easywallet.org]] - Web based wallet, works with QR Code scanner on iPhone/iPad/iPod touch&lt;br /&gt;
&lt;br /&gt;
==== Android ====&lt;br /&gt;
* Direct link to Android Market bitcoin apps. https://play.google.com/store/search?q=bitcoin&lt;br /&gt;
*[[BitCare]] - Track bitcoin wallet balance, trade on Mt.Gox, monitor mining pool hashrate, balance, worker status. &lt;br /&gt;
*[[BtcMobile]] - monitoring price and mining pool statistics (iPhone/iPad, Android)&lt;br /&gt;
*[[Bitcoin Alert]] - monitoring price (Android)&lt;br /&gt;
*[[Bitcoin-android]] - Does not appear to be being maitained anymore. https://market.android.com/details?id=com.bitcoinandroid&lt;br /&gt;
*[[Bitcoin Wallet Balance]] - view your balance in real time on your android phone&lt;br /&gt;
*[[Bitcoin Wallet for Android]] - This is the most functional android bitcoin wallet application. https://market.android.com/details?id=de.schildbach.wallet&lt;br /&gt;
*[[BitcoinSpinner]] - Single address, easy to use, lightweight and open source client. Keys stored on device.&lt;br /&gt;
*[[BitcoinX]] - monitoring price (Android)&lt;br /&gt;
*[[BitPay]] - https://market.android.com/details?id=com.bitcoin.bitpay (Is not related to the bit-pay.com online payment processor.)&lt;br /&gt;
*[https://blockchain.info/wallet/android-app Blockchain] - Lightweight Android Bitcoin Client - Also works with blockchain.info web interface and iphone app.&lt;br /&gt;
*[[BtcMobile]] - monitoring price and mining pool statistics (iPhone/iPad, Android)&lt;br /&gt;
*[[Easywallet.org]] - Web based wallet, works with QR Code scanner on Android devices&lt;br /&gt;
*[[Miner Status]] - monitoring miner status (Android)&lt;br /&gt;
*[[SMS Bitcoins]] - transactions by SMS&lt;br /&gt;
&lt;br /&gt;
==== Windows Phone 7 ====&lt;br /&gt;
*Direct link to Windows Phone Marketplace Bitcoin apps: [http://www.windowsphone.com/en-us/store/search?q=bitcoin]&lt;br /&gt;
&lt;br /&gt;
see also [[Bitcoin Payment Apps]]&lt;br /&gt;
&lt;br /&gt;
===Operating systems===&lt;br /&gt;
*[[BAMT]]&lt;br /&gt;
*[[LinuxCoin]] - a lightweight Debian-based OS, with the Bitcoin client and GPU mining software&lt;br /&gt;
&lt;br /&gt;
===Mining apps===&lt;br /&gt;
*[[50Miner]] - A GUI frontend for Windows(Poclbm, Phoenix, DiabloMiner)&lt;br /&gt;
*[[BFGMiner]] - Modular FPGA/GPU miner in C&lt;br /&gt;
*[[BTCMiner]] - Bitcoin Miner for ZTEX FPGA Boards&lt;br /&gt;
*[[Bit Moose]] - Run Miners as a Windows Service.&lt;br /&gt;
*[[Poclbm]] - Python/OpenCL GPU miner ([[Poclbm-gui|GUI(Windows &amp;amp; MacOS X)]])&lt;br /&gt;
*[[Poclbm-mod]] - more efficient version of [[Poclbm]] ([[Poclbm-mod-gui|GUI]])&lt;br /&gt;
*[[DiabloMiner]] - Java/OpenCL GPU miner ([[DiabloMiner.app|MAC OS X GUI]])&lt;br /&gt;
*[[RPC Miner]] - remote RPC miner ([[RPCminer.app|MAC OS X GUI]])&lt;br /&gt;
*[[Phoenix miner]] - miner&lt;br /&gt;
*[[Cpu Miner]] - miner&lt;br /&gt;
*[[Ufasoft miner]] - miner&lt;br /&gt;
*[[Pyminer]] - Python miner, reference implementation&lt;br /&gt;
*[[Remote miner]] - mining pool software&lt;br /&gt;
*[[Open Source FGPA Bitcoin Miner]] - a miner that makes use of an FPGA Board&lt;br /&gt;
*[https://github.com/mkburza/Flash-Player-Bitcoin-Miner Flash Player Bitcoin Miner] - A proof of concept Adobe Flash Player miner&lt;br /&gt;
&lt;br /&gt;
===Mining Pool Servers (backend)===&lt;br /&gt;
Main page: [[Poolservers]]&lt;br /&gt;
&lt;br /&gt;
*[[ecoinpool]] - Erlang poolserver&lt;br /&gt;
*[[Eloipool]] - Fast Python3 poolserver&lt;br /&gt;
*[[Pushpoold]] - Old mining poolserver in C (not maintained)&lt;br /&gt;
*[[Poold]] - Old Python mining poolserver (not maintained)&lt;br /&gt;
*[[PoolServerJ]] - Java mining poolserver (not maintained)&lt;br /&gt;
&lt;br /&gt;
===Utilities, libraries, and interfaces:===&lt;br /&gt;
*[[BitcoinCrypto]] - a lightweight Bitcoin crypto library for Java/Android&lt;br /&gt;
*[[Bitcoin Dissector]] - a wireshark dissector for the bitcoin protocol&lt;br /&gt;
*[[Bitcointools]] - a set of Python tools accessing the transaction database and the wallet&lt;br /&gt;
*[[Finance::MtGox]] - a Perl module which interfaces with the Mt. Gox API&lt;br /&gt;
*[[libblkmaker]] - C library implementation of [[getblocktemplate]] decentralized mining protocol&lt;br /&gt;
*[[python-blkmaker]] - Python module implementation of [[getblocktemplate]] decentralized mining protocol&lt;br /&gt;
&lt;br /&gt;
===Lists of software===&lt;br /&gt;
*[[BitGit]] - list of Bitcoin-related opensource projects hosted at Git&lt;br /&gt;
&lt;br /&gt;
===Developer resources===&lt;br /&gt;
*[[:Category:Developer|Category:Developer]]&lt;br /&gt;
*[[:Category:Technical|Category:Technical]]&lt;br /&gt;
*[[Original Bitcoin client/API calls list]]&lt;br /&gt;
*[[API reference (JSON-RPC)]]&lt;br /&gt;
*[[PHP_developer_intro|PHP Developer Introduction]]&lt;br /&gt;
&lt;br /&gt;
===Other===&lt;br /&gt;
*[[Namecoin]] - a distributed naming system based on Bitcoin technology&lt;br /&gt;
*[[Bitcoin Consultancy]] - an organization providing open source software and Bitcoin-related consulting&lt;br /&gt;
*[[Open Transactions]] - a financial crypto and digital cash software library, complementary to Bitcoin&lt;br /&gt;
*[[Moneychanger]] - Java-based GUI for [[Open Transactions]]&lt;br /&gt;
*[http://btcnames.org/ BTCnames] - a webbased aliasing service which allows to handle unlimited names for your BTC deposit hashes&lt;br /&gt;
*[[Devcoin]] - the open source developer coin&lt;/div&gt;</summary>
		<author><name>Stemby</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Talk:BIP_0010&amp;diff=23981</id>
		<title>Talk:BIP 0010</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Talk:BIP_0010&amp;diff=23981"/>
		<updated>2012-02-17T02:36:51Z</updated>

		<summary type="html">&lt;p&gt;Stemby: signature&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Typo ==&lt;br /&gt;
There is a little typo:&lt;br /&gt;
 multi-signature transcations → multi-signature transactions&lt;br /&gt;
Bye --[[User:Stemby|Stemby]] 02:36, 17 February 2012 (GMT)&lt;/div&gt;</summary>
		<author><name>Stemby</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Talk:BIP_0010&amp;diff=23980</id>
		<title>Talk:BIP 0010</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Talk:BIP_0010&amp;diff=23980"/>
		<updated>2012-02-17T02:35:59Z</updated>

		<summary type="html">&lt;p&gt;Stemby: Created page with &amp;quot;== Typo == There is a little typo:  multi-signature transcations → multi-signature transactions&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Typo ==&lt;br /&gt;
There is a little typo:&lt;br /&gt;
 multi-signature transcations → multi-signature transactions&lt;/div&gt;</summary>
		<author><name>Stemby</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=BIP_16&amp;diff=23360</id>
		<title>BIP 16</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=BIP_16&amp;diff=23360"/>
		<updated>2012-02-04T09:49:52Z</updated>

		<summary type="html">&lt;p&gt;Stemby: Redirected page to BIP 0016&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#REDIRECT[[BIP 0016]]&lt;/div&gt;</summary>
		<author><name>Stemby</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Bitcoin-python&amp;diff=9999</id>
		<title>Bitcoin-python</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Bitcoin-python&amp;diff=9999"/>
		<updated>2011-06-07T23:02:27Z</updated>

		<summary type="html">&lt;p&gt;Stemby: bitcoin-python&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Friendly bitcoin API binding for Python.&lt;br /&gt;
&lt;br /&gt;
bitcoin-python is a set of Python libraries that allows easy access to the bitcoin peer-to-peer cryptocurrency client API.&lt;br /&gt;
&lt;br /&gt;
This software is Open Source.&lt;br /&gt;
&lt;br /&gt;
==Documentation==&lt;br /&gt;
Documentation can be found here, or in the source archive. It is built using Sphinx:&lt;br /&gt;
&lt;br /&gt;
http://toomanysecrets0.github.com/bitcoin-python/doc/&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
* [[Original Bitcoin client]]&lt;br /&gt;
&lt;br /&gt;
==External Links==&lt;br /&gt;
* [https://github.com/toomanysecrets0/bitcoin-python bitcoin-python] project&lt;br /&gt;
&lt;br /&gt;
[[Category:Open Source]]&lt;br /&gt;
[[Category:Clients]]&lt;/div&gt;</summary>
		<author><name>Stemby</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Talk:Python_Bitcoin&amp;diff=9998</id>
		<title>Talk:Python Bitcoin</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Talk:Python_Bitcoin&amp;diff=9998"/>
		<updated>2011-06-07T22:57:33Z</updated>

		<summary type="html">&lt;p&gt;Stemby: signature&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The link (gitorious) is broken.&lt;br /&gt;
&lt;br /&gt;
Here is a very similar project: https://github.com/toomanysecrets0/bitcoin-python&lt;br /&gt;
--[[User:Stemby|Stemby]] 22:57, 7 June 2011 (GMT)&lt;/div&gt;</summary>
		<author><name>Stemby</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Talk:Python_Bitcoin&amp;diff=9997</id>
		<title>Talk:Python Bitcoin</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Talk:Python_Bitcoin&amp;diff=9997"/>
		<updated>2011-06-07T22:56:56Z</updated>

		<summary type="html">&lt;p&gt;Stemby: bitcoin-python&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The link (gitorious) is broken.&lt;br /&gt;
&lt;br /&gt;
Here is a very similar project: https://github.com/toomanysecrets0/bitcoin-python&lt;/div&gt;</summary>
		<author><name>Stemby</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=IRC_channels&amp;diff=9880</id>
		<title>IRC channels</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=IRC_channels&amp;diff=9880"/>
		<updated>2011-06-06T12:15:50Z</updated>

		<summary type="html">&lt;p&gt;Stemby: /* Local communities */ + Italian community&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The following Bitcoin-related IRC channels are available on [http://www.freenode.net Freenode]:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Bitcoin Project==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Channel !! Description&lt;br /&gt;
|-&lt;br /&gt;
| {{Freenode IRC|bitcoin}} || General Bitcoin-related discussion.&lt;br /&gt;
|-&lt;br /&gt;
| {{Freenode IRC|bitcoin-otc|text=[[bitcoin-otc|#bitcoin-otc]]}} || Over-the-counter trading marketplace and discussion.&lt;br /&gt;
|-&lt;br /&gt;
| {{Freenode IRC|bitcoin-otc-ticker|bitcoin-otc-ticker}} || Streaming market data form the [[#bitcoin-otc]] order book.&lt;br /&gt;
|-&lt;br /&gt;
| {{Freenode IRC|bitcoin-pit}} || Only over-the-counter trading.&lt;br /&gt;
|-&lt;br /&gt;
| {{Freenode IRC|bitcoin-auction}} || Live auctions over IRC.&lt;br /&gt;
|-&lt;br /&gt;
| {{Freenode IRC|bitcoin-market}} || Streaming market data (only), no chat.&lt;br /&gt;
|-&lt;br /&gt;
| {{Freenode IRC|bitcoin-watch|text=[[Bitcoin-Watch|#bitcoin-watch]]}} || Streaming Bitcoin transactions, including market data.&lt;br /&gt;
|-&lt;br /&gt;
| {{Freenode IRC|bitcoin-dev}} || Bitcoin software development.&lt;br /&gt;
|-&lt;br /&gt;
| {{Freenode IRC|bitcoin-mining}} || Discussion and support related to mining.&lt;br /&gt;
|-&lt;br /&gt;
| {{Freenode IRC|bitcoin-politics}} || Discuss politics with other Bitcoin users.&lt;br /&gt;
|-&lt;br /&gt;
| {{Freenode IRC|bc-news}} || RSS News related to Bitcoin.&lt;br /&gt;
|-&lt;br /&gt;
| {{Freenode IRC|bitcoin-marketing}} || Marketing and promotion of bitcoin&lt;br /&gt;
|-&lt;br /&gt;
| {{Freenode IRC|bitcoin-gentoo}} || Gentoo community.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Local communities===&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Channel !! Description&lt;br /&gt;
|-&lt;br /&gt;
| {{Freenode IRC|bitcoin-otc-eu}} || European OTC trading marketplace.&lt;br /&gt;
|-&lt;br /&gt;
| {{Freenode IRC|bitcoin-otc-ru}} || Russian OTC trading marketplace.&lt;br /&gt;
|-&lt;br /&gt;
| {{Freenode IRC|bitcoin-aus}} || Aussie bitcoin community.&lt;br /&gt;
|-&lt;br /&gt;
| {{Freenode IRC|bitcoin-br}} || Brazilian bitcoin community.&lt;br /&gt;
|-&lt;br /&gt;
| {{Freenode IRC|bitcoin-cad}} || Canadian bitcoin community.&lt;br /&gt;
|-&lt;br /&gt;
| {{Freenode IRC|bitcoin-cn}} || Chinese bitcoin community.&lt;br /&gt;
|-&lt;br /&gt;
| {{Freenode IRC|bitcoin-de}} || German bitcoin community.&lt;br /&gt;
|-&lt;br /&gt;
| {{Freenode IRC|bitcoin-dk}} || Danish bitcoin community.&lt;br /&gt;
|-&lt;br /&gt;
| {{Freenode IRC|bitcoin-nederland}} || Dutch bitcoin community.&lt;br /&gt;
|-&lt;br /&gt;
| {{Freenode IRC|bitcoin-es}} || Spanish-speaking bitcoin community.&lt;br /&gt;
|-&lt;br /&gt;
| {{Freenode IRC|bitcoin-fr}} || French bitcoin community.&lt;br /&gt;
|-&lt;br /&gt;
| {{Freenode IRC|bitcoin-it}} || Italian bitcoin community.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Related Communities==&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Channel !! Description&lt;br /&gt;
|-&lt;br /&gt;
| {{Freenode IRC|eligius}} || [[Eligius]] pool community&lt;br /&gt;
|-&lt;br /&gt;
| {{Freenode IRC|namecoin}} || [[Namecoin]] and the [[Dot-bit]] project.&lt;br /&gt;
|-&lt;br /&gt;
| {{Freenode IRC|witcoin}} || [[Witcoin]] social news and user generated content.&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;small&amp;gt;[irc://irc.foonetic.net/xkcd-bitcoin IRC]&amp;lt;/small&amp;gt; #xkcd-bitcoin || [https://en.bitcoin.it/wiki/XKCD_Pool XKCD Pool]&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;small&amp;gt;[irc://irc.quakenet.org/bitcoins.lc IRC]&amp;lt;/small&amp;gt; #bitcoins.lc @ Quakenet || [http://www.bitcoins.lc Bitcoins.lc Pool] &lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Stemby</name></author>
	</entry>
</feed>