<?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=C0ldfusi0nz</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=C0ldfusi0nz"/>
	<link rel="alternate" type="text/html" href="https://en.bitcoin.it/wiki/Special:Contributions/C0ldfusi0nz"/>
	<updated>2026-05-16T23:56:52Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.43.8</generator>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Original_Bitcoin_client/API_calls_list&amp;diff=53858</id>
		<title>Original Bitcoin client/API calls list</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Original_Bitcoin_client/API_calls_list&amp;diff=53858"/>
		<updated>2015-01-20T02:04:05Z</updated>

		<summary type="html">&lt;p&gt;C0ldfusi0nz: adding link to bitcoin.org developer guide&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Bitcoin API call list (as of version 0.8.0)&lt;br /&gt;
&lt;br /&gt;
Note: up-to-date API reference can be [https://bitcoin.org/en/developer-reference#bitcoin-core-apis found here].&lt;br /&gt;
&lt;br /&gt;
== Common operations ==&lt;br /&gt;
&lt;br /&gt;
=== Listing my bitcoin addresses ===&lt;br /&gt;
&lt;br /&gt;
Listing the bitcoin [[address|addresses]] in your wallet is easily done via &#039;&#039;listreceivedbyaddress&#039;&#039;. It normally lists only addresses which already have received transactions, however you can list all the addresses by setting the first argument to 0, and the second one to true.&lt;br /&gt;
&lt;br /&gt;
[[accounts explained|Accounts]] are used to organize addresses.&lt;br /&gt;
&lt;br /&gt;
== Full list ==&lt;br /&gt;
&lt;br /&gt;
Required arguments are denoted inside &amp;amp;lt; and &amp;amp;gt; Optional arguments are inside [ and ].&lt;br /&gt;
&lt;br /&gt;
{|class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Command !! Parameters !! Description !! Requires unlocked wallet? (v0.4.0+)&lt;br /&gt;
|-&lt;br /&gt;
| addmultisigaddress || &amp;lt;nrequired&amp;gt; &amp;lt;&#039;[&amp;quot;key&amp;quot;,&amp;quot;key&amp;quot;]&#039;&amp;gt; [account] || Add a nrequired-to-sign multisignature address to the wallet. Each key is a bitcoin address or hex-encoded public key. If [account] is specified, assign address to [account]. Returns a string containing the address. || N&lt;br /&gt;
|-&lt;br /&gt;
| addnode || &amp;lt;node&amp;gt; &amp;lt;add/remove/onetry&amp;gt; || &#039;&#039;&#039;version 0.8&#039;&#039;&#039; Attempts add or remove &amp;lt;node&amp;gt; from the addnode list or try a connection to &amp;lt;node&amp;gt; once. || N&lt;br /&gt;
|-&lt;br /&gt;
| backupwallet || &amp;lt;destination&amp;gt; || Safely copies wallet.dat to destination, which can be a directory or a path with filename. || N&lt;br /&gt;
|-&lt;br /&gt;
| createmultisig || &amp;lt;nrequired&amp;gt; &amp;lt;&#039;[&amp;quot;key,&amp;quot;key&amp;quot;]&#039;&amp;gt; || Creates a multi-signature address and returns a json object ||&lt;br /&gt;
|-&lt;br /&gt;
| createrawtransaction || [{&amp;quot;txid&amp;quot;:txid,&amp;quot;vout&amp;quot;:n},...] {address:amount,...} || &#039;&#039;&#039;version 0.7&#039;&#039;&#039;  Creates a [[Raw Transactions|raw transaction]] spending given inputs. || N&lt;br /&gt;
|-&lt;br /&gt;
| decoderawtransaction || &amp;lt;hex string&amp;gt; || &#039;&#039;&#039;version 0.7&#039;&#039;&#039;  Produces a human-readable JSON object for a [[Raw Transactions|raw transaction]]. || N&lt;br /&gt;
|-&lt;br /&gt;
| dumpprivkey || &amp;lt;bitcoinaddress&amp;gt; || Reveals the private key corresponding to &amp;lt;bitcoinaddress&amp;gt; || Y&lt;br /&gt;
|-&lt;br /&gt;
| encryptwallet || &amp;lt;passphrase&amp;gt; || Encrypts the wallet with &amp;lt;passphrase&amp;gt;. || N&lt;br /&gt;
|-&lt;br /&gt;
| getaccount || &amp;lt;bitcoinaddress&amp;gt; || Returns the account associated with the given address. || N&lt;br /&gt;
|-&lt;br /&gt;
| getaccountaddress || &amp;lt;account&amp;gt; || Returns the current bitcoin address for receiving payments to this account. If &amp;lt;account&amp;gt; does not exist, it will be created along with an associated new address that will be returned. || N&lt;br /&gt;
|-&lt;br /&gt;
| getaddednodeinfo || &amp;lt;dns&amp;gt; [node] || &#039;&#039;&#039;version 0.8&#039;&#039;&#039; Returns information about the given added node, or all added nodes&lt;br /&gt;
(note that onetry addnodes are not listed here)&lt;br /&gt;
If dns is false, only a list of added nodes will be provided,&lt;br /&gt;
otherwise connected information will also be available.&lt;br /&gt;
|-&lt;br /&gt;
| getaddressesbyaccount || &amp;lt;account&amp;gt; || Returns the list of addresses for the given account. || N&lt;br /&gt;
|-&lt;br /&gt;
| getbalance || [account] [minconf=1] || If [account] is not specified, returns the server&#039;s total available balance.&amp;lt;br/&amp;gt;If [account] is specified, returns the balance in the account. || N&lt;br /&gt;
|-&lt;br /&gt;
| getbestblockhash || || &#039;&#039;&#039;version 0.9&#039;&#039;&#039; Returns the hash of the best (tip) block in the longest block chain. || N&lt;br /&gt;
|-&lt;br /&gt;
| getblock || &amp;lt;hash&amp;gt; || Returns information about the block with the given hash. || N&lt;br /&gt;
|-&lt;br /&gt;
| getblockcount || || Returns the number of blocks in the longest block chain. || N&lt;br /&gt;
|-&lt;br /&gt;
| getblockhash || &amp;lt;index&amp;gt; || Returns hash of block in best-block-chain at &amp;lt;index&amp;gt;; index 0 is the [[genesis block]] || N&lt;br /&gt;
|-&lt;br /&gt;
| getblocknumber || || &#039;&#039;&#039;Deprecated&#039;&#039;&#039;. &#039;&#039;&#039;Removed in version 0.7&#039;&#039;&#039;. Use getblockcount. || N&lt;br /&gt;
|-&lt;br /&gt;
| getblocktemplate || [params] || Returns data needed to construct a block to work on.  See [[ BIP_0022]] for more info on params.|| N&lt;br /&gt;
|-&lt;br /&gt;
| getconnectioncount || || Returns the number of connections to other nodes. || N&lt;br /&gt;
|-&lt;br /&gt;
| getdifficulty || || Returns the proof-of-work difficulty as a multiple of the minimum difficulty. || N&lt;br /&gt;
|-&lt;br /&gt;
| getgenerate || || Returns true or false whether bitcoind is currently generating hashes || N&lt;br /&gt;
|-&lt;br /&gt;
| gethashespersec || || Returns a recent hashes per second performance measurement while generating. || N&lt;br /&gt;
|-&lt;br /&gt;
| getinfo || || Returns an object containing various state info. || N&lt;br /&gt;
|-&lt;br /&gt;
| getmemorypool || [data] || &#039;&#039;&#039;Replaced in v0.7.0 with getblocktemplate, submitblock, getrawmempool&#039;&#039;&#039; || N&lt;br /&gt;
|-&lt;br /&gt;
| getmininginfo || || Returns an object containing mining-related information:&lt;br /&gt;
* blocks&lt;br /&gt;
* currentblocksize&lt;br /&gt;
* currentblocktx&lt;br /&gt;
* difficulty&lt;br /&gt;
* errors&lt;br /&gt;
* generate&lt;br /&gt;
* genproclimit&lt;br /&gt;
* hashespersec&lt;br /&gt;
* pooledtx&lt;br /&gt;
* testnet&lt;br /&gt;
|| N&lt;br /&gt;
|-&lt;br /&gt;
| getnewaddress || [account] || Returns a new bitcoin address for receiving payments.  If [account] is specified payments received with the address will be credited to [account]. || N&lt;br /&gt;
|-&lt;br /&gt;
| getpeerinfo || || &#039;&#039;&#039;version 0.7&#039;&#039;&#039; Returns data about each connected node. || N&lt;br /&gt;
|-&lt;br /&gt;
| getrawchangeaddress || [account]|| &#039;&#039;&#039;version 0.9&#039;&#039;&#039; Returns a new Bitcoin address, for receiving change.  This is for use with raw transactions, NOT normal use. || N&lt;br /&gt;
|-&lt;br /&gt;
| getrawmempool || || &#039;&#039;&#039;version 0.7&#039;&#039;&#039; Returns all transaction ids in memory pool || N&lt;br /&gt;
|-&lt;br /&gt;
| getrawtransaction || &amp;lt;txid&amp;gt; [verbose=0] || &#039;&#039;&#039;version 0.7&#039;&#039;&#039;  Returns [[Raw Transactions|raw transaction]] representation for given transaction id. || N&lt;br /&gt;
|-&lt;br /&gt;
| getreceivedbyaccount || [account] [minconf=1] || Returns the total amount received by addresses with [account] in transactions with at least [minconf] confirmations. If [account] not provided return will include all transactions to all accounts. (version 0.3.24) || N&lt;br /&gt;
|-&lt;br /&gt;
| getreceivedbyaddress || &amp;lt;bitcoinaddress&amp;gt; [minconf=1] || Returns the amount received by &amp;lt;bitcoinaddress&amp;gt; in transactions with at least [minconf] confirmations. It correctly handles the case where someone has sent to the address in multiple transactions. Keep in mind that addresses are only ever used for receiving transactions. Works only for addresses in the local wallet, external addresses will always show 0. || N&lt;br /&gt;
|-&lt;br /&gt;
| gettransaction || &amp;lt;txid&amp;gt; || Returns an object about the given transaction containing:&lt;br /&gt;
* &amp;quot;amount&amp;quot; : total amount of the transaction&lt;br /&gt;
* &amp;quot;confirmations&amp;quot; :  number of confirmations of the transaction&lt;br /&gt;
* &amp;quot;txid&amp;quot; : the transaction ID&lt;br /&gt;
* &amp;quot;time&amp;quot; : time associated with the transaction&amp;lt;ref&amp;gt;From block timestamp, unless transaction was already in memory pool then the local time when the client added the transaction to its memory pool&amp;lt;/ref&amp;gt;.&lt;br /&gt;
* &amp;quot;details&amp;quot; - An array of objects containing:&lt;br /&gt;
** &amp;quot;account&amp;quot;&lt;br /&gt;
** &amp;quot;address&amp;quot;&lt;br /&gt;
** &amp;quot;category&amp;quot;&lt;br /&gt;
** &amp;quot;amount&amp;quot;&lt;br /&gt;
** &amp;quot;fee&amp;quot;&lt;br /&gt;
|| N&lt;br /&gt;
|-&lt;br /&gt;
| gettxout || &amp;lt;txid&amp;gt; &amp;lt;n&amp;gt; [includemempool=true] || Returns details about an unspent transaction output (UTXO) || N&lt;br /&gt;
|-&lt;br /&gt;
| gettxoutsetinfo ||  || Returns statistics about the unspent transaction output (UTXO) set || N&lt;br /&gt;
|-&lt;br /&gt;
| [[getwork]] || [data] || If [data] is not specified, returns formatted hash data to work on:&lt;br /&gt;
* &amp;quot;midstate&amp;quot; : precomputed hash state after hashing the first half of the data&lt;br /&gt;
* &amp;quot;data&amp;quot; : block data&lt;br /&gt;
* &amp;quot;hash1&amp;quot; : formatted hash buffer for second hash&lt;br /&gt;
* &amp;quot;target&amp;quot; : little endian hash target&lt;br /&gt;
If [data] is specified, tries to solve the block and returns true if it was successful. &lt;br /&gt;
|| N&lt;br /&gt;
|-&lt;br /&gt;
| help || [command] || List commands, or get help for a command. || N&lt;br /&gt;
|-&lt;br /&gt;
| importprivkey || &amp;lt;bitcoinprivkey&amp;gt; [label] [rescan=true]|| Adds a private key (as returned by dumpprivkey) to your wallet. This may take a while, as a [[How_to_import_private_keys#Import_Private_key.28s.29|rescan]] is done, looking for existing transactions. &#039;&#039;&#039;Optional [rescan] parameter added in 0.8.0.&#039;&#039;&#039; Note: There&#039;s no need to import public key, as in [[Elliptic_Curve_Digital_Signature_Algorithm|ECDSA]] (unlike RSA) this can be computed from private key. || Y&lt;br /&gt;
|-&lt;br /&gt;
| keypoolrefill || || Fills the keypool, requires wallet passphrase to be set. || Y&lt;br /&gt;
|-&lt;br /&gt;
| listaccounts || [minconf=1] || Returns Object that has account names as keys, account balances as values. || N&lt;br /&gt;
|-&lt;br /&gt;
| listaddressgroupings || || &#039;&#039;&#039;version 0.7&#039;&#039;&#039; Returns all addresses in the wallet and info used for coincontrol. || N&lt;br /&gt;
|-&lt;br /&gt;
| listreceivedbyaccount || [minconf=1] [includeempty=false] || Returns an array of objects containing:&lt;br /&gt;
* &amp;quot;account&amp;quot; : the account of the receiving addresses&lt;br /&gt;
* &amp;quot;amount&amp;quot; : total amount received by addresses with this account&lt;br /&gt;
* &amp;quot;confirmations&amp;quot; : number of confirmations of the most recent transaction included&lt;br /&gt;
|| N&lt;br /&gt;
|-&lt;br /&gt;
| listreceivedbyaddress || [minconf=1] [includeempty=false] || Returns an array of objects containing:&lt;br /&gt;
* &amp;quot;address&amp;quot; : receiving address&lt;br /&gt;
* &amp;quot;account&amp;quot; : the account of the receiving address&lt;br /&gt;
* &amp;quot;amount&amp;quot; : total amount received by the address&lt;br /&gt;
* &amp;quot;confirmations&amp;quot; : number of confirmations of the most recent transaction included&lt;br /&gt;
To get a list of accounts on the system, execute bitcoind listreceivedbyaddress 0 true&lt;br /&gt;
|| N&lt;br /&gt;
|-&lt;br /&gt;
| listsinceblock|| [blockhash] [target-confirmations] || Get all transactions in blocks since block [blockhash], or all transactions if omitted. [target-confirmations] intentionally &#039;&#039;&#039;does not&#039;&#039;&#039; affect the list of returned transactions, but only affects the returned &amp;quot;lastblock&amp;quot; value.[https://github.com/bitcoin/bitcoin/pull/199#issuecomment-1514952] || N&lt;br /&gt;
|-&lt;br /&gt;
| listtransactions || [account] [count=10] [from=0] || Returns up to [count] most recent transactions skipping the first [from] transactions for account [account]. If [account] not provided it&#039;ll return recent transactions from all accounts.&lt;br /&gt;
|| N&lt;br /&gt;
|-&lt;br /&gt;
| listunspent || [minconf=1] [maxconf=999999] || &#039;&#039;&#039;version 0.7&#039;&#039;&#039;  Returns array of unspent transaction inputs in the wallet. || N&lt;br /&gt;
|-&lt;br /&gt;
| listlockunspent || || &#039;&#039;&#039;version 0.8&#039;&#039;&#039; Returns list of temporarily unspendable outputs&lt;br /&gt;
|-&lt;br /&gt;
| lockunspent || &amp;lt;unlock?&amp;gt; [array-of-objects] || &#039;&#039;&#039;version 0.8&#039;&#039;&#039; Updates list of temporarily unspendable outputs&lt;br /&gt;
|-&lt;br /&gt;
| move || &amp;lt;fromaccount&amp;gt; &amp;lt;toaccount&amp;gt; &amp;lt;amount&amp;gt; [minconf=1] [comment] || Move from one account in your wallet to another || N&lt;br /&gt;
|-&lt;br /&gt;
| sendfrom || &amp;lt;fromaccount&amp;gt; &amp;lt;tobitcoinaddress&amp;gt; &amp;lt;amount&amp;gt; [minconf=1] [comment] [comment-to] || &amp;lt;amount&amp;gt; is a real and is rounded to 8 decimal places. Will send the given amount to the given address, ensuring the account has a valid balance using [minconf] confirmations. Returns the transaction ID if successful (not in JSON object). || Y&lt;br /&gt;
|-&lt;br /&gt;
| sendmany || &amp;lt;fromaccount&amp;gt; {address:amount,...} [minconf=1] [comment] || amounts are double-precision floating point numbers || Y&lt;br /&gt;
|-&lt;br /&gt;
| sendrawtransaction || &amp;lt;hexstring&amp;gt; || &#039;&#039;&#039;version 0.7&#039;&#039;&#039; Submits [[Raw Transactions|raw transaction]] (serialized, hex-encoded) to local node and network. || N&lt;br /&gt;
|-&lt;br /&gt;
| sendtoaddress || &amp;lt;bitcoinaddress&amp;gt; &amp;lt;amount&amp;gt; [comment] [comment-to] || &amp;lt;amount&amp;gt; is a real and is rounded to 8 decimal places. Returns the transaction ID &amp;lt;txid&amp;gt; if successful. || Y&lt;br /&gt;
|-&lt;br /&gt;
| setaccount || &amp;lt;bitcoinaddress&amp;gt; &amp;lt;account&amp;gt; || Sets the account associated with the given address. Assigning address that is already assigned to the same account will create a new address associated with that account. || N&lt;br /&gt;
|-&lt;br /&gt;
| setgenerate || &amp;lt;generate&amp;gt; [genproclimit] || &amp;lt;generate&amp;gt; is true or false to turn generation on or off.&amp;lt;br/&amp;gt;Generation is limited to [genproclimit] processors, -1 is unlimited. || N&lt;br /&gt;
|-&lt;br /&gt;
| settxfee || &amp;lt;amount&amp;gt; || &amp;lt;amount&amp;gt; is a real and is rounded to the nearest 0.00000001 || N&lt;br /&gt;
|-&lt;br /&gt;
| signmessage || &amp;lt;bitcoinaddress&amp;gt; &amp;lt;message&amp;gt; || Sign a message with the private key of an address. || Y&lt;br /&gt;
|-&lt;br /&gt;
| signrawtransaction || &amp;lt;hexstring&amp;gt; [{&amp;quot;txid&amp;quot;:txid,&amp;quot;vout&amp;quot;:n,&amp;quot;scriptPubKey&amp;quot;:hex},...] [&amp;lt;privatekey1&amp;gt;,...] || &#039;&#039;&#039;version 0.7&#039;&#039;&#039; Adds signatures to a [[Raw Transactions|raw transaction]] and returns the resulting raw transaction. || Y/N&lt;br /&gt;
|-&lt;br /&gt;
| stop || || Stop bitcoin server. || N&lt;br /&gt;
|-&lt;br /&gt;
| submitblock || &amp;lt;hex data&amp;gt; [optional-params-obj] || Attempts to submit new block to network. || N&lt;br /&gt;
|-&lt;br /&gt;
| validateaddress || &amp;lt;bitcoinaddress&amp;gt; || Return information about &amp;lt;bitcoinaddress&amp;gt;. || N&lt;br /&gt;
|-&lt;br /&gt;
| verifymessage || &amp;lt;bitcoinaddress&amp;gt; &amp;lt;signature&amp;gt; &amp;lt;message&amp;gt; || Verify a signed message. || N&lt;br /&gt;
|-&lt;br /&gt;
| walletlock ||  || Removes the wallet encryption key from memory, locking the wallet. After calling this method,  you will need to call walletpassphrase again before being able to call any methods which require the wallet to be unlocked. || N&lt;br /&gt;
|-&lt;br /&gt;
| walletpassphrase || &amp;lt;passphrase&amp;gt; &amp;lt;timeout&amp;gt; || Stores the wallet decryption key in memory for &amp;lt;timeout&amp;gt; seconds. || N&lt;br /&gt;
|-&lt;br /&gt;
| walletpassphrasechange || &amp;lt;oldpassphrase&amp;gt; &amp;lt;newpassphrase&amp;gt; || Changes the wallet passphrase from &amp;lt;oldpassphrase&amp;gt; to &amp;lt;newpassphrase&amp;gt;. || N&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Error Codes==&lt;br /&gt;
&lt;br /&gt;
See [https://github.com/bitcoin/bitcoin/blob/master/src/rpcprotocol.h#L34 rpcprotocol.h] for the list of error codes and their meanings.&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
&lt;br /&gt;
* [[Original Bitcoin client]]&lt;br /&gt;
* [[Running Bitcoin]]&lt;br /&gt;
* [[Protocol specification]]&lt;br /&gt;
* [[API reference (JSON-RPC)]]&lt;br /&gt;
* [[Lazy_API]]&lt;br /&gt;
* [[Elis-API]] - A more detailed version of this page - for developers!&lt;br /&gt;
* [http://code.gogulski.com/bitcoin-php/class_bitcoin_client.html PHP BitcoinClient Class Reference]&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&amp;lt;references /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Technical]]&lt;br /&gt;
[[Category:Developer]]&lt;/div&gt;</summary>
		<author><name>C0ldfusi0nz</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Research&amp;diff=52214</id>
		<title>Research</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Research&amp;diff=52214"/>
		<updated>2014-10-23T14:08:01Z</updated>

		<summary type="html">&lt;p&gt;C0ldfusi0nz: adding &amp;quot;Bitcoin over Tor isn’t a good idea&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Publications including research and analysis of Bitcoin or related areas.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
! Title&lt;br /&gt;
! Author&lt;br /&gt;
! width=150 | Type&lt;br /&gt;
! width=75 | Date&lt;br /&gt;
! Links&lt;br /&gt;
|-&lt;br /&gt;
| Cyberlaundering: Anonymous Digital Cash and Money Laundering&lt;br /&gt;
| R. Mark Bortner&lt;br /&gt;
| Research paper&lt;br /&gt;
| 1996&lt;br /&gt;
| [http://osaka.law.miami.edu/~froomkin/seminar/papers/bortner.htm Download]&lt;br /&gt;
|-&lt;br /&gt;
| Triple Entry Accounting&lt;br /&gt;
| Ian Grigg&lt;br /&gt;
| Research paper&lt;br /&gt;
| 2005-12-25&lt;br /&gt;
| [http://iang.org/papers/triple_entry.html Download]&lt;br /&gt;
|-&lt;br /&gt;
| [[Bitcoin_whitepaper|Bitcoin: A Peer-to-Peer Electronic Cash System]]&lt;br /&gt;
| [[Satoshi Nakamoto]]&lt;br /&gt;
| Research paper&lt;br /&gt;
| 2008-10-31&lt;br /&gt;
| [http://bitcoin.org/bitcoin.pdf Download]&lt;br /&gt;
|-&lt;br /&gt;
| An Analysis of Anonymity in the Bitcoin System&lt;br /&gt;
| Fergal Reid, Martin Harrigan&lt;br /&gt;
| Research paper&lt;br /&gt;
| 2011-07-22&lt;br /&gt;
| [http://arxiv.org/abs/1107.4524 Download], [http://bitcointalk.org/index.php?topic=31539.0 discussion]&lt;br /&gt;
|-&lt;br /&gt;
| Shadowy Figures: Tracking Illicit Financial Transactions in the Murky World of Digital Currencies, Peer–to–Peer Networks, and Mobile Device Payments&lt;br /&gt;
| John Villasenor, Cody Monk, Christopher Bronk&lt;br /&gt;
| Research paper&lt;br /&gt;
| 2011-08-29&lt;br /&gt;
| [http://www.bakerinstitute.org/publications/ITP-pub-FinancialTransactions-082911.pdf Download]&lt;br /&gt;
|-&lt;br /&gt;
| Bitcoin: An Innovative Alternative Digital Currency&lt;br /&gt;
| Reuben Grinberg&lt;br /&gt;
| Research paper&lt;br /&gt;
| 2011-12-09&lt;br /&gt;
| [http://papers.ssrn.com/sol3/papers.cfm?abstract_id=1817857 Download], [http://www.bitcointalk.org/index.php?topic=6247.0 discussion]&lt;br /&gt;
|-&lt;br /&gt;
| Bitcoin NFC&lt;br /&gt;
| David Allen Bronleewe&lt;br /&gt;
| Master&#039;s report&lt;br /&gt;
| 2011-08&lt;br /&gt;
| [http://repositories.lib.utexas.edu/bitstream/handle/2152/ETD-UT-2011-08-4150/BRONLEEWE-MASTERS-REPORT.pdf?sequence=1 Download], [http://code.google.com/p/bitcoin-nfc source code]&lt;br /&gt;
|-&lt;br /&gt;
| Optimal pool abuse strategy&lt;br /&gt;
| Raulo&lt;br /&gt;
| Research paper&lt;br /&gt;
| 2011-02-04&lt;br /&gt;
| [http://bitcoin.atspace.com/poolcheating.pdf Download], [http://www.bitcointalk.org/index.php?topic=3165.0 discussion]&lt;br /&gt;
|-&lt;br /&gt;
| Abusing Bitcoin cooperative mining pools: strategies for egoistical but honest miners&lt;br /&gt;
| Nakamoto Ryo&lt;br /&gt;
| Research paper&lt;br /&gt;
| 2011&lt;br /&gt;
| [http://www.bitcoinservice.co.uk/files/111 Download], [http://www.bitcointalk.org/index.php?topic=2941.0 discussion]&lt;br /&gt;
|-&lt;br /&gt;
| Analysis of Bitcoin Pooled Mining Reward Systems&lt;br /&gt;
| Meni Rosenfeld&lt;br /&gt;
| Research paper&lt;br /&gt;
| 2011-11-07&lt;br /&gt;
| [https://bitcoil.co.il/pool_analysis.pdf Download], [http://bitcointalk.org/index.php?topic=32814.0 discussion]&lt;br /&gt;
|-&lt;br /&gt;
| Bitcoin Exchange system&lt;br /&gt;
| Tomáš Jiříček&lt;br /&gt;
| Research paper&lt;br /&gt;
| 2012&lt;br /&gt;
| [https://dip.felk.cvut.cz/browse/pdfcache/jiricto2_2012bach.pdf Download]&lt;br /&gt;
|-&lt;br /&gt;
| On Bitcoin and Red Balloons&lt;br /&gt;
| Moshe Babaioff, Shahar Dobzinski, Sigal Oren, Aviv Zohar&lt;br /&gt;
| Publication article&lt;br /&gt;
| 2012&lt;br /&gt;
| [http://research.microsoft.com/pubs/156072/bitcoin.pdf Download]&lt;br /&gt;
|-&lt;br /&gt;
| 2011 Observations on the Digital Currency Industry&lt;br /&gt;
| Mark Herpel&lt;br /&gt;
| Publication article&lt;br /&gt;
| 2011&lt;br /&gt;
| [http://papers.ssrn.com/sol3/papers.cfm?abstract_id=1721076 Download]&lt;br /&gt;
|-&lt;br /&gt;
| MAVE, New Lightweight Digital Signature Protocols for Massive Verifications&lt;br /&gt;
| Sergio Demian Lerner&lt;br /&gt;
| Research paper (preliminary)&lt;br /&gt;
| 2012&lt;br /&gt;
| [http://bitslog.files.wordpress.com/2012/04/mave1.pdf Download]&lt;br /&gt;
|-&lt;br /&gt;
| MAVEPAY, a New Lightweight Payment Scheme for Peer to Peer Currency Networks&lt;br /&gt;
| Sergio Demian Lerner&lt;br /&gt;
| Research paper (preliminary)&lt;br /&gt;
| 2012&lt;br /&gt;
| [http://bitslog.files.wordpress.com/2012/04/mavepay1.pdf Download]&lt;br /&gt;
|-&lt;br /&gt;
| Bitcoin: Eine erste Einordnung (an initial classification)&lt;br /&gt;
| Christoph Sorge, Artus Krohn-Grimberghe&lt;br /&gt;
| Research paper&lt;br /&gt;
| 2012&lt;br /&gt;
| [http://www.springerlink.com/content/cw1v762571tr4462/ Download], [http://bitcointalk.org/index.php?topic=90233.0 discussion]&lt;br /&gt;
|-&lt;br /&gt;
| Bitcoin - an introduction to the workings and a preliminary analysis and understanding of potential legal issues&lt;br /&gt;
| Jean-Daniel Schmid, Alexander Schmid&lt;br /&gt;
| Article&lt;br /&gt;
| 2012&lt;br /&gt;
| [http://ef-r.ch/images/publications/1338882576_Bitcoin.pdf Download]&lt;br /&gt;
|-&lt;br /&gt;
| Secure multiparty Bitcoin anonymization&lt;br /&gt;
| Edward Z. Yang&lt;br /&gt;
| Article&lt;br /&gt;
| 2012&lt;br /&gt;
| [http://blog.ezyang.com/2012/07/secure-multiparty-bitcoin-anonymization/ Download], [http://www.reddit.com/r/Bitcoin/comments/wvm2w/secure_multiparty_bitcoin_anonymization/ discussion]&lt;br /&gt;
|-&lt;br /&gt;
| Bitcoin &amp;amp; Gresham&#039;s Law - the economic inevitability of Collapse&lt;br /&gt;
| Philipp Güring, Ian Grigg&lt;br /&gt;
| Article&lt;br /&gt;
| 2011&lt;br /&gt;
| [http://iang.org/papers/BitcoinBreachesGreshamsLaw.pdf Download]&lt;br /&gt;
|-&lt;br /&gt;
| Today Techies, Tomorrow the World? Bitcoin.&lt;br /&gt;
| Reuben Grinberg&lt;br /&gt;
| Article&lt;br /&gt;
| 2012&lt;br /&gt;
| [http://www.milkeninstitute.org/publications/review/2012_1/22-31MR53.pdf Download]&lt;br /&gt;
|-&lt;br /&gt;
| Traveling the Silk Road: A measurement analysis of a large anonymous online marketplace&lt;br /&gt;
| Nicolas Christin&lt;br /&gt;
| Research paper&lt;br /&gt;
| 2012&lt;br /&gt;
| [http://www.cylab.cmu.edu/files/pdfs/tech_reports/CMUCyLab12018.pdf Download]&lt;br /&gt;
|-&lt;br /&gt;
| CommitCoin: Carbon Dating Commitments with Bitcoin&lt;br /&gt;
| Jeremy Clark and Aleksander Essex&lt;br /&gt;
| Research paper&lt;br /&gt;
| 2012&lt;br /&gt;
| [http://people.scs.carleton.ca/~clark/papers/2012_fc.pdf Download extended abstract]&amp;lt;br /&amp;gt;[http://eprint.iacr.org/2011/677.pdf Download technical report]&lt;br /&gt;
|-&lt;br /&gt;
| Quantitative Analysis of the Full Bitcoin Transaction Graph&lt;br /&gt;
| Dorit Ron and Adi Shamir&lt;br /&gt;
| Research paper&lt;br /&gt;
| 2012&lt;br /&gt;
| [http://eprint.iacr.org/2012/584.pdf Download]&lt;br /&gt;
|-&lt;br /&gt;
| Design and security analysis of Bitcoin infrastructure using application deployed on Google Apps Engine&lt;br /&gt;
| Piotr &amp;quot;ThePiachu&amp;quot; Piasecki&lt;br /&gt;
| Master&#039;s thesis&lt;br /&gt;
| 2012&lt;br /&gt;
| [https://dl.dropbox.com/u/3658181/PiotrPiasecki-BitcoinMasterThesis.pdf Download], [https://bitcointalk.org/index.php?topic=88149.0 discussion]&lt;br /&gt;
|-&lt;br /&gt;
| The Production of Freedom: Value Production in the US- dominated Financial System, and Possible Alternatives&lt;br /&gt;
| Jeremy Kirshbaum&lt;br /&gt;
| Master&#039;s thesis (preliminary)&lt;br /&gt;
| 2012&lt;br /&gt;
| [https://docs.google.com/document/d/1JIyMWIibqH8x20vGBTMBZ2yqM7Xbp54UpWBh0o2H7WI/edit?pli=1 Download], [https://bitcointalk.org/index.php?topic=87404.0 discussion]&lt;br /&gt;
|-&lt;br /&gt;
| COIN: a distributed accounting system for peer to peer networks&lt;br /&gt;
| Fabio Varesano&lt;br /&gt;
| Bachelor&#039;s thesis&lt;br /&gt;
| 2012&lt;br /&gt;
| [http://www.varesano.net/contents/projects/coin%20distributed%20accounting%20system%20peer%20peer%20networks Download]&lt;br /&gt;
|-&lt;br /&gt;
| BITCOIN CLIENTS&lt;br /&gt;
| Rostislav Skudnov&lt;br /&gt;
| Bachelor&#039;s thesis&lt;br /&gt;
| 2012&lt;br /&gt;
| [http://publications.theseus.fi/bitstream/handle/10024/47166/Skudnov_Rostislav.pdf?sequence=1 Download]&lt;br /&gt;
|-&lt;br /&gt;
| Bitter to Better—How to Make Bitcoin a Better Currency&lt;br /&gt;
| Simon Barber, Xavier Boyen, Elaine Shi, Ersin Uzun&lt;br /&gt;
| Research paper&lt;br /&gt;
| 2012&lt;br /&gt;
| [http://crypto.stanford.edu/~xb/fc12/bitcoin.pdf Download]&lt;br /&gt;
|-&lt;br /&gt;
| NooShare: A decentralized ledger of shared computational resources&lt;br /&gt;
| Alex Coventry&lt;br /&gt;
| Research paper&lt;br /&gt;
| 2012&lt;br /&gt;
| [http://mit.edu/alex_c/www/nooshare.pdf Download]&lt;br /&gt;
|-&lt;br /&gt;
| Bits and Bets. Information, Price Volatility, and Demand for Bitcoin&lt;br /&gt;
| Martis Buchholz, Jess Delaney, Joseph Warren&lt;br /&gt;
| Final project&lt;br /&gt;
| 2012&lt;br /&gt;
| [http://academic.reed.edu/economics/parker/s12/312/finalproj/Bitcoin.pdf Download], [http://www.reddit.com/r/Bitcoin/comments/x7kop/economic_analysis_of_the_demand_for_bitcoin discussion], [https://bitcointalk.org/index.php?topic=96003.0 discussion]&lt;br /&gt;
|-&lt;br /&gt;
| Two Bitcoins at the Price of One? Double Spending attacks on Fast Payments in Bitcoin&lt;br /&gt;
| Ghassan O. Karame, Elli Androulaki, Srdjan Cap-kun &lt;br /&gt;
| Research paper&lt;br /&gt;
| 2012&lt;br /&gt;
| [http://eprint.iacr.org/2012/248 Download]&lt;br /&gt;
|-&lt;br /&gt;
| Nerdy Money: Bitcoin, the Private Digital Currency, and the Case Against Its Regulation&lt;br /&gt;
| Nikolei M. Kaplanov&lt;br /&gt;
| Research paper&lt;br /&gt;
| 2012&lt;br /&gt;
| [http://papers.ssrn.com/sol3/papers.cfm?abstract_id=2115203 Abstract]&lt;br /&gt;
|-&lt;br /&gt;
| Analysis of hashrate-based double-spending&lt;br /&gt;
| Meni Rosenfeld&lt;br /&gt;
| Research paper&lt;br /&gt;
| 2012&lt;br /&gt;
| [https://bitcoil.co.il/Doublespend.pdf Download]&lt;br /&gt;
|-&lt;br /&gt;
| Homomorphic Payment Addresses and the Pay-to-Contract Protocol&lt;br /&gt;
| Ilja Gerhardt, Timo Hanke&lt;br /&gt;
| Research Paper&lt;br /&gt;
| 2012&lt;br /&gt;
| [http://arxiv.org/pdf/1212.3257v1 Download] ([http://docs.google.com/viewer?url=http%3A%2F%2Farxiv.org%2Fpdf%2F1212.325qq7v1 via web viewer])&lt;br /&gt;
|-&lt;br /&gt;
| Quasi-Commodity Money (February 6, 2012). &amp;quot;This paper considers reform possibilities posed by a type of base money that has heretofore been overlooked in the literature on monetary economics.&amp;quot;&lt;br /&gt;
| George Selgin&lt;br /&gt;
| Working Papers Series&lt;br /&gt;
| 2012&lt;br /&gt;
| [http://ssrn.com/abstract=2000118 Download]&lt;br /&gt;
|-&lt;br /&gt;
| Virtual currency schemes - &amp;quot;This report is a first attempt to provide the basis for a discussion on virtual currency schemes.&amp;quot;&lt;br /&gt;
| European Central Bank&lt;br /&gt;
| Paper&lt;br /&gt;
| 2012&lt;br /&gt;
| [http://www.ecb.europa.eu/pub/pdf/other/virtualcurrencyschemes201210en.pdf Download]&lt;br /&gt;
|-&lt;br /&gt;
| Evaluating User Privacy in Bitcoin&lt;br /&gt;
| Elli Androulaki, Ghassan Karame, Marc Roeschlin, Tobias Scherer and Srdjan Capkun &lt;br /&gt;
| Paper&lt;br /&gt;
| 2013&lt;br /&gt;
| [http://fc13.ifca.ai/proc/1-3.pdf Download]  ([http://fc13.ifca.ai/slide/1-3.pdf Slides]) &lt;br /&gt;
|-&lt;br /&gt;
| Beware the Middleman: Empirical Analysis of Bitcoin-Exchange Risk&lt;br /&gt;
| Tyler Moore and Nicolas Christin &lt;br /&gt;
| Short Paper&lt;br /&gt;
| 2013&lt;br /&gt;
| [http://fc13.ifca.ai/proc/1-2.pdf Download]  ([http://fc13.ifca.ai/slide/1-2.pdf Slides]) &lt;br /&gt;
|-&lt;br /&gt;
| Bitcoin, Regulating Fraud In The E-Conomy Of Hacker-Cash&lt;br /&gt;
| Derek A. Dion&lt;br /&gt;
| Paper&lt;br /&gt;
| 2013&lt;br /&gt;
| [http://illinoisjltp.com/journal/wp-content/uploads/2013/05/Dion.pdf Download]&lt;br /&gt;
|-&lt;br /&gt;
| The practical materiality of Bitcoin&lt;br /&gt;
| Bill Maurera, Taylor C. Nelmsa &amp;amp; Lana Swartz &lt;br /&gt;
| Paper&lt;br /&gt;
| 2013&lt;br /&gt;
| [http://www.tandfonline.com/doi/full/10.1080/10350330.2013.777594#.UbbTVaD_6b4 Download]&lt;br /&gt;
|-&lt;br /&gt;
| Regulating Digital Currencies: Bringing Bitcoin within the Reach of the IMF&lt;br /&gt;
| Nicholas Plassaras &lt;br /&gt;
| Paper&lt;br /&gt;
| 2013&lt;br /&gt;
| [https://papers.ssrn.com/sol3/papers.cfm?abstract_id=2248419 Download]&lt;br /&gt;
|-&lt;br /&gt;
| Bitcoin is Memory&lt;br /&gt;
| William J. Luther, Josiah Olson &lt;br /&gt;
| Paper&lt;br /&gt;
| 2013&lt;br /&gt;
| [http://papers.ssrn.com/sol3/papers.cfm?abstract_id=2275730 Download]&lt;br /&gt;
|-&lt;br /&gt;
| The Economics of Bitcoin Mining or, Bitcoin in the Presence of Adversaries&lt;br /&gt;
| Joshua A. Kroll, Ian C. Davey, and Edward W. Felten &lt;br /&gt;
| Paper&lt;br /&gt;
| 2013&lt;br /&gt;
| [http://www.weis2013.econinfosec.org/papers/KrollDaveyFeltenWEIS2013.pdf Download]&lt;br /&gt;
|-&lt;br /&gt;
| Bitcoin: A Primer for Policymakers&lt;br /&gt;
| Jerry Brito, Andrea Castillo&lt;br /&gt;
| Research paper&lt;br /&gt;
| 2013&lt;br /&gt;
| [http://mercatus.org/publication/bitcoin-primer-policymakers Abstract] [http://mercatus.org/sites/default/files/Brito_BitcoinPrimer.pdf Download]&lt;br /&gt;
|-&lt;br /&gt;
| Whack-a-Mole: Prosecuting Digital Currency Exchanges&lt;br /&gt;
| Catherine Martin Christopher &lt;br /&gt;
| Research paper&lt;br /&gt;
| 2013&lt;br /&gt;
| [http://papers.ssrn.com/sol3/papers.cfm?abstract_id=2312787 Abstract]&lt;br /&gt;
[http://papers.ssrn.com/sol3/Delivery.cfm/SSRN_ID2312787_code1372021.pdf?abstractid=2312787&amp;amp;mirid=2 Download]&lt;br /&gt;
|-&lt;br /&gt;
| Are Cryptocurrencies &#039;Super&#039; Tax Havens?&lt;br /&gt;
| Omri Y. Marian&lt;br /&gt;
| Research paper&lt;br /&gt;
| 2013&lt;br /&gt;
| [http://papers.ssrn.com/sol3/papers.cfm?abstract_id=2305863 Abstract]&lt;br /&gt;
[http://papers.ssrn.com/sol3/Delivery.cfm/SSRN_ID2316499_code592645.pdf?abstractid=2305863&amp;amp;mirid=1 Download]&lt;br /&gt;
|-&lt;br /&gt;
| Collective Emergent Institutional Entrepreneurship Through Bitcoin&lt;br /&gt;
| Robin Teigland, Zeynep Yetis and Tomas Olov Larsson &lt;br /&gt;
| Research paper&lt;br /&gt;
| 2013&lt;br /&gt;
| [http://papers.ssrn.com/sol3/papers.cfm?abstract_id=2263707 Abstract]&lt;br /&gt;
[http://papers.ssrn.com/sol3/Delivery.cfm/SSRN_ID2263707_code2053543.pdf?abstractid=2263707&amp;amp;mirid=1 Download]&lt;br /&gt;
|-&lt;br /&gt;
| Anonymity of Bitcoin Transactions&lt;br /&gt;
| Malte Möser&lt;br /&gt;
| Research paper&lt;br /&gt;
| 2013&lt;br /&gt;
| [https://www.wi.uni-muenster.de/sites/default/files/public/department/itsecurity/mbc13/mbc13-moeser-paper.pdf Download]&lt;br /&gt;
|-&lt;br /&gt;
| On the origins of Bitcoin: Stages of monetary evolution&lt;br /&gt;
| Konrad S. Graf &lt;br /&gt;
| Research paper&lt;br /&gt;
| 2013&lt;br /&gt;
| [http://konradsgraf.com/blog1/2013/10/23/on-the-origins-of-bitcoin-my-new-work-on-bitcoin-and-monetar.html Abstract]&lt;br /&gt;
[http://konradsgraf.com/storage/On%20the%20Origins%20of%20Bitcoin%20Graf%2023.10.13.pdf Download]&lt;br /&gt;
|-&lt;br /&gt;
| Majority is not Enough: Bitcoin Mining is Vulnerable&lt;br /&gt;
| Ittay Eyal and Emin Gun Sirer&lt;br /&gt;
| Research paper&lt;br /&gt;
| 2013&lt;br /&gt;
| [http://arxiv.org/abs/1311.0243 Abstract]&lt;br /&gt;
[http://arxiv.org/pdf/1311.0243v1 Download]&lt;br /&gt;
|-&lt;br /&gt;
| Bitcoin, the end of the Taboo on Money&lt;br /&gt;
| Denis Roio aka Jaromil&lt;br /&gt;
| Humanities article&lt;br /&gt;
| 2013&lt;br /&gt;
| [http://www.dyndy.net/2013/04/bitcoin-ends-the-taboo-on-money/ Abstract]&lt;br /&gt;
[https://files.dyne.org/readers/Bitcoin_end_of_taboo_on_money.pdf Download]&lt;br /&gt;
|-&lt;br /&gt;
| Secure Multiparty Computations on BitCoin&lt;br /&gt;
| Marcin Andrychowicz, Stefan Dziembowski, Daniel Malinowski and Łukasz Mazurek University of Warsaw &lt;br /&gt;
| Research paper&lt;br /&gt;
| 2013&lt;br /&gt;
| [http://eprint.iacr.org/2013/784 Abstract]&lt;br /&gt;
[http://eprint.iacr.org/eprint-bin/cite.pl?entry=2013/784 BibTeX]&lt;br /&gt;
[http://eprint.iacr.org/2013/784.pdf Download]&lt;br /&gt;
|-&lt;br /&gt;
| A Fistful of Bitcoins: Characterizing Payments Among Men with No Names&lt;br /&gt;
| Sarah Meiklejohn, Marjori Pomarole, Grant Jordan, Kirill Levchenko, Damon McCoy, Geoffrey M. Voelker, Stefan Savage&lt;br /&gt;
| Research paper&lt;br /&gt;
| 2013&lt;br /&gt;
| &lt;br /&gt;
[http://www.cs.gmu.edu/~mccoy/papers/imc13.pdf Download]&lt;br /&gt;
|-&lt;br /&gt;
| Information Propagation in the Bitcoin Network&lt;br /&gt;
| Christian Decker (ETH Zurich, Switzerland), Roger Wattenhofer (Microsoft Research)&lt;br /&gt;
| Research paper&lt;br /&gt;
| 2013&lt;br /&gt;
| &lt;br /&gt;
[http://www.tik.ee.ethz.ch/file/49318d3f56c1d525aabf7fda78b23fc0/P2P2013_041.pdf Download]&lt;br /&gt;
|-&lt;br /&gt;
| Have a Snack, Pay with Bitcoins&lt;br /&gt;
| Tobias Bamert, Christian Decker, Lennart Elsen, Roger Wattenhofer, Samuel Welten&lt;br /&gt;
| Research paper&lt;br /&gt;
| 2013&lt;br /&gt;
| &lt;br /&gt;
[http://www.tik.ee.ethz.ch/file/848064fa2e80f88a57aef43d7d5956c6/P2P2013_093.pdf Download]&lt;br /&gt;
|-&lt;br /&gt;
| The Economics of Private Digital Currency&lt;br /&gt;
| Gerald P Dwyer&lt;br /&gt;
| Research paper&lt;br /&gt;
| 2014&lt;br /&gt;
| [http://mpra.ub.uni-muenchen.de/55824/ Abstract]&lt;br /&gt;
[http://mpra.ub.uni-muenchen.de/55824/1/MPRA_paper_55824.pdf Download]&lt;br /&gt;
|-&lt;br /&gt;
| The Origin, Classification and Utility of Bitcoin&lt;br /&gt;
| Peter Šurda &lt;br /&gt;
| Research Paper&lt;br /&gt;
| 2014&lt;br /&gt;
| [http://papers.ssrn.com/sol3/papers.cfm?abstract_id=2436823 Abstract]&lt;br /&gt;
|-&lt;br /&gt;
| Deanonymisation of clients in Bitcoin P2P network&lt;br /&gt;
| Alex Biryukov, Dmitry Khovratovich and Ivan Pustogarov&lt;br /&gt;
| Research Paper&lt;br /&gt;
| 2014&lt;br /&gt;
| [http://arxiv.org/abs/1405.7418 Abstract] [http://arxiv.org/pdf/1405.7418v2.pdf Download]&lt;br /&gt;
|-&lt;br /&gt;
| Bitcoin Financial Regulation: Securities, Derivatives, Prediction Markets, &amp;amp; Gambling&lt;br /&gt;
| Jerry Brito, Houman B. Shadab, Andrea Castillo&lt;br /&gt;
| Research Paper&lt;br /&gt;
| 2014&lt;br /&gt;
| [http://papers.ssrn.com/sol3/papers.cfm?abstract_id=2423461 Abstract] [http://papers.ssrn.com/sol3/Delivery.cfm/SSRN_ID2426195_code510873.pdf?abstractid=2423461&amp;amp;mirid=1 Download]&lt;br /&gt;
|-&lt;br /&gt;
| What are the main drivers of the Bitcoin price?&lt;br /&gt;
| Ladislav Kristoufek&lt;br /&gt;
| Research Paper&lt;br /&gt;
| 2014&lt;br /&gt;
| [http://arxiv.org/pdf/1406.0268v1.pdf Download]&lt;br /&gt;
|-&lt;br /&gt;
| The Economics of Bitcoin&lt;br /&gt;
| Andre Herman&lt;br /&gt;
| Bachelor&#039;s thesis&lt;br /&gt;
| 2014&lt;br /&gt;
| [http://www.scribd.com/doc/231964435/The-Economics-of-Bitcoin Download]&lt;br /&gt;
|-&lt;br /&gt;
| Near Zero Bitcoin Transaction Fees Cannot Last Forever&lt;br /&gt;
| Kerem Kaşkaloğlu&lt;br /&gt;
| Research Paper&lt;br /&gt;
| 2014&lt;br /&gt;
| [http://sdiwc.net/digital-library/near-zero-bitcoin-transaction-fees-cannot-last-forever.html Abstract] [http://sdiwc.net/digital-library/request.php?article=96cd6f6067fcbaf5e3947d071aa688fb Download]&lt;br /&gt;
|-&lt;br /&gt;
| Is Bitcoin Money?&lt;br /&gt;
| Ísak Andri Ólafsson&lt;br /&gt;
| Thesis Paper&lt;br /&gt;
| 2014&lt;br /&gt;
| [http://skemman.is/en/item/view/1946/18234 Abstract] [http://skemman.is/en/stream/get/1946/18234/42843/1/MS_%C3%8Dsak_Andri_%C3%93lafsson.pdf Download]&lt;br /&gt;
|-&lt;br /&gt;
| The (A)Political Economy of Bitcoin&lt;br /&gt;
| Vasilis Kostakis and Chris Giotitsas&lt;br /&gt;
| Essay&lt;br /&gt;
| 2014&lt;br /&gt;
| [http://www.triple-c.at/index.php/tripleC/article/view/606/578 HTML] [http://www.triple-c.at/index.php/tripleC/article/download/606/562 Download]&lt;br /&gt;
|-&lt;br /&gt;
| When your sensor earns money: exchanging data for cash with Bitcoin&lt;br /&gt;
| Dominic Wörner and Thomas von Bomhard&lt;br /&gt;
| Research&lt;br /&gt;
| 2014&lt;br /&gt;
| [http://dl.acm.org/citation.cfm?id=2638786 Abstract] [http://dl.acm.org/ft_gateway.cfm?id=2638786&amp;amp;ftid=1500778&amp;amp;dwn=1&amp;amp;CFID=579517323&amp;amp;CFTOKEN=37552107 Download]&lt;br /&gt;
|-&lt;br /&gt;
| Bitcoin Transaction Malleability and MtGox &lt;br /&gt;
| Christian Decker, Roger Wattenhofer&lt;br /&gt;
| Research&lt;br /&gt;
| 2014&lt;br /&gt;
| [http://www.tik.ee.ethz.ch/file/7e4a7f3f2991784786037285f4876f5c/malleability.pdf Download]&lt;br /&gt;
|-&lt;br /&gt;
| BlueWallet: The Secure Bitcoin Wallet&lt;br /&gt;
| Tobias Bamert, Christian Decker, Roger Wattenhofer and Samuel Welten&lt;br /&gt;
| Research&lt;br /&gt;
| 2014&lt;br /&gt;
| [http://www.tik.ee.ethz.ch/file/0c347a9a3803cb937d360cba511e5019/stm2014_submission_12.pdf Download]&lt;br /&gt;
|-&lt;br /&gt;
| Bitcoin over Tor isn’t a good idea&lt;br /&gt;
| Alex Biryukov and Ivan Pustogarov&lt;br /&gt;
| Research&lt;br /&gt;
| 2014&lt;br /&gt;
| [http://arxiv.org/pdf/1410.6079v1.pdf Download]&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
&lt;br /&gt;
* [http://www.opencryptocurrencyreview.com/ OpenCryptocurrencyReview - A repository of Bitcoin and related research]&lt;br /&gt;
* [http://people.scs.carleton.ca/~clark/biblio.html Jeremy Clark&#039;s Bitcoin Bibliography]&lt;br /&gt;
* [[:Category:Economics|Economic]]&lt;br /&gt;
* [[:Category:Technical|Technical]]&lt;br /&gt;
* [[Press]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Research]]&lt;/div&gt;</summary>
		<author><name>C0ldfusi0nz</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Mt._Gox&amp;diff=49795</id>
		<title>Mt. Gox</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Mt._Gox&amp;diff=49795"/>
		<updated>2014-08-12T17:58:14Z</updated>

		<summary type="html">&lt;p&gt;C0ldfusi0nz: /* Bankruptcy and shutdown */ remove link to nonexistant article&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{outdated}}{{infobox company|name=MtGox|image=[[File:MtGox.png|256px]]&lt;br /&gt;
|trading_name=Mt. Gox&lt;br /&gt;
|industry=[[Exchange|Fiat exchange]]&lt;br /&gt;
|foundation=July 18, 2010&lt;br /&gt;
|defunct=February 25, 2014&lt;br /&gt;
|location=Shibuya, Tokyo, Japan&lt;br /&gt;
|founder=[[Jed McCaleb]]&lt;br /&gt;
|owner=[[Mark Karpeles]]&lt;br /&gt;
|parent=[[Tibanne Ltd.]]&lt;br /&gt;
|pairs=USD/BTC&amp;lt;br/&amp;gt;EUR/BTC&amp;lt;br/&amp;gt;CAD/BTC&amp;lt;br/&amp;gt;GBP/BTC&amp;lt;br/&amp;gt;CHF/BTC&amp;lt;br/&amp;gt;RUB/BTC&amp;lt;br/&amp;gt;AUD/BTC&amp;lt;br/&amp;gt;SEK/BTC&amp;lt;br/&amp;gt;DKK/BTC&amp;lt;br/&amp;gt;HKD/BTC&amp;lt;br/&amp;gt;PLN/BTC&amp;lt;br/&amp;gt;CNY/BTC&amp;lt;br/&amp;gt;SGD/BTC&amp;lt;br/&amp;gt;TBH/BTC&amp;lt;br/&amp;gt;NZD/BTC&amp;lt;br/&amp;gt;JPY/BTC&lt;br /&gt;
|website=https://mtgox.com&lt;br /&gt;
}}&#039;&#039;&#039;MtGox&#039;&#039;&#039;, called &amp;quot;Mount Gox&amp;quot; or simply &amp;quot;Gox&amp;quot;, was the most widely used bitcoin [[currency exchange]] market from 2010-2013&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. The market was closed February 25, 2014.&lt;br /&gt;
&lt;br /&gt;
A registrant on MtGox had at least two sub-accounts: one for bitcoins (BTC), and one for US dollars (USD or MTGUSD) or other national currency. Bitcoins were bought using funds from the trader&#039;s national currency account, and the proceeds from the sale of bitcoins were deposited into the same account. Trading always involved bitcoins as trading between different national currencies was not offered.&lt;br /&gt;
&lt;br /&gt;
Trades on Mt. Gox&#039;s executed from balances on deposit with the exchange which in turn made trading on the market instantaneous, compared to most other Bitcoin markets of the time where a subsequent settlement occurred manually between the trading partners. The disadvantage of this was that a third party had to 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 was 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;
A buy order was executed partially or in full when the price bid could be matched against a sell order that was at or below the bid amount.  A sell order was executed partially or in full when the price asked could be matched against a buy order that was at or above the ask amount.  Orders that could not be matched immediately remain in the orderbook.&lt;br /&gt;
&lt;br /&gt;
Unfunded orders did not appear in the order book, but were automatically inserted when a deposit was credited.  For example, Mt. Gox allowed the entry of a &amp;quot;buy&amp;quot; order even if the account had insufficient funds.  If possible, Mt. Gox would execute a portion of the order if it could be partially funded.  If a deposit was later credited and the deposit resolves the insufficient funds status of an outstanding order, the order would be immediately activated, and if possible, executed.&lt;br /&gt;
&lt;br /&gt;
===Fees===&lt;br /&gt;
&lt;br /&gt;
Mt. Gox charged a trading fee of up to 0.6% from each party of successful trades made through the market.  The fee appeared in the account history next to each trade.  The trading fee was discounted for larger customers based on volume, which was calculated as a sliding window over the last 720 hours (30 days).&lt;br /&gt;
&lt;br /&gt;
The fees were, 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 would 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 were no fees incurred when transferring bitcoins to a Mt. Gox account.&lt;br /&gt;
&lt;br /&gt;
Funds were 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 could take roughly an hour.&lt;br /&gt;
&lt;br /&gt;
The deposit address was presented along with a QR code that can be scanned with a mobile.  This address did not change with each deposit request.&lt;br /&gt;
&lt;br /&gt;
The Add Bitcoins function experienced issues with some browser ad-blocking utilities even though no advertisements were 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;) could be deposited and would be available for trading.&lt;br /&gt;
&lt;br /&gt;
===OKPay===&lt;br /&gt;
&lt;br /&gt;
[[OKPay]] could 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) could 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) could be deposited using Boleto or through Banco Recomendito.&lt;br /&gt;
&lt;br /&gt;
====Brazil (BRL)====&lt;br /&gt;
* BitInstant - Cash (Russian rubles) could be deposited using QIWI or Cyberplat&lt;br /&gt;
&lt;br /&gt;
====UK (GBP)====&lt;br /&gt;
* Barclays - Cash (British pound sterling) could be deposited at any Barclays location.  There was 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 could 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 could be added using SEPA Direct Debit for free, with funds convert to USD at the current ECB rate at the time the funds were 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 could be sent as a GBP direct deposit free of charge.&lt;br /&gt;
&lt;br /&gt;
====Australia====&lt;br /&gt;
&lt;br /&gt;
Funds could 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 were counted toward this limit as well and the USD value was 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 could 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]] was among the fastest and least expensive methods for withdrawing USD funds from a Mt. Gox account. The transaction fee to do so was just $0.25.&lt;br /&gt;
[[Dwolla]] withdrawals were 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 was running checks to see if the transfer can be executed.&lt;br /&gt;
* Confirmed: Transfer could be executed and was pending in queue.&lt;br /&gt;
* Todo: Transfer was 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 could be withdrawn at no charge.&lt;br /&gt;
&lt;br /&gt;
A [[green address]] option was available though this type of transaction could experience a delay if the exchange&#039;s wallet funding level for green address transactions was 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 was currently no option for withdrawing funds through a direct deposit bank transaction.  Funds withdrawn to Dwolla could 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;
Users could withdraw any amount as a direct deposit to their bank.  There was 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) was subtracted and the remaining amount was sent via international wire in the chosen currency. If not AUD then an exchange fee of 2.5% would 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 was to place a request through the exchange&#039;s [https://mtgox.zendesk.com help desk].  Another method was 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 were configured independently.&lt;br /&gt;
&lt;br /&gt;
For example, a typical configuration was 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 were 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) was 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 was 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 was 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 could accept bitcoins for payment using the Mt. Gox&#039;s E-commerce Solution, which was 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;
===Trading incidents===&lt;br /&gt;
On 19 June 2011, a security breach of the Mt. Gox bitcoin exchange caused the nominal price of a bitcoin to fraudulently drop to one cent on the Mt. Gox exchange, after a hacker allegedly used credentials from a Mt. Gox auditor&#039;s compromised computer illegally to fabricate a large number of bitcoins for himself. He used the exchange&#039;s software to sell them all nominally, creating a massive &amp;quot;[[Ask price|ask]]&amp;quot; order at any price. The price eventually corrected to its correct user-traded value.&amp;lt;ref&amp;gt;{{cite press release | last=Karpeles | first=Mark | title=Clarification of Mt Gox Compromised Accounts and Major Bitcoin Sell-Off | date=30 June 2011 | url=https://mtgox.com/press_release_20110630.html | publisher=Tibanne Co. Ltd. | archiveurl=https://web.archive.org/web/20110919162635/https://mtgox.com/press_release_20110630.html | archivedate=19 September 2014 }}&amp;lt;/ref&amp;gt;&amp;lt;ref&amp;gt;{{cite AV media|people= |date= 19 June 2011 |time= |medium= |url= http://www.youtube.com/watch?v=T1X6qQt9ONg |accessdate= |archiveurl= |archivedate= |title= Bitcoin Report Volume 8 - (FLASHCRASH) |publisher=YouTube BitcoinChannel |id= |quote= |ref= }}&amp;lt;/ref&amp;gt;&amp;lt;ref name=&amp;quot;mick&amp;quot;&amp;gt;{{cite news|last= Mick |first= Jason |title= Inside the Mega-Hack of Bitcoin: the Full Story |date= 19 June 2011 |url= http://www.dailytech.com/Inside+the+MegaHack+of+Bitcoin+the+Full+Story/article21942.htm | work=DailyTech }}&amp;lt;/ref&amp;gt;&amp;lt;ref&amp;gt;{{cite news | first=Timothy B.|last=Lee |date=19 June 2011 | url=http://arstechnica.com/tech-policy/news/2011/06/bitcoin-price-plummets-on-compromised-exchange.ars | title=Bitcoin prices plummet on hacked exchange | work=Ars Technica | publisher=[[Condé Nast]] }}&amp;lt;/ref&amp;gt;&amp;lt;ref&amp;gt;Mark Karpeles, 20 June 2011, [http://bitgear.co/blogs/news/13602537-huge-bitcoin-sell-off-due-to-a-compromised-account-rollback Huge Bitcoin sell off due to a compromised account – rollback], Mt. Gox Support&amp;lt;/ref&amp;gt;&amp;lt;ref name=&amp;quot;register1&amp;quot;&amp;gt;{{cite news|title= Bitcoin collapses on malicious trade – Mt Gox scrambling to raise the Titanic |url= http://www.theregister.co.uk/2011/06/19/bitcoin_values_collapse_again/ |date=19 June 2011 |author= Chirgwin, Richard | work=The Register }}&amp;lt;/ref&amp;gt; Accounts with the equivalent of more than $8,750,000 were affected.&amp;lt;ref name=&amp;quot;mick&amp;quot; /&amp;gt; In order to prove that Mt.Gox still had control of the coins, the move of 424,242 bitcoins from &amp;quot;cold storage&amp;quot; to a Mt.Gox address was announced beforehand and executed in Block 132749.&amp;lt;ref&amp;gt;http://blockexplorer.com/b/132749&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In October 2011, about two dozen transactions appeared in the block chain (Block 150951)&amp;lt;ref&amp;gt;http://blockexplorer.com/b/150951&amp;lt;/ref&amp;gt; that sent a total of 2,609 BTC to invalid scripts. As they were impossible to satisfy/redeem, these Bitcoins were effectively lost.&lt;br /&gt;
&lt;br /&gt;
On 22 February 2013, following an introduction of new anti-money laundering requirements by [[Dwolla]], some Dwolla accounts became temporarily restricted. As a result, transactions from Mt. Gox to those accounts were cancelled by Dwolla. The funds never made it back to Mt. Gox accounts. Mt. Gox help desk issued the following comment: &amp;quot;Please be advised that you are actually not allowed to cancel any withdrawals received from Mt. Gox as we have never had this case before and we are working with Dwolla to locate your returned funds.&amp;quot; The funds were finally returned on May 3, more than 3 months later, with a note &amp;quot;Please be advised never to cancel any Dwolla withdrawals from us again&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
In March 2013, the new 0.8.0 version of Bitcoin Core temporarily forked off the main blockchain using differing rules on how transactions could be accepted. The Mt. Gox bitcoin exchange briefly halted bitcoin deposits. Bitcoin prices briefly dipped by 23% to $37 as the event occurred&amp;lt;ref name=ArsFork&amp;gt;{{cite news|last=Lee|first=Timothy|title=Major glitch in Bitcoin network sparks sell-off; price temporarily falls 23%|url=http://arstechnica.com/business/2013/03/major-glitch-in-bitcoin-network-sparks-sell-off-price-temporarily-falls-23/|work=Ars Technica| publisher=[[Condé Nast]]|accessdate=12 March 2013}}&amp;lt;/ref&amp;gt;&amp;lt;ref name=VergeFork&amp;gt;{{cite news|last=Blagdon|first=Jeff|title=Technical problems cause Bitcoin to plummet from record high, Mt. Gox suspends deposits|url=http://www.theverge.com/2013/3/12/4092898/technical-problems-cause-bitcoin-to-plummet-from-record-high|work=The Verge|accessdate=12 March 2013}}&amp;lt;/ref&amp;gt; before recovering to their previous level in the following hours, a price of approximately $48.&amp;lt;ref&amp;gt;{{cite web| title=Bitcoin Charts | work=Bitcoin Charts | url=http://bitcoincharts.com/charts/mtgoxUSD#rg60zczsg2013-03-12zeg2013-03-15ztgSzm1g10zm2g25zv}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Suspension of trading 2013===&lt;br /&gt;
Mt. Gox suspended trading on 11 April 2013 until 12 April 2013 2 am UTC for a &amp;quot;market cooldown&amp;quot;.&amp;lt;ref&amp;gt;{{cite web|url=https://twitter.com/MtGox/status/322355614414147588 |title=Twitter / MtGox: Trading is suspended until |publisher=Twitter.com |date= |accessdate=2014-02-17}}{{dead link|date=February 2014}}&amp;lt;/ref&amp;gt; The value of a single bitcoin fell to a low of $55.59 after the resumption of trading before stabilizing above $100. Around mid May 2013, Mt. Gox traded 150,000 bitcoins per day per Bitcoin Charts.&amp;lt;ref name=titan /&amp;gt; &lt;br /&gt;
&lt;br /&gt;
Mt. Gox suspended withdrawals in US dollars on June 20, 2013.&amp;lt;ref&amp;gt;{{cite news | title=Bitcoin’s Big Bank Problem: Why Did Mt. Gox Halt U.S. Payouts? | url=http://www.wired.com/wiredenterprise/2013/06/mt-gox-stops/ | last=McMillan|first=Robert | work=Wired | publisher=[[Condé Nast]] | date=20 June 2013}}&amp;lt;/ref&amp;gt;  The Mizuho Bank branch in Tokyo that handled Mt. Gox transactions pressured Mt. Gox from then on to close its account.&amp;lt;ref name=titan /&amp;gt;  On July 4, 2013, Mt. Gox announced that it had &amp;quot;fully resumed&amp;quot; withdrawals, but as of September 5, 2013, few US dollar withdrawals had been successfully completed.&amp;lt;ref&amp;gt;{{cite news | url=http://blogs.wsj.com/moneybeat/2013/07/05/bitcoin-operator-mt-gox-resumes-withdrawals/ |&lt;br /&gt;
title=Bitcoin operator Mt. Gox resumes withdrawals |&lt;br /&gt;
last=Vigna|first=Paul |&lt;br /&gt;
date=5 July 2013 |&lt;br /&gt;
work=The Wall Street Journal}}&amp;lt;/ref&amp;gt;&amp;lt;ref&amp;gt;{{cite news |&lt;br /&gt;
url=http://blogs.wsj.com/moneybeat/2013/07/30/bitcoin-exchange-mt-gox-still-grappling-with-slowdown/ |&lt;br /&gt;
title=Bitcoin exchange Mt. Gox still grappling with slowdown |&lt;br /&gt;
last=Vigna|first=Paul |&lt;br /&gt;
date=31 July 2013 |&lt;br /&gt;
work=The Wall Street Journal}}&amp;lt;/ref&amp;gt;&amp;lt;ref&amp;gt;{{cite news |&lt;br /&gt;
url=http://www.forbes.com/sites/beltway/2013/09/03/how-bitcoin-spreads-violate-a-fundamental-economic-law/ |&lt;br /&gt;
work=Forbes |&lt;br /&gt;
date=3 September 2013 |&lt;br /&gt;
title=How Bitcoin spreads violate a fundamental economic law |&lt;br /&gt;
author=Marron, Donald}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
On August 5, 2013, Mt. Gox announced that they incurred &amp;quot;significant losses&amp;quot; due to crediting deposits which had not fully cleared and that new deposits would no longer be credited until the funds transfer was fully completed.&amp;lt;ref&amp;gt;{{cite press release | title=August 2013 Mt. Gox Status Update | publisher=Mt. Gox Co. Ltd. | date=5 August 2013 | url=https://www.mtgox.com/press_release_20130805.html | archiveurl=https://web.archive.org/web/20130805084259/https://www.mtgox.com/press_release_20130805.html | archivedate=5 August 2013}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===CoinLab lawsuit and Homeland Security seizure of US funds===&lt;br /&gt;
On 2 May 2013 CoinLab filed a $75 million lawsuit against Mt. Gox alleging a breach of contract.&amp;lt;ref name=chen2013&amp;gt;{{cite news|last=Chen | first=Adrian | work=Gawker Media | date=2 May 2013 | title=Massive Bitcoin Business Partnership Devolves Into $75 Million Lawsuit|url=http://gawker.com/massive-bitcoin-business-partnership-devolves-into-75-487857656|accessdate=8 June 2013}}&amp;lt;/ref&amp;gt; The companies had formed a partnership in February 2013 under which CoinLab handled all of Mt. Gox&#039;s North American services.&amp;lt;ref name=chen2013/&amp;gt; CoinLab&#039;s lawsuit contends that Mt. Gox failed to allow them to move existing U.S. and Canadian customers from Mt. Gox to CoinLab.&amp;lt;ref name=chen2013/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
On 15 May 2013 the US Department of Homeland Security (DHS) issued a warrant to seize money from Mt. Gox&#039;s US subsidiary&#039;s account with payment processor [[Dwolla]].&amp;lt;ref name=dillet2013/&amp;gt; The warrant suggests the US Immigration and Customs Enforcement, an investigative branch of the DHS, felt that the subsidiary, which was not licensed by the US Financial Crimes Enforcement Network (FinCEN), was operating as an unregistered money transmitter in the US.&amp;lt;ref name=dillet2013&amp;gt;{{cite news|last=Dillet|first=Romain|title=Feds Seize Assets From Mt. Gox’s Dwolla Account, Accuse It Of Violating Money Transfer Regulations | work=TechCrunch | publisher=[[AOL|AOL Inc.]] | date=16 May 2013 | url=http://techcrunch.com/2013/05/16/mt-gox-dwolla-account-money-seizure/ | accessdate=10 February 2014 }}&amp;lt;/ref&amp;gt;&amp;lt;ref name=msblic&amp;gt;{{ cite news | title=MtGox Gets FinCEN MSB License | work=Bitcoin Magazine | publisher=Coin Publishing Ltd. | first=Vitalik | last=Buterin | date=29 June 2013 | url=http://bitcoinmagazine.com/5560/mtgox-gets-fincen-msb-license/ | accessdate=10 February 2014}}&amp;lt;/ref&amp;gt; Between May and July more than $5 million were seized. &amp;lt;ref name=titan /&amp;gt; On 29 June 2013, Mt. Gox received its money services business (MSB) license from FinCEN.&amp;lt;ref name=msblic/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Withdrawals delayed or refused===&lt;br /&gt;
&#039;&#039;Wired Magazine&#039;&#039; reported in November 2013 that customers were experiencing delays of weeks to months in withdrawing funds from their accounts.&amp;lt;ref name=mcmillan2013&amp;gt;{{cite news | title=The rise and fall of the world&#039;s largest Bitcoin exchange | last1=McMillan | first1=Robert | last2=Metz | first2=Cade | work=Wired | publisher=[[Condé Nast]] | date=6 November 2013 | url=http://www.wired.com/wiredenterprise/2013/11/mtgox/ | accessdate=8 February 2014 }}&amp;lt;/ref&amp;gt; The article said that the company had “effectively been frozen out of the U.S. banking system because of its regulatory problems”. Customer complaints about long delays were mounting as of February 2014, with more than 3300 posts in a thread about the topic on the BitcoinTalk online forum.&amp;lt;ref&amp;gt;{{cite news | url=http://www.coindesk.com/poll-mt-gox-withdrawal-issues/ | title=Poll: Are you having Mt. Gox withdrawal issues? | last=Wong | first=Joon Ian | date=4 February 2014 | work=CoinDesk | accessdate=9 February 2014 }}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Bankruptcy and shutdown==&lt;br /&gt;
&lt;br /&gt;
On 7 February 2014, all Bitcoin withdrawals were halted by Mt. Gox.&amp;lt;ref name=doughterty2014&amp;gt;{{cite news | work=Bloomberg | date=7 February 2014 | url=http://www.bloomberg.com/news/2014-02-07/bitcoin-price-falls-as-mt-gox-exchange-halts-activity.html | title= Bitcoin Price Plunges as Mt. Gox Exchange Halts Activity | last=Dougherty | first=Carter | accessdate=9 February 2014 }}&amp;lt;/ref&amp;gt; The company said it was pausing withdrawal requests “to obtain a clear technical view of the currency processes”.&amp;lt;ref name=doughterty2014/&amp;gt; The company issued a press release on February 10, 2014 stating that the issue was due to transaction malleability: “A bug in the bitcoin software makes it possible for someone to use the Bitcoin network to alter transaction details to make it seem like a sending of bitcoins to a bitcoin wallet did not occur when in fact it did occur. Since the transaction appears as if it has not proceeded correctly, the bitcoins may be resent. MtGox is working with the Bitcoin core development team and others to mitigate this issue.”&amp;lt;ref&amp;gt;{{cite press release | title=Update - Statement Regarding BTC Withdrawal Delays | publisher=Mt. Gox Co. Ltd. | date=10 February 2014 | url=https://www.mtgox.com/press_release_20140210.html | archiveurl=https://web.archive.org/web/20140210122955/https://www.mtgox.com/press_release_20140210.html | archivedate=10 February 2014 }}&amp;lt;/ref&amp;gt;&amp;lt;ref&amp;gt;http://www.pokerupdate.com/news/business-and-finance/mt-gox-shutdown-puts-bitcoin-investors-on-edge/&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
On 17 February 2014, with all Mt. Gox withdrawals still halted and competing exchanges back in full operation, the company published another press release indicating the steps they claim they are taking to address security issues.&amp;lt;ref&amp;gt;{{cite press release | title=20140217-Announcement: Tokyo, Japan, February 17th, 2014 | url=https://www.mtgox.com/img/pdf/20140217-Announcement.pdf | format=PDF | archiveurl=https://web.archive.org/web/*/https://www.mtgox.com/img/pdf/20140217-Announcement.pdf | archivedate=17 February 2014 | date=17 February 2014 | location=Tokyo | publisher=Mt. Gox }}&amp;lt;/ref&amp;gt; In an email interview with the &#039;&#039;Wall Street Journal&#039;&#039;, CEO Mark Karpelès refused to comment on increasing concerns among customers about the financial status of the exchange, did not give a definite date on which withdrawals would be resumed, and wrote that the exchange would impose &amp;quot;new daily and monthly limits&amp;quot; on withdrawals if and when they were resumed.&amp;lt;ref&amp;gt;{{cite news |&lt;br /&gt;
url=http://online.wsj.com/news/articles/SB10001424052702304899704579388483531937144?mg=reno64-wsj&amp;amp;url=http%3A%2F%2Fonline.wsj.com%2Farticle%2FSB10001424052702304899704579388483531937144.html |&lt;br /&gt;
title=Bitcoin Platform Mt. Gox Apologizes for Delayed Response - CEO Karpeles Declines To Shed Light On How Customer Funds Are Protected |&lt;br /&gt;
publisher=Wall Street Journal |&lt;br /&gt;
author=Mochizuki, Takashi and Warnock, Eleanor |&lt;br /&gt;
date=February 17, 2014 }}&amp;lt;/ref&amp;gt; A poll of 3000 Mt. Gox customers by CoinDesk indicated that 68% of customers were still awaiting funds from Mt. Gox.  The median waiting time was between one to three months. 21% of poll respondents had been waiting for three months or more.&amp;lt;ref&amp;gt;{{cite news |&lt;br /&gt;
url=http://www.coindesk.com/mt-gox-users-awaiting-funds-survey-reveals/ |&lt;br /&gt;
title=68% of Mt. Gox Users Still Awaiting Their Funds, Survey Reveals |&lt;br /&gt;
date=15 February 2014 |&lt;br /&gt;
publisher=Coin Desk |&lt;br /&gt;
author=Wong, Joon Ian}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
On 20 February 2014, with all withdrawals still halted, Mt. Gox issued yet another statement, giving no date for the resumption of withdrawals.&amp;lt;ref name=cnbcfury&amp;gt;{{cite news |&lt;br /&gt;
url = http://www.cnbc.com/id/101431022 |&lt;br /&gt;
title=Bitcoin investor fury at Mt Gox delays |&lt;br /&gt;
date=February 20, 2014 |&lt;br /&gt;
publisher=CNBC |&lt;br /&gt;
author=Clinch, Matt}}&amp;lt;/ref&amp;gt; A protest by two Bitcoin enthusiasts outside the building that houses the Mt. Gox headquarters in Tokyo continued. &lt;br /&gt;
Citing &amp;quot;security concerns&amp;quot;, Mt. Gox announced they had moved their offices to a different location in Shibuya. Bitcoin prices quoted by Mt. Gox dropped below 20% of the prices on other exchanges, reflecting the market&#039;s estimate of the unlikelihood of Mt. Gox paying their customers.&amp;lt;ref&amp;gt;{{cite news |&lt;br /&gt;
url=http://www.theverge.com/2014/2/19/5425220/protest-at-mt-gox-bitcoin-exchange-in-tokyo |&lt;br /&gt;
title=Mt. Gox, where is our money? |&lt;br /&gt;
date=February 20, 2014 |&lt;br /&gt;
publisher=The Verge |&lt;br /&gt;
author=Byford, Sam}}&amp;lt;/ref&amp;gt;&amp;lt;ref&amp;gt;{{cite news |&lt;br /&gt;
title=Bitcoin exchange in Downward Spiral: &amp;quot;Mt Gox has left the building&amp;quot; |&lt;br /&gt;
publisher=Heise |&lt;br /&gt;
date=February 20, 2014 |&lt;br /&gt;
location=Hannover, Germany |&lt;br /&gt;
url=http://www.heise.de/newsticker/meldung/Bitcoin-Boerse-in-Abwaertsspirale-Mt-Gox-has-left-the-building-2119550.html }}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
On 23 February 2014, Mark Karpelès, the CEO of Mt. Gox, resigned from the board of the [[Bitcoin Foundation]].&amp;lt;ref&amp;gt;{{cite news | url=http://www.reuters.com/article/2014/02/24/mtgox-bitcoinfoundation-idUSL3N0LT15X20140224 | work=Reuters | date=February 23, 2014 | title=Mt. Gox resigns from Bitcoin Foundation | accessdate=25 February 2014 }}&amp;lt;/ref&amp;gt; The same day, all posts on their Twitter account were removed.&amp;lt;ref&amp;gt;{{cite news | url=http://www.businessinsider.com/mtgox-resigns-from-bitcoin-foundation-2014-2 | publisher=Business Insider | date=February 23, 2014 | title=MtGox Resigns From Bitcoin Foundation, Deletes All Tweets From Twitter Feed | accessdate=25 February 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
On 24 February 2014, Mt. Gox suspended all trading, and hours later its website went offline, returning a blank page.&amp;lt;ref name=&amp;quot;WiredGox&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;NYTGox&amp;quot;/&amp;gt;&amp;lt;ref&amp;gt;{{cite news | url=http://bigstory.ap.org/article/website-bitcoin-exchange-mt-gox-offline | first1=Yuriko | last1=Nagano | first2=Stephen | last2=Wright | title=Website of Bitcoin exchange Mt. Gox offline | work=Associated Press | date=25 February 2014 | accessdate=25 February 2014}}&amp;lt;/ref&amp;gt; An alleged leaked internal crisis management document claimed that the company was insolvent, after losing 744,408 bitcoins in a theft which went undetected for years.&amp;lt;ref name=&amp;quot;WiredGox&amp;quot;&amp;gt;{{cite news | url=http://www.wired.com/wiredenterprise/2014/02/bitcoins-mt-gox-implodes/?cid=co19086554 | title=Bitcoin exchange Mt. Gox implodes amid allegations of $350 million hack| first=Robert |last=McMillan|work=[[Wired (magazine)|Wired]]|date=24 February 2014|accessdate=25 February 2014}}&amp;lt;/ref&amp;gt;&amp;lt;ref name=&amp;quot;NYTGox&amp;quot;&amp;gt;{{cite news | url=http://www.nytimes.com/2014/02/25/business/apparent-theft-at-mt-gox-shakes-bitcoin-world.html | title=Apparent theft at Mt. Gox shakes Bitcoin world|first1=Nathaniel|last1=Popper|first2=Rachel|last2=Abrams|work=[[The New York Times]]|date=25 February 2014|accessdate=25 February 2014}}&amp;lt;/ref&amp;gt;&amp;lt;ref&amp;gt;[http://www.theguardian.com/technology/2014/feb/27/how-does-a-bug-in-bitcoin-lead-to-mtgoxs-collapse How a bug in bitcoin led to MtGox&#039;s collapse], Alex Hern, [[The Guardian]], Feb. 27, 2014&amp;lt;/ref&amp;gt;&amp;lt;ref&amp;gt;[http://www.foxbusiness.com/markets/2014/02/25/mt-gox-ceo-says-on-internet-chat-hasnt-given-up/]&amp;lt;/ref&amp;gt; Six other major bitcoin exchanges released a joint statement distancing themselves from Mt. Gox, shortly before Mt. Gox&#039;s website went offline.&amp;lt;ref&amp;gt;{{cite news | url=http://www.reuters.com/article/2014/02/25/mtgox-website-idUSL3N0LU1N920140225 | work=Reuters | title=Bitcoin exchange Mt. Gox&#039;s website down | date=25 February 2014 | accessdate=25 February 2014}}&amp;lt;/ref&amp;gt;&amp;lt;ref&amp;gt;{{cite press release | title=The Coinbase Blog - Joint Statement Regarding MtGox | date=24 February 2014 | work=The Coinbase Blog |publisher=Coinbase| url=http://blog.coinbase.com/post/77766809700/joint-statement-regarding-mtgox | accessdate=24 February 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
On 25 February 2014, Mt.Gox reported on its website that a &amp;quot;decision was taken to close all transactions for the time being&amp;quot;, citing &amp;quot;recent news reports and the potential repercussions on MtGox&#039;s operations&amp;quot;. The chief executive, Mark Karpelès told &#039;&#039;Reuters&#039;&#039; that Mt. Gox was &amp;quot;at a turning point&amp;quot;.&amp;lt;ref name=Reuters-closed&amp;gt;{{cite news|title=Mt. Gox website says all transactions closed &amp;quot;for the time being&amp;quot;|url=http://www.reuters.com/article/2014/02/25/us-mtgox-website-idUSBREA1O07920140225|accessdate=25 February 2014|newspaper=Reuters|date=25 February 2014}}&amp;lt;/ref&amp;gt;&amp;lt;ref name=Lowery-end&amp;gt;{{cite news|last=Lowery|first=Adrian|title=Is it the beginning of the end for Bitcoin? Virtual currency in turmoil as rumoured $375m theft closes major exchange |url=http://www.thisismoney.co.uk/money/news/article-2567436/Bitcoin-turmoil-rumoured-375m-theft-closes-major-exchange.html|accessdate=25 February 2014|newspaper=This is money|date=25 February 2014}}&amp;lt;/ref&amp;gt;&amp;lt;ref name=Anklam-offline&amp;gt;{{cite news|last=Anklam|first=Fred|title=Bitcoin exchange Mt. Gox goes offline amid turmoil|url=http://www.usatoday.com/story/tech/2014/02/25/mt-gox-offline/5801093/|accessdate=25 February 2014|newspaper=USA Today|date=25 February 2014}}&amp;lt;/ref&amp;gt;&amp;lt;ref name=Vaishampayan&amp;gt;{{cite news|last=Vaishampayan|first=Saumya|title=Mt. Gox says transactions closed &#039;for time being&#039;|url=http://www.marketwatch.com/story/mt-gox-says-transactions-closed-for-time-being-2014-02-25?link=MW_home_latest_news|accessdate=25 February 2014|newspaper=Market Watch|date=25 February 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
On 28 February 2014 Mt. Gox filed for bankruptcy protection in Tokyo, reporting that it had liabilities of about 6.5 billion Japanese yen ($64 million at the time), and 3.84 billion yen in assets.&amp;lt;ref name=warnock2014&amp;gt;{{cite news | first1=Eleanor | last1=Warnock | first2=Takashi | last2=Mochizuki | first3=Alexander|last3=Martin | date=28 February 2014 | work=The Wall Street Journal | url=http://online.wsj.com/news/article_email/SB10001424052702303801304579410010379087576 | title=Mt. Gox files for bankruptcy protection | accessdate=28 February 2014}}&amp;lt;/ref&amp;gt;&amp;lt;ref name=takemoto2014&amp;gt;{{cite news | title=Mt. Gox files for bankruptcy, blames hackers for losses | url=http://www.reuters.com/article/2014/02/28/us-bitcoin-mtgox-bankruptcy-idUSBREA1R0FX20140228 | first1=Yoshifumi |last1=Takemoto |first2=Sophie |last2=Knight|work=Reuters|date=28 February 2014|accessdate=28 February 2014}}&amp;lt;/ref&amp;gt; The company said they had lost almost 750,000 of its customers&#039; bitcoins, and around 100,000 of its own bitcoins, totaling around 7% of all bitcoins, and worth around $473 million near the time of the filing.&amp;lt;ref name=warnock2014/&amp;gt;&amp;lt;ref name=takemoto2014/&amp;gt; Mt. Gox released a statement saying &amp;quot;The company believes there is a high possibility that the Bitcoins were stolen,”&amp;lt;ref name=&amp;quot;Bloomberg28&amp;quot;&amp;gt;[http://www.bloomberg.com/news/2014-02-28/mt-gox-exchange-files-for-bankruptcy.html Mt. Gox Seeks Bankruptcy After $480 Million Bitcoin Loss], Carter Dougherty and Grace Huang, [[Bloomberg News]], Feb. 28, 2014&amp;lt;/ref&amp;gt; blaming hackers,&amp;lt;ref name=titan /&amp;gt; thus beginning a search for the missing money. Chief Executive of Mt. Gox, Mark Karpelès, said technical issues opened up the way for fraudulent withdrawals. &lt;br /&gt;
&lt;br /&gt;
Mt. Gox also faces lawsuits from its customers.&amp;lt;ref name=&amp;quot;Sidel-bitcoin vanish&amp;quot;&amp;gt;{{cite news|last=Sidel|first=Robin|title=Almost Half a Billion Worth of Bitcoins Vanish|url=http://online.wsj.com/news/articles/SB10001424052702303801304579410010379087576?mod=WSJ_hp_LEFTWhatsNewsCollection&amp;amp;mg=reno64-wsj&amp;amp;url=http%3A%2F%2Fonline.wsj.com%2Farticle%2FSB10001424052702303801304579410010379087576.html%3Fmod%3DWSJ_hp_LEFTWhatsNewsCollection|accessdate=3 March 2014|newspaper=Wall Street Journal|date=28 February 2014}}&amp;lt;/ref&amp;gt;&amp;lt;ref&amp;gt;{{cite web | url=http://www.investing.com/news/economy-news/mtgox-boss-sued-for-bitcoin-losses-270031 | title=&lt;br /&gt;
MtGox Boss Sued For Bitcoin Losses | work=[[Investing.com]] | date=4 March 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
On 9 March 2014, Mt. Gox filed for bankruptcy protection in the US, to temporarily halt U.S. legal action by traders who alleged the operation was a fraud.&amp;lt;ref name=Finley-bankruptcy&amp;gt;{{cite news|last=Finley|first=Klint|title=Bitcoin Exchange Mt. Gox Files for U.S. Bankruptcy as Death Spiral Continues|url=http://www.wired.com/wiredenterprise/2014/03/gox-texas/|accessdate=11 March 2014|newspaper=Wired|date=10 March 2014}}&amp;lt;/ref&amp;gt;&amp;lt;ref name=Hals-bankrupt&amp;gt;{{cite news|last=Hals|first=Tom|title=Mt. Gox files U.S. bankruptcy, opponents call it a ruse|url=http://www.reuters.com/article/2014/03/10/us-bitcoin-mtgox-bankruptcy-idUSBREA290WU20140310|accessdate=11 March 2014|newspaper=Reuters|date=10 March 2014}}&amp;lt;/ref&amp;gt;&amp;lt;ref name=NYP-Bankrupt&amp;gt;{{cite news|title=Bitcoin exchange Mt. Gox files for US bankruptcy|url=http://nypost.com/2014/03/10/bitcoin-exchange-mt-gox-files-for-us-bankruptcy/|accessdate=11 March 2014|newspaper=New York Post|date=10 March 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
On 20 March 2014, Mt. Gox reported on its website that it found some bitcoins — worth around $116 million — in an old digital wallet from 2011. That brings the total number of bitcoins the firm lost down to 650,000 from 850,000.&amp;lt;ref&amp;gt;{{cite web&lt;br /&gt;
 |url         = https://www.mtgox.com/img/pdf/20140320-btc-announce.pdf&lt;br /&gt;
 |title       = 当社保有ビットコインの残高に関するお知らせ / Announcement regarding the balance of Bitcoin held by the company&lt;br /&gt;
 |subtitle    = &lt;br /&gt;
 |author      = Karpeles, Mark&lt;br /&gt;
 |quote       = MtGox Co., Ltd. had certain old­format wallets which were used in the past and which, MtGox &lt;br /&gt;
thought, no longer held any bitcoins. Following the application for commencement of a civil rehabilitation proceeding, these wallets were rescanned and their balance researched. On March 7,  2014, MtGox Co., Ltd. confirmed that an old­format wallet which was used prior to June 2011 held a  balance of approximately 200,000 BTC (199,999.99 BTC).&lt;br /&gt;
 |date        = 2014-03-20&lt;br /&gt;
 |format      = PDF&lt;br /&gt;
 |work        = &lt;br /&gt;
 |publisher   = MtGox&lt;br /&gt;
 |accessdate  = 2014-03-22&lt;br /&gt;
 |description = &lt;br /&gt;
 |deadurl    = &lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
On April 14, Mt. Gox lawyers said that Mark Karpeles wouldn&#039;t appear for a deposition in a Dallas court, or heed a subpoena by FinCEN.&amp;lt;ref name=titan&amp;gt;{{cite news|last=Mochizuki|first=Takashi|title=Tracing a Bitcoin&#039;s Exchange&#039;s Fall From the Top to Shutdown Mark Karpelès hoped to set up a bitcoin cafe in the building where his exchange rented space.|url=http://online.wsj.com/news/articles/SB10001424052702304311204579508300513992292?mg=reno64-wsj&amp;amp;url=http%3A%2F%2Fonline.wsj.com%2Farticle%2FSB10001424052702304311204579508300513992292.html|accessdate=22 April 2014|newspaper=WSJ|date=20 April 2014}}&amp;lt;/ref&amp;gt; &lt;br /&gt;
On 16 April 2014, Mt. Gox gave up its plan to rebuild under bankruptcy protection, and asked a Tokyo court to allow it to be liquidated.&amp;lt;ref&amp;gt;http://online.wsj.com/news/article_email/SB10001424052702303663604579504691512965308-lMyQjAxMTA0MDEwNTExNDUyWj&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;
* [[Bitcoin Ladder]]&lt;br /&gt;
&lt;br /&gt;
==External Links==&lt;br /&gt;
&lt;br /&gt;
* [https://mtgox.com MT. Gox exchange] now defunct website&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>C0ldfusi0nz</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Mt._Gox&amp;diff=49783</id>
		<title>Mt. Gox</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Mt._Gox&amp;diff=49783"/>
		<updated>2014-08-12T12:53:12Z</updated>

		<summary type="html">&lt;p&gt;C0ldfusi0nz: removing broken links&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{outdated}}{{infobox company|name=MtGox|image=[[File:MtGox.png|256px]]&lt;br /&gt;
|trading_name=Mt. Gox&lt;br /&gt;
|industry=[[Exchange|Fiat exchange]]&lt;br /&gt;
|foundation=July 18, 2010&lt;br /&gt;
|defunct=February 25, 2014&lt;br /&gt;
|location=Shibuya, Tokyo, Japan&lt;br /&gt;
|founder=[[Jed McCaleb]]&lt;br /&gt;
|owner=[[Mark Karpeles]]&lt;br /&gt;
|parent=[[Tibanne Ltd.]]&lt;br /&gt;
|pairs=USD/BTC&amp;lt;br/&amp;gt;EUR/BTC&amp;lt;br/&amp;gt;CAD/BTC&amp;lt;br/&amp;gt;GBP/BTC&amp;lt;br/&amp;gt;CHF/BTC&amp;lt;br/&amp;gt;RUB/BTC&amp;lt;br/&amp;gt;AUD/BTC&amp;lt;br/&amp;gt;SEK/BTC&amp;lt;br/&amp;gt;DKK/BTC&amp;lt;br/&amp;gt;HKD/BTC&amp;lt;br/&amp;gt;PLN/BTC&amp;lt;br/&amp;gt;CNY/BTC&amp;lt;br/&amp;gt;SGD/BTC&amp;lt;br/&amp;gt;TBH/BTC&amp;lt;br/&amp;gt;NZD/BTC&amp;lt;br/&amp;gt;JPY/BTC&lt;br /&gt;
|website=https://mtgox.com&lt;br /&gt;
}}&#039;&#039;&#039;MtGox&#039;&#039;&#039;, called &amp;quot;Mount Gox&amp;quot; or simply &amp;quot;Gox&amp;quot;, was the most widely used bitcoin [[currency exchange]] market from 2010-2013&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. The market was closed February 25, 2014.&lt;br /&gt;
&lt;br /&gt;
A registrant on MtGox had at least two sub-accounts: one for bitcoins (BTC), and one for US dollars (USD or MTGUSD) or other national currency. Bitcoins were bought using funds from the trader&#039;s national currency account, and the proceeds from the sale of bitcoins were deposited into the same account. Trading always involved bitcoins as trading between different national currencies was not offered.&lt;br /&gt;
&lt;br /&gt;
Trades on Mt. Gox&#039;s executed from balances on deposit with the exchange which in turn made trading on the market instantaneous, compared to most other Bitcoin markets of the time where a subsequent settlement occurred manually between the trading partners. The disadvantage of this was that a third party had to 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 was 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;
A buy order was executed partially or in full when the price bid could be matched against a sell order that was at or below the bid amount.  A sell order was executed partially or in full when the price asked could be matched against a buy order that was at or above the ask amount.  Orders that could not be matched immediately remain in the orderbook.&lt;br /&gt;
&lt;br /&gt;
Unfunded orders did not appear in the order book, but were automatically inserted when a deposit was credited.  For example, Mt. Gox allowed the entry of a &amp;quot;buy&amp;quot; order even if the account had insufficient funds.  If possible, Mt. Gox would execute a portion of the order if it could be partially funded.  If a deposit was later credited and the deposit resolves the insufficient funds status of an outstanding order, the order would be immediately activated, and if possible, executed.&lt;br /&gt;
&lt;br /&gt;
===Fees===&lt;br /&gt;
&lt;br /&gt;
Mt. Gox charged a trading fee of up to 0.6% from each party of successful trades made through the market.  The fee appeared in the account history next to each trade.  The trading fee was discounted for larger customers based on volume, which was calculated as a sliding window over the last 720 hours (30 days).&lt;br /&gt;
&lt;br /&gt;
The fees were, 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 would 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 were no fees incurred when transferring bitcoins to a Mt. Gox account.&lt;br /&gt;
&lt;br /&gt;
Funds were 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 could take roughly an hour.&lt;br /&gt;
&lt;br /&gt;
The deposit address was presented along with a QR code that can be scanned with a mobile.  This address did not change with each deposit request.&lt;br /&gt;
&lt;br /&gt;
The Add Bitcoins function experienced issues with some browser ad-blocking utilities even though no advertisements were 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;) could be deposited and would be available for trading.&lt;br /&gt;
&lt;br /&gt;
===OKPay===&lt;br /&gt;
&lt;br /&gt;
[[OKPay]] could 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) could 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) could be deposited using Boleto or through Banco Recomendito.&lt;br /&gt;
&lt;br /&gt;
====Brazil (BRL)====&lt;br /&gt;
* BitInstant - Cash (Russian rubles) could be deposited using QIWI or Cyberplat&lt;br /&gt;
&lt;br /&gt;
====UK (GBP)====&lt;br /&gt;
* Barclays - Cash (British pound sterling) could be deposited at any Barclays location.  There was 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 could 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 could be added using SEPA Direct Debit for free, with funds convert to USD at the current ECB rate at the time the funds were 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 could be sent as a GBP direct deposit free of charge.&lt;br /&gt;
&lt;br /&gt;
====Australia====&lt;br /&gt;
&lt;br /&gt;
Funds could 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 were counted toward this limit as well and the USD value was 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 could 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]] was among the fastest and least expensive methods for withdrawing USD funds from a Mt. Gox account. The transaction fee to do so was just $0.25.&lt;br /&gt;
[[Dwolla]] withdrawals were 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 was running checks to see if the transfer can be executed.&lt;br /&gt;
* Confirmed: Transfer could be executed and was pending in queue.&lt;br /&gt;
* Todo: Transfer was 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 could be withdrawn at no charge.&lt;br /&gt;
&lt;br /&gt;
A [[green address]] option was available though this type of transaction could experience a delay if the exchange&#039;s wallet funding level for green address transactions was 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 was currently no option for withdrawing funds through a direct deposit bank transaction.  Funds withdrawn to Dwolla could 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;
Users could withdraw any amount as a direct deposit to their bank.  There was 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) was subtracted and the remaining amount was sent via international wire in the chosen currency. If not AUD then an exchange fee of 2.5% would 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 was to place a request through the exchange&#039;s [https://mtgox.zendesk.com help desk].  Another method was 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 were configured independently.&lt;br /&gt;
&lt;br /&gt;
For example, a typical configuration was 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 were 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) was 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 was 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 was 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 could accept bitcoins for payment using the Mt. Gox&#039;s E-commerce Solution, which was 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;
===Trading incidents===&lt;br /&gt;
On 19 June 2011, a security breach of the Mt. Gox bitcoin exchange caused the nominal price of a bitcoin to fraudulently drop to one cent on the Mt. Gox exchange, after a hacker allegedly used credentials from a Mt. Gox auditor&#039;s compromised computer illegally to transfer a large number of bitcoins to himself. He used the exchange&#039;s software to sell them all nominally, creating a massive &amp;quot;[[Ask price|ask]]&amp;quot; order at any price. Within minutes the price corrected to its correct user-traded value.&amp;lt;ref&amp;gt;{{cite press release | last=Karpeles | first=Mark | title=Clarification of Mt Gox Compromised Accounts and Major Bitcoin Sell-Off | date=30 June 2011 | url=https://mtgox.com/press_release_20110630.html | publisher=Tibanne Co. Ltd. | archiveurl=https://web.archive.org/web/20110919162635/https://mtgox.com/press_release_20110630.html | archivedate=19 September 2014 }}&amp;lt;/ref&amp;gt;&amp;lt;ref&amp;gt;{{cite AV media|people= |date= 19 June 2011 |time= |medium= |url= http://www.youtube.com/watch?v=T1X6qQt9ONg |accessdate= |archiveurl= |archivedate= |title= Bitcoin Report Volume 8 - (FLASHCRASH) |publisher=YouTube BitcoinChannel |id= |quote= |ref= }}&amp;lt;/ref&amp;gt;&amp;lt;ref name=&amp;quot;mick&amp;quot;&amp;gt;{{cite news|last= Mick |first= Jason |title= Inside the Mega-Hack of Bitcoin: the Full Story |date= 19 June 2011 |url= http://www.dailytech.com/Inside+the+MegaHack+of+Bitcoin+the+Full+Story/article21942.htm | work=DailyTech }}&amp;lt;/ref&amp;gt;&amp;lt;ref&amp;gt;{{cite news | first=Timothy B.|last=Lee |date=19 June 2011 | url=http://arstechnica.com/tech-policy/news/2011/06/bitcoin-price-plummets-on-compromised-exchange.ars | title=Bitcoin prices plummet on hacked exchange | work=Ars Technica | publisher=[[Condé Nast]] }}&amp;lt;/ref&amp;gt;&amp;lt;ref&amp;gt;Mark Karpeles, 20 June 2011, [http://bitgear.co/blogs/news/13602537-huge-bitcoin-sell-off-due-to-a-compromised-account-rollback Huge Bitcoin sell off due to a compromised account – rollback], Mt. Gox Support&amp;lt;/ref&amp;gt;&amp;lt;ref name=&amp;quot;register1&amp;quot;&amp;gt;{{cite news|title= Bitcoin collapses on malicious trade – Mt Gox scrambling to raise the Titanic |url= http://www.theregister.co.uk/2011/06/19/bitcoin_values_collapse_again/ |date=19 June 2011 |author= Chirgwin, Richard | work=The Register }}&amp;lt;/ref&amp;gt; Accounts with the equivalent of more than $8,750,000 were affected.&amp;lt;ref name=&amp;quot;mick&amp;quot; /&amp;gt; In order to prove that Mt.Gox still had control of the coins, the move of 424,242 bitcoins from &amp;quot;cold storage&amp;quot; to a Mt.Gox address was announced beforehand and executed in Block 132749.&amp;lt;ref&amp;gt;http://blockexplorer.com/b/132749&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In October 2011, about two dozen transactions appeared in the block chain (Block 150951)&amp;lt;ref&amp;gt;http://blockexplorer.com/b/150951&amp;lt;/ref&amp;gt; that sent a total of 2,609 BTC to invalid addresses. As no private key could ever be assigned to them, these Bitcoins were effectively lost. While the standard client would check for such an error and reject the transactions, nodes on the network would not, exposing a weakness in the protocol. &lt;br /&gt;
&lt;br /&gt;
On 22 February 2013, following an introduction of new anti-money laundering requirements by [[Dwolla]], some Dwolla accounts became temporarily restricted. As a result, transactions from Mt. Gox to those accounts were cancelled by Dwolla. The funds never made it back to Mt. Gox accounts. Mt. Gox help desk issued the following comment: &amp;quot;Please be advised that you are actually not allowed to cancel any withdrawals received from Mt. Gox as we have never had this case before and we are working with Dwolla to locate your returned funds.&amp;quot; The funds were finally returned on May 3, more than 3 months later, with a note &amp;quot;Please be advised never to cancel any Dwolla withdrawals from us again&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
In March 2013, the bitcoin transaction log or &amp;quot;blockchain&amp;quot; temporarily forked into two independent logs with differing rules on how transactions could be accepted. The Mt. Gox bitcoin exchange briefly halted bitcoin deposits. Bitcoin prices briefly dipped by 23% to $37 as the event occurred&amp;lt;ref name=ArsFork&amp;gt;{{cite news|last=Lee|first=Timothy|title=Major glitch in Bitcoin network sparks sell-off; price temporarily falls 23%|url=http://arstechnica.com/business/2013/03/major-glitch-in-bitcoin-network-sparks-sell-off-price-temporarily-falls-23/|work=Ars Technica| publisher=[[Condé Nast]]|accessdate=12 March 2013}}&amp;lt;/ref&amp;gt;&amp;lt;ref name=VergeFork&amp;gt;{{cite news|last=Blagdon|first=Jeff|title=Technical problems cause Bitcoin to plummet from record high, Mt. Gox suspends deposits|url=http://www.theverge.com/2013/3/12/4092898/technical-problems-cause-bitcoin-to-plummet-from-record-high|work=The Verge|accessdate=12 March 2013}}&amp;lt;/ref&amp;gt; before recovering to their previous level in the following hours, a price of approximately $48.&amp;lt;ref&amp;gt;{{cite web| title=Bitcoin Charts | work=Bitcoin Charts | url=http://bitcoincharts.com/charts/mtgoxUSD#rg60zczsg2013-03-12zeg2013-03-15ztgSzm1g10zm2g25zv}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Suspension of trading 2013===&lt;br /&gt;
Mt. Gox suspended trading on 11 April 2013 until 12 April 2013 2 am UTC for a &amp;quot;market cooldown&amp;quot;.&amp;lt;ref&amp;gt;{{cite web|url=https://twitter.com/MtGox/status/322355614414147588 |title=Twitter / MtGox: Trading is suspended until |publisher=Twitter.com |date= |accessdate=2014-02-17}}{{dead link|date=February 2014}}&amp;lt;/ref&amp;gt; The value of a single bitcoin fell to a low of $55.59 after the resumption of trading before stabilizing above $100. Around mid May 2013, Mt. Gox traded 150,000 bitcoins per day per Bitcoin Charts.&amp;lt;ref name=titan /&amp;gt; &lt;br /&gt;
&lt;br /&gt;
Mt. Gox suspended withdrawals in US dollars on June 20, 2013.&amp;lt;ref&amp;gt;{{cite news | title=Bitcoin’s Big Bank Problem: Why Did Mt. Gox Halt U.S. Payouts? | url=http://www.wired.com/wiredenterprise/2013/06/mt-gox-stops/ | last=McMillan|first=Robert | work=Wired | publisher=[[Condé Nast]] | date=20 June 2013}}&amp;lt;/ref&amp;gt;  The Mizuho Bank branch in Tokyo that handled Mt. Gox transactions pressured Mt. Gox from then on to close its account.&amp;lt;ref name=titan /&amp;gt;  On July 4, 2013, Mt. Gox announced that it had &amp;quot;fully resumed&amp;quot; withdrawals, but as of September 5, 2013, few US dollar withdrawals had been successfully completed.&amp;lt;ref&amp;gt;{{cite news | url=http://blogs.wsj.com/moneybeat/2013/07/05/bitcoin-operator-mt-gox-resumes-withdrawals/ |&lt;br /&gt;
title=Bitcoin operator Mt. Gox resumes withdrawals |&lt;br /&gt;
last=Vigna|first=Paul |&lt;br /&gt;
date=5 July 2013 |&lt;br /&gt;
work=The Wall Street Journal}}&amp;lt;/ref&amp;gt;&amp;lt;ref&amp;gt;{{cite news |&lt;br /&gt;
url=http://blogs.wsj.com/moneybeat/2013/07/30/bitcoin-exchange-mt-gox-still-grappling-with-slowdown/ |&lt;br /&gt;
title=Bitcoin exchange Mt. Gox still grappling with slowdown |&lt;br /&gt;
last=Vigna|first=Paul |&lt;br /&gt;
date=31 July 2013 |&lt;br /&gt;
work=The Wall Street Journal}}&amp;lt;/ref&amp;gt;&amp;lt;ref&amp;gt;{{cite news |&lt;br /&gt;
url=http://www.forbes.com/sites/beltway/2013/09/03/how-bitcoin-spreads-violate-a-fundamental-economic-law/ |&lt;br /&gt;
work=Forbes |&lt;br /&gt;
date=3 September 2013 |&lt;br /&gt;
title=How Bitcoin spreads violate a fundamental economic law |&lt;br /&gt;
author=Marron, Donald}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
On August 5, 2013, Mt. Gox announced that they incurred &amp;quot;significant losses&amp;quot; due to crediting deposits which had not fully cleared and that new deposits would no longer be credited until the funds transfer was fully completed.&amp;lt;ref&amp;gt;{{cite press release | title=August 2013 Mt. Gox Status Update | publisher=Mt. Gox Co. Ltd. | date=5 August 2013 | url=https://www.mtgox.com/press_release_20130805.html | archiveurl=https://web.archive.org/web/20130805084259/https://www.mtgox.com/press_release_20130805.html | archivedate=5 August 2013}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===CoinLab lawsuit and Homeland Security seizure of US funds===&lt;br /&gt;
On 2 May 2013 CoinLab filed a $75 million lawsuit against Mt. Gox alleging a breach of contract.&amp;lt;ref name=chen2013&amp;gt;{{cite news|last=Chen | first=Adrian | work=Gawker Media | date=2 May 2013 | title=Massive Bitcoin Business Partnership Devolves Into $75 Million Lawsuit|url=http://gawker.com/massive-bitcoin-business-partnership-devolves-into-75-487857656|accessdate=8 June 2013}}&amp;lt;/ref&amp;gt; The companies had formed a partnership in February 2013 under which CoinLab handled all of Mt. Gox&#039;s North American services.&amp;lt;ref name=chen2013/&amp;gt; CoinLab&#039;s lawsuit contends that Mt. Gox failed to allow them to move existing U.S. and Canadian customers from Mt. Gox to CoinLab.&amp;lt;ref name=chen2013/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
On 15 May 2013 the US Department of Homeland Security (DHS) issued a warrant to seize money from Mt. Gox&#039;s US subsidiary&#039;s account with payment processor [[Dwolla]].&amp;lt;ref name=dillet2013/&amp;gt; The warrant suggests the US Immigration and Customs Enforcement, an investigative branch of the DHS, felt that the subsidiary, which was not licensed by the US Financial Crimes Enforcement Network (FinCEN), was operating as an unregistered money transmitter in the US.&amp;lt;ref name=dillet2013&amp;gt;{{cite news|last=Dillet|first=Romain|title=Feds Seize Assets From Mt. Gox’s Dwolla Account, Accuse It Of Violating Money Transfer Regulations | work=TechCrunch | publisher=[[AOL|AOL Inc.]] | date=16 May 2013 | url=http://techcrunch.com/2013/05/16/mt-gox-dwolla-account-money-seizure/ | accessdate=10 February 2014 }}&amp;lt;/ref&amp;gt;&amp;lt;ref name=msblic&amp;gt;{{ cite news | title=MtGox Gets FinCEN MSB License | work=Bitcoin Magazine | publisher=Coin Publishing Ltd. | first=Vitalik | last=Buterin | date=29 June 2013 | url=http://bitcoinmagazine.com/5560/mtgox-gets-fincen-msb-license/ | accessdate=10 February 2014}}&amp;lt;/ref&amp;gt; Between May and July more than $5 million were seized. &amp;lt;ref name=titan /&amp;gt; On 29 June 2013, Mt. Gox received its money services business (MSB) license from FinCEN.&amp;lt;ref name=msblic/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Withdrawals delayed or refused===&lt;br /&gt;
&#039;&#039;Wired Magazine&#039;&#039; reported in November 2013 that customers were experiencing delays of weeks to months in withdrawing funds from their accounts.&amp;lt;ref name=mcmillan2013&amp;gt;{{cite news | title=The rise and fall of the world&#039;s largest Bitcoin exchange | last1=McMillan | first1=Robert | last2=Metz | first2=Cade | work=Wired | publisher=[[Condé Nast]] | date=6 November 2013 | url=http://www.wired.com/wiredenterprise/2013/11/mtgox/ | accessdate=8 February 2014 }}&amp;lt;/ref&amp;gt; The article said that the company had “effectively been frozen out of the U.S. banking system because of its regulatory problems”. Customer complaints about long delays were mounting as of February 2014, with more than 3300 posts in a thread about the topic on the Bitcoin Talk online forum.&amp;lt;ref&amp;gt;{{cite news | url=http://www.coindesk.com/poll-mt-gox-withdrawal-issues/ | title=Poll: Are you having Mt. Gox withdrawal issues? | last=Wong | first=Joon Ian | date=4 February 2014 | work=CoinDesk | accessdate=9 February 2014 }}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Bankruptcy and shutdown==&lt;br /&gt;
&lt;br /&gt;
On 7 February 2014, all Bitcoin withdrawals were halted by Mt. Gox.&amp;lt;ref name=doughterty2014&amp;gt;{{cite news | work=Bloomberg | date=7 February 2014 | url=http://www.bloomberg.com/news/2014-02-07/bitcoin-price-falls-as-mt-gox-exchange-halts-activity.html | title= Bitcoin Price Plunges as Mt. Gox Exchange Halts Activity | last=Dougherty | first=Carter | accessdate=9 February 2014 }}&amp;lt;/ref&amp;gt; The company said it was pausing withdrawal requests “to obtain a clear technical view of the currency processes”.&amp;lt;ref name=doughterty2014/&amp;gt; The company issued a press release on February 10, 2014 stating that the issue was due to transaction malleability: “A bug in the bitcoin software makes it possible for someone to use the Bitcoin network to alter transaction details to make it seem like a sending of bitcoins to a bitcoin wallet did not occur when in fact it did occur. Since the transaction appears as if it has not proceeded correctly, the bitcoins may be resent. MtGox is working with the Bitcoin core development team and others to mitigate this issue.”&amp;lt;ref&amp;gt;{{cite press release | title=Update - Statement Regarding BTC Withdrawal Delays | publisher=Mt. Gox Co. Ltd. | date=10 February 2014 | url=https://www.mtgox.com/press_release_20140210.html | archiveurl=https://web.archive.org/web/20140210122955/https://www.mtgox.com/press_release_20140210.html | archivedate=10 February 2014 }}&amp;lt;/ref&amp;gt;&amp;lt;ref&amp;gt;http://www.pokerupdate.com/news/business-and-finance/mt-gox-shutdown-puts-bitcoin-investors-on-edge/&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
On 17 February 2014, with all Mt. Gox withdrawals still halted and competing exchanges back in full operation, the company published another press release indicating the steps they claim they are taking to address security issues.&amp;lt;ref&amp;gt;{{cite press release | title=20140217-Announcement: Tokyo, Japan, February 17th, 2014 | url=https://www.mtgox.com/img/pdf/20140217-Announcement.pdf | format=PDF | archiveurl=https://web.archive.org/web/*/https://www.mtgox.com/img/pdf/20140217-Announcement.pdf | archivedate=17 February 2014 | date=17 February 2014 | location=Tokyo | publisher=Mt. Gox }}&amp;lt;/ref&amp;gt; In an email interview with the &#039;&#039;Wall Street Journal&#039;&#039;, CEO Mark Karpelès refused to comment on increasing concerns among customers about the financial status of the exchange, did not give a definite date on which withdrawals would be resumed, and wrote that the exchange would impose &amp;quot;new daily and monthly limits&amp;quot; on withdrawals if and when they were resumed.&amp;lt;ref&amp;gt;{{cite news |&lt;br /&gt;
url=http://online.wsj.com/news/articles/SB10001424052702304899704579388483531937144?mg=reno64-wsj&amp;amp;url=http%3A%2F%2Fonline.wsj.com%2Farticle%2FSB10001424052702304899704579388483531937144.html |&lt;br /&gt;
title=Bitcoin Platform Mt. Gox Apologizes for Delayed Response - CEO Karpeles Declines To Shed Light On How Customer Funds Are Protected |&lt;br /&gt;
publisher=Wall Street Journal |&lt;br /&gt;
author=Mochizuki, Takashi and Warnock, Eleanor |&lt;br /&gt;
date=February 17, 2014 }}&amp;lt;/ref&amp;gt; A poll of 3000 Mt. Gox customers by CoinDesk indicated that 68% of customers were still awaiting funds from Mt. Gox.  The median waiting time was between one to three months. 21% of poll respondents had been waiting for three months or more.&amp;lt;ref&amp;gt;{{cite news |&lt;br /&gt;
url=http://www.coindesk.com/mt-gox-users-awaiting-funds-survey-reveals/ |&lt;br /&gt;
title=68% of Mt. Gox Users Still Awaiting Their Funds, Survey Reveals |&lt;br /&gt;
date=15 February 2014 |&lt;br /&gt;
publisher=Coin Desk |&lt;br /&gt;
author=Wong, Joon Ian}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
On 20 February 2014, with all withdrawals still halted, Mt. Gox issued yet another statement, giving no date for the resumption of withdrawals.&amp;lt;ref name=cnbcfury&amp;gt;{{cite news |&lt;br /&gt;
url = http://www.cnbc.com/id/101431022 |&lt;br /&gt;
title=Bitcoin investor fury at Mt Gox delays |&lt;br /&gt;
date=February 20, 2014 |&lt;br /&gt;
publisher=CNBC |&lt;br /&gt;
author=Clinch, Matt}}&amp;lt;/ref&amp;gt; A protest by two Bitcoin enthusiasts outside the building that houses the Mt. Gox headquarters in Tokyo continued. &lt;br /&gt;
Citing &amp;quot;security concerns&amp;quot;, Mt. Gox announced they had moved their offices to a different location in Shibuya. Bitcoin prices quoted by Mt. Gox dropped below 20% of the prices on other exchanges, reflecting the market&#039;s estimate of the unlikelihood of Mt. Gox paying their customers.&amp;lt;ref&amp;gt;{{cite news |&lt;br /&gt;
url=http://www.theverge.com/2014/2/19/5425220/protest-at-mt-gox-bitcoin-exchange-in-tokyo |&lt;br /&gt;
title=Mt. Gox, where is our money? |&lt;br /&gt;
date=February 20, 2014 |&lt;br /&gt;
publisher=The Verge |&lt;br /&gt;
author=Byford, Sam}}&amp;lt;/ref&amp;gt;&amp;lt;ref&amp;gt;{{cite news |&lt;br /&gt;
title=Bitcoin exchange in Downward Spiral: &amp;quot;Mt Gox has left the building&amp;quot; |&lt;br /&gt;
publisher=Heise |&lt;br /&gt;
date=February 20, 2014 |&lt;br /&gt;
location=Hannover, Germany |&lt;br /&gt;
url=http://www.heise.de/newsticker/meldung/Bitcoin-Boerse-in-Abwaertsspirale-Mt-Gox-has-left-the-building-2119550.html }}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
On 23 February 2014, Mark Karpelès, the CEO of Mt. Gox, resigned from the board of the [[Bitcoin Foundation]].&amp;lt;ref&amp;gt;{{cite news | url=http://www.reuters.com/article/2014/02/24/mtgox-bitcoinfoundation-idUSL3N0LT15X20140224 | work=Reuters | date=February 23, 2014 | title=Mt. Gox resigns from Bitcoin Foundation | accessdate=25 February 2014 }}&amp;lt;/ref&amp;gt; The same day, all posts on their Twitter account were removed.&amp;lt;ref&amp;gt;{{cite news | url=http://www.businessinsider.com/mtgox-resigns-from-bitcoin-foundation-2014-2 | publisher=Business Insider | date=February 23, 2014 | title=MtGox Resigns From Bitcoin Foundation, Deletes All Tweets From Twitter Feed | accessdate=25 February 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
On 24 February 2014, Mt. Gox suspended all trading, and hours later its website went offline, returning a blank page.&amp;lt;ref name=&amp;quot;WiredGox&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;NYTGox&amp;quot;/&amp;gt;&amp;lt;ref&amp;gt;{{cite news | url=http://bigstory.ap.org/article/website-bitcoin-exchange-mt-gox-offline | first1=Yuriko | last1=Nagano | first2=Stephen | last2=Wright | title=Website of Bitcoin exchange Mt. Gox offline | work=Associated Press | date=25 February 2014 | accessdate=25 February 2014}}&amp;lt;/ref&amp;gt; An alleged leaked internal crisis management document claimed that the company was insolvent, after losing 744,408 bitcoins in a theft which went undetected for years.&amp;lt;ref name=&amp;quot;WiredGox&amp;quot;&amp;gt;{{cite news | url=http://www.wired.com/wiredenterprise/2014/02/bitcoins-mt-gox-implodes/?cid=co19086554 | title=Bitcoin exchange Mt. Gox implodes amid allegations of $350 million hack| first=Robert |last=McMillan|work=[[Wired (magazine)|Wired]]|date=24 February 2014|accessdate=25 February 2014}}&amp;lt;/ref&amp;gt;&amp;lt;ref name=&amp;quot;NYTGox&amp;quot;&amp;gt;{{cite news | url=http://www.nytimes.com/2014/02/25/business/apparent-theft-at-mt-gox-shakes-bitcoin-world.html | title=Apparent theft at Mt. Gox shakes Bitcoin world|first1=Nathaniel|last1=Popper|first2=Rachel|last2=Abrams|work=[[The New York Times]]|date=25 February 2014|accessdate=25 February 2014}}&amp;lt;/ref&amp;gt;&amp;lt;ref&amp;gt;[http://www.theguardian.com/technology/2014/feb/27/how-does-a-bug-in-bitcoin-lead-to-mtgoxs-collapse How a bug in bitcoin led to MtGox&#039;s collapse], Alex Hern, [[The Guardian]], Feb. 27, 2014&amp;lt;/ref&amp;gt;&amp;lt;ref&amp;gt;[http://www.foxbusiness.com/markets/2014/02/25/mt-gox-ceo-says-on-internet-chat-hasnt-given-up/]&amp;lt;/ref&amp;gt; Six other major bitcoin exchanges released a joint statement distancing themselves from Mt. Gox, shortly before Mt. Gox&#039;s website went offline.&amp;lt;ref&amp;gt;{{cite news | url=http://www.reuters.com/article/2014/02/25/mtgox-website-idUSL3N0LU1N920140225 | work=Reuters | title=Bitcoin exchange Mt. Gox&#039;s website down | date=25 February 2014 | accessdate=25 February 2014}}&amp;lt;/ref&amp;gt;&amp;lt;ref&amp;gt;{{cite press release | title=The Coinbase Blog - Joint Statement Regarding MtGox | date=24 February 2014 | work=The Coinbase Blog |publisher=Coinbase| url=http://blog.coinbase.com/post/77766809700/joint-statement-regarding-mtgox | accessdate=24 February 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
On 25 February 2014, Mt.Gox reported on its website that a &amp;quot;decision was taken to close all transactions for the time being&amp;quot;, citing &amp;quot;recent news reports and the potential repercussions on MtGox&#039;s operations&amp;quot;. The chief executive, Mark Karpelès told &#039;&#039;Reuters&#039;&#039; that Mt. Gox was &amp;quot;at a turning point&amp;quot;.&amp;lt;ref name=Reuters-closed&amp;gt;{{cite news|title=Mt. Gox website says all transactions closed &amp;quot;for the time being&amp;quot;|url=http://www.reuters.com/article/2014/02/25/us-mtgox-website-idUSBREA1O07920140225|accessdate=25 February 2014|newspaper=Reuters|date=25 February 2014}}&amp;lt;/ref&amp;gt;&amp;lt;ref name=Lowery-end&amp;gt;{{cite news|last=Lowery|first=Adrian|title=Is it the beginning of the end for Bitcoin? Virtual currency in turmoil as rumoured $375m theft closes major exchange |url=http://www.thisismoney.co.uk/money/news/article-2567436/Bitcoin-turmoil-rumoured-375m-theft-closes-major-exchange.html|accessdate=25 February 2014|newspaper=This is money|date=25 February 2014}}&amp;lt;/ref&amp;gt;&amp;lt;ref name=Anklam-offline&amp;gt;{{cite news|last=Anklam|first=Fred|title=Bitcoin exchange Mt. Gox goes offline amid turmoil|url=http://www.usatoday.com/story/tech/2014/02/25/mt-gox-offline/5801093/|accessdate=25 February 2014|newspaper=USA Today|date=25 February 2014}}&amp;lt;/ref&amp;gt;&amp;lt;ref name=Vaishampayan&amp;gt;{{cite news|last=Vaishampayan|first=Saumya|title=Mt. Gox says transactions closed &#039;for time being&#039;|url=http://www.marketwatch.com/story/mt-gox-says-transactions-closed-for-time-being-2014-02-25?link=MW_home_latest_news|accessdate=25 February 2014|newspaper=Market Watch|date=25 February 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
On 28 February 2014 Mt. Gox filed for bankruptcy protection in Tokyo, reporting that it had liabilities of about 6.5 billion [[Japanese yen|yen]] ($64 million at the time), and 3.84 billion yen in assets.&amp;lt;ref name=warnock2014&amp;gt;{{cite news | first1=Eleanor | last1=Warnock | first2=Takashi | last2=Mochizuki | first3=Alexander|last3=Martin | date=28 February 2014 | work=The Wall Street Journal | url=http://online.wsj.com/news/article_email/SB10001424052702303801304579410010379087576 | title=Mt. Gox files for bankruptcy protection | accessdate=28 February 2014}}&amp;lt;/ref&amp;gt;&amp;lt;ref name=takemoto2014&amp;gt;{{cite news | title=Mt. Gox files for bankruptcy, blames hackers for losses | url=http://www.reuters.com/article/2014/02/28/us-bitcoin-mtgox-bankruptcy-idUSBREA1R0FX20140228 | first1=Yoshifumi |last1=Takemoto |first2=Sophie |last2=Knight|work=Reuters|date=28 February 2014|accessdate=28 February 2014}}&amp;lt;/ref&amp;gt; The company said they had lost almost 750,000 of its customers&#039; bitcoins, and around 100,000 of its own bitcoins, totaling around 7% of all bitcoins, and worth around $473 million near the time of the filing.&amp;lt;ref name=warnock2014/&amp;gt;&amp;lt;ref name=takemoto2014/&amp;gt; Mt. Gox released a statement saying &amp;quot;The company believes there is a high possibility that the Bitcoins were stolen,”&amp;lt;ref name=&amp;quot;Bloomberg28&amp;quot;&amp;gt;[http://www.bloomberg.com/news/2014-02-28/mt-gox-exchange-files-for-bankruptcy.html Mt. Gox Seeks Bankruptcy After $480 Million Bitcoin Loss], Carter Dougherty and Grace Huang, [[Bloomberg News]], Feb. 28, 2014&amp;lt;/ref&amp;gt; blaming hackers,&amp;lt;ref name=titan /&amp;gt; thus beginning a search for the missing money. Chief Executive of Mt. Gox, Mark Karpelès, said technical issues opened up the way for fraudulent withdrawals. &lt;br /&gt;
&lt;br /&gt;
Mt. Gox also faces lawsuits from its customers.&amp;lt;ref name=&amp;quot;Sidel-bitcoin vanish&amp;quot;&amp;gt;{{cite news|last=Sidel|first=Robin|title=Almost Half a Billion Worth of Bitcoins Vanish|url=http://online.wsj.com/news/articles/SB10001424052702303801304579410010379087576?mod=WSJ_hp_LEFTWhatsNewsCollection&amp;amp;mg=reno64-wsj&amp;amp;url=http%3A%2F%2Fonline.wsj.com%2Farticle%2FSB10001424052702303801304579410010379087576.html%3Fmod%3DWSJ_hp_LEFTWhatsNewsCollection|accessdate=3 March 2014|newspaper=Wall Street Journal|date=28 February 2014}}&amp;lt;/ref&amp;gt;&amp;lt;ref&amp;gt;{{cite web | url=http://www.investing.com/news/economy-news/mtgox-boss-sued-for-bitcoin-losses-270031 | title=&lt;br /&gt;
MtGox Boss Sued For Bitcoin Losses | work=[[Investing.com]] | date=4 March 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
On 9 March 2014, Mt. Gox filed for bankruptcy protection in the US, to temporarily halt U.S. legal action by traders who alleged the operation was a fraud.&amp;lt;ref name=Finley-bankruptcy&amp;gt;{{cite news|last=Finley|first=Klint|title=Bitcoin Exchange Mt. Gox Files for U.S. Bankruptcy as Death Spiral Continues|url=http://www.wired.com/wiredenterprise/2014/03/gox-texas/|accessdate=11 March 2014|newspaper=Wired|date=10 March 2014}}&amp;lt;/ref&amp;gt;&amp;lt;ref name=Hals-bankrupt&amp;gt;{{cite news|last=Hals|first=Tom|title=Mt. Gox files U.S. bankruptcy, opponents call it a ruse|url=http://www.reuters.com/article/2014/03/10/us-bitcoin-mtgox-bankruptcy-idUSBREA290WU20140310|accessdate=11 March 2014|newspaper=Reuters|date=10 March 2014}}&amp;lt;/ref&amp;gt;&amp;lt;ref name=NYP-Bankrupt&amp;gt;{{cite news|title=Bitcoin exchange Mt. Gox files for US bankruptcy|url=http://nypost.com/2014/03/10/bitcoin-exchange-mt-gox-files-for-us-bankruptcy/|accessdate=11 March 2014|newspaper=New York Post|date=10 March 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
On 20 March 2014, Mt. Gox reported on its website that it found some bitcoins — worth around $116 million — in an old digital wallet from 2011. That brings the total number of bitcoins the firm lost down to 650,000 from 850,000.&amp;lt;ref&amp;gt;{{cite web&lt;br /&gt;
 |url         = https://www.mtgox.com/img/pdf/20140320-btc-announce.pdf&lt;br /&gt;
 |title       = 当社保有ビットコインの残高に関するお知らせ / Announcement regarding the balance of Bitcoin held by the company&lt;br /&gt;
 |subtitle    = &lt;br /&gt;
 |author      = Karpeles, Mark&lt;br /&gt;
 |quote       = MtGox Co., Ltd. had certain old­format wallets which were used in the past and which, MtGox &lt;br /&gt;
thought, no longer held any bitcoins. Following the application for commencement of a civil rehabilitation proceeding, these wallets were rescanned and their balance researched. On March 7,  2014, MtGox Co., Ltd. confirmed that an old­format wallet which was used prior to June 2011 held a  balance of approximately 200,000 BTC (199,999.99 BTC).&lt;br /&gt;
 |date        = 2014-03-20&lt;br /&gt;
 |format      = PDF&lt;br /&gt;
 |work        = &lt;br /&gt;
 |publisher   = MtGox&lt;br /&gt;
 |accessdate  = 2014-03-22&lt;br /&gt;
 |description = &lt;br /&gt;
 |deadurl    = &lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
On April 14, Mt. Gox lawyers said that Mark Karpeles wouldn&#039;t appear for a deposition in a Dallas court, or heed a subpoena by FinCEN.&amp;lt;ref name=titan&amp;gt;{{cite news|last=Mochizuki|first=Takashi|title=Tracing a Bitcoin&#039;s Exchange&#039;s Fall From the Top to Shutdown Mark Karpelès hoped to set up a bitcoin cafe in the building where his exchange rented space.|url=http://online.wsj.com/news/articles/SB10001424052702304311204579508300513992292?mg=reno64-wsj&amp;amp;url=http%3A%2F%2Fonline.wsj.com%2Farticle%2FSB10001424052702304311204579508300513992292.html|accessdate=22 April 2014|newspaper=WSJ|date=20 April 2014}}&amp;lt;/ref&amp;gt; &lt;br /&gt;
On 16 April 2014, Mt. Gox gave up its plan to rebuild under bankruptcy protection, and asked a Tokyo court to allow it to be liquidated.&amp;lt;ref&amp;gt;http://online.wsj.com/news/article_email/SB10001424052702303663604579504691512965308-lMyQjAxMTA0MDEwNTExNDUyWj&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;
* [[Bitcoin Ladder]]&lt;br /&gt;
&lt;br /&gt;
==External Links==&lt;br /&gt;
&lt;br /&gt;
* [https://mtgox.com MT. Gox exchange] now defunct website&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>C0ldfusi0nz</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Mt._Gox&amp;diff=49782</id>
		<title>Mt. Gox</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Mt._Gox&amp;diff=49782"/>
		<updated>2014-08-12T12:45:33Z</updated>

		<summary type="html">&lt;p&gt;C0ldfusi0nz: /* History */ Adding rest of MTGOX history, up to point of shutdown&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{outdated}}{{infobox company|name=MtGox|image=[[File:MtGox.png|256px]]&lt;br /&gt;
|trading_name=Mt. Gox&lt;br /&gt;
|industry=[[Exchange|Fiat exchange]]&lt;br /&gt;
|foundation=July 18, 2010&lt;br /&gt;
|defunct=February 25, 2014&lt;br /&gt;
|location=Shibuya, Tokyo, Japan&lt;br /&gt;
|founder=[[Jed McCaleb]]&lt;br /&gt;
|owner=[[Mark Karpeles]]&lt;br /&gt;
|parent=[[Tibanne Ltd.]]&lt;br /&gt;
|pairs=USD/BTC&amp;lt;br/&amp;gt;EUR/BTC&amp;lt;br/&amp;gt;CAD/BTC&amp;lt;br/&amp;gt;GBP/BTC&amp;lt;br/&amp;gt;CHF/BTC&amp;lt;br/&amp;gt;RUB/BTC&amp;lt;br/&amp;gt;AUD/BTC&amp;lt;br/&amp;gt;SEK/BTC&amp;lt;br/&amp;gt;DKK/BTC&amp;lt;br/&amp;gt;HKD/BTC&amp;lt;br/&amp;gt;PLN/BTC&amp;lt;br/&amp;gt;CNY/BTC&amp;lt;br/&amp;gt;SGD/BTC&amp;lt;br/&amp;gt;TBH/BTC&amp;lt;br/&amp;gt;NZD/BTC&amp;lt;br/&amp;gt;JPY/BTC&lt;br /&gt;
|website=https://mtgox.com&lt;br /&gt;
}}&#039;&#039;&#039;MtGox&#039;&#039;&#039;, called &amp;quot;Mount Gox&amp;quot; or simply &amp;quot;Gox&amp;quot;, was the most widely used bitcoin [[currency exchange]] market from 2010-2013&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. The market was closed February 25, 2014.&lt;br /&gt;
&lt;br /&gt;
A registrant on MtGox had at least two sub-accounts: one for bitcoins (BTC), and one for US dollars (USD or MTGUSD) or other national currency. Bitcoins were bought using funds from the trader&#039;s national currency account, and the proceeds from the sale of bitcoins were deposited into the same account. Trading always involved bitcoins as trading between different national currencies was not offered.&lt;br /&gt;
&lt;br /&gt;
Trades on Mt. Gox&#039;s executed from balances on deposit with the exchange which in turn made trading on the market instantaneous, compared to most other Bitcoin markets of the time where a subsequent settlement occurred manually between the trading partners. The disadvantage of this was that a third party had to 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 was 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;
A buy order was executed partially or in full when the price bid could be matched against a sell order that was at or below the bid amount.  A sell order was executed partially or in full when the price asked could be matched against a buy order that was at or above the ask amount.  Orders that could not be matched immediately remain in the orderbook.&lt;br /&gt;
&lt;br /&gt;
Unfunded orders did not appear in the order book, but were automatically inserted when a deposit was credited.  For example, Mt. Gox allowed the entry of a &amp;quot;buy&amp;quot; order even if the account had insufficient funds.  If possible, Mt. Gox would execute a portion of the order if it could be partially funded.  If a deposit was later credited and the deposit resolves the insufficient funds status of an outstanding order, the order would be immediately activated, and if possible, executed.&lt;br /&gt;
&lt;br /&gt;
===Fees===&lt;br /&gt;
&lt;br /&gt;
Mt. Gox charged a trading fee of up to 0.6% from each party of successful trades made through the market.  The fee appeared in the account history next to each trade.  The trading fee was discounted for larger customers based on volume, which was calculated as a sliding window over the last 720 hours (30 days).&lt;br /&gt;
&lt;br /&gt;
The fees were, 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 would 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 were no fees incurred when transferring bitcoins to a Mt. Gox account.&lt;br /&gt;
&lt;br /&gt;
Funds were 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 could take roughly an hour.&lt;br /&gt;
&lt;br /&gt;
The deposit address was presented along with a QR code that can be scanned with a mobile.  This address did not change with each deposit request.&lt;br /&gt;
&lt;br /&gt;
The Add Bitcoins function experienced issues with some browser ad-blocking utilities even though no advertisements were 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;) could be deposited and would be available for trading.&lt;br /&gt;
&lt;br /&gt;
===OKPay===&lt;br /&gt;
&lt;br /&gt;
[[OKPay]] could 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) could 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) could be deposited using Boleto or through Banco Recomendito.&lt;br /&gt;
&lt;br /&gt;
====Brazil (BRL)====&lt;br /&gt;
* BitInstant - Cash (Russian rubles) could be deposited using QIWI or Cyberplat&lt;br /&gt;
&lt;br /&gt;
====UK (GBP)====&lt;br /&gt;
* Barclays - Cash (British pound sterling) could be deposited at any Barclays location.  There was 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 could 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 could be added using SEPA Direct Debit for free, with funds convert to USD at the current ECB rate at the time the funds were 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 could be sent as a GBP direct deposit free of charge.&lt;br /&gt;
&lt;br /&gt;
====Australia====&lt;br /&gt;
&lt;br /&gt;
Funds could 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 were counted toward this limit as well and the USD value was 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 could 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]] was among the fastest and least expensive methods for withdrawing USD funds from a Mt. Gox account. The transaction fee to do so was just $0.25.&lt;br /&gt;
[[Dwolla]] withdrawals were 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 was running checks to see if the transfer can be executed.&lt;br /&gt;
* Confirmed: Transfer could be executed and was pending in queue.&lt;br /&gt;
* Todo: Transfer was 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 could be withdrawn at no charge.&lt;br /&gt;
&lt;br /&gt;
A [[green address]] option was available though this type of transaction could experience a delay if the exchange&#039;s wallet funding level for green address transactions was 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 was currently no option for withdrawing funds through a direct deposit bank transaction.  Funds withdrawn to Dwolla could 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;
Users could withdraw any amount as a direct deposit to their bank.  There was 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) was subtracted and the remaining amount was sent via international wire in the chosen currency. If not AUD then an exchange fee of 2.5% would 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 was to place a request through the exchange&#039;s [https://mtgox.zendesk.com help desk].  Another method was 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 were configured independently.&lt;br /&gt;
&lt;br /&gt;
For example, a typical configuration was 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 were 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) was 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 was 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 was 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 could accept bitcoins for payment using the Mt. Gox&#039;s E-commerce Solution, which was 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;
===Trading incidents===&lt;br /&gt;
On 19 June 2011, a security breach of the Mt. Gox bitcoin exchange caused the nominal price of a bitcoin to fraudulently drop to one cent on the Mt. Gox exchange, after a hacker allegedly used credentials from a Mt. Gox auditor&#039;s compromised computer illegally to transfer a large number of bitcoins to himself. He used the exchange&#039;s software to sell them all nominally, creating a massive &amp;quot;[[Ask price|ask]]&amp;quot; order at any price. Within minutes the price corrected to its correct user-traded value.&amp;lt;ref&amp;gt;{{cite press release | last=Karpeles | first=Mark | title=Clarification of Mt Gox Compromised Accounts and Major Bitcoin Sell-Off | date=30 June 2011 | url=https://mtgox.com/press_release_20110630.html | publisher=Tibanne Co. Ltd. | archiveurl=https://web.archive.org/web/20110919162635/https://mtgox.com/press_release_20110630.html | archivedate=19 September 2014 }}&amp;lt;/ref&amp;gt;&amp;lt;ref&amp;gt;{{cite AV media|people= |date= 19 June 2011 |time= |medium= |url= http://www.youtube.com/watch?v=T1X6qQt9ONg |accessdate= |archiveurl= |archivedate= |title= Bitcoin Report Volume 8 - (FLASHCRASH) |publisher=YouTube BitcoinChannel |id= |quote= |ref= }}&amp;lt;/ref&amp;gt;&amp;lt;ref name=&amp;quot;mick&amp;quot;&amp;gt;{{cite news|last= Mick |first= Jason |title= Inside the Mega-Hack of Bitcoin: the Full Story |date= 19 June 2011 |url= http://www.dailytech.com/Inside+the+MegaHack+of+Bitcoin+the+Full+Story/article21942.htm | work=DailyTech }}&amp;lt;/ref&amp;gt;&amp;lt;ref&amp;gt;{{cite news | first=Timothy B.|last=Lee |date=19 June 2011 | url=http://arstechnica.com/tech-policy/news/2011/06/bitcoin-price-plummets-on-compromised-exchange.ars | title=Bitcoin prices plummet on hacked exchange | work=Ars Technica | publisher=[[Condé Nast]] }}&amp;lt;/ref&amp;gt;&amp;lt;ref&amp;gt;Mark Karpeles, 20 June 2011, [http://bitgear.co/blogs/news/13602537-huge-bitcoin-sell-off-due-to-a-compromised-account-rollback Huge Bitcoin sell off due to a compromised account – rollback], Mt. Gox Support&amp;lt;/ref&amp;gt;&amp;lt;ref name=&amp;quot;register1&amp;quot;&amp;gt;{{cite news|title= Bitcoin collapses on malicious trade – Mt Gox scrambling to raise the Titanic |url= http://www.theregister.co.uk/2011/06/19/bitcoin_values_collapse_again/ |date=19 June 2011 |author= Chirgwin, Richard | work=The Register }}&amp;lt;/ref&amp;gt; Accounts with the equivalent of more than $8,750,000 were affected.&amp;lt;ref name=&amp;quot;mick&amp;quot; /&amp;gt; In order to prove that Mt.Gox still had control of the coins, the move of 424,242 bitcoins from &amp;quot;cold storage&amp;quot; to a Mt.Gox address was announced beforehand and executed in Block 132749.&amp;lt;ref&amp;gt;http://blockexplorer.com/b/132749&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In October 2011, about two dozen transactions appeared in the block chain (Block 150951)&amp;lt;ref&amp;gt;http://blockexplorer.com/b/150951&amp;lt;/ref&amp;gt; that sent a total of 2,609 BTC to invalid addresses. As no private key could ever be assigned to them, these Bitcoins were effectively lost. While the standard client would check for such an error and reject the transactions, nodes on the network would not, exposing a weakness in the protocol. &lt;br /&gt;
&lt;br /&gt;
On 22 February 2013, following an introduction of new anti-[[money laundering]] requirements by [[Dwolla]], some Dwolla accounts became temporarily restricted. As a result, transactions from Mt. Gox to those accounts were cancelled by Dwolla. The funds never made it back to Mt. Gox accounts. Mt. Gox help desk issued the following comment: &amp;quot;Please be advised that you are actually not allowed to cancel any withdrawals received from Mt. Gox as we have never had this case before and we are working with Dwolla to locate your returned funds.&amp;quot; The funds were finally returned on May 3, more than 3 months later, with a note &amp;quot;Please be advised never to cancel any Dwolla withdrawals from us again&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
In March 2013, the bitcoin transaction log or &amp;quot;blockchain&amp;quot; temporarily forked into two independent logs with differing rules on how transactions could be accepted. The Mt. Gox bitcoin exchange briefly halted bitcoin deposits. Bitcoin prices briefly dipped by 23% to $37 as the event occurred&amp;lt;ref name=ArsFork&amp;gt;{{cite news|last=Lee|first=Timothy|title=Major glitch in Bitcoin network sparks sell-off; price temporarily falls 23%|url=http://arstechnica.com/business/2013/03/major-glitch-in-bitcoin-network-sparks-sell-off-price-temporarily-falls-23/|work=Ars Technica| publisher=[[Condé Nast]]|accessdate=12 March 2013}}&amp;lt;/ref&amp;gt;&amp;lt;ref name=VergeFork&amp;gt;{{cite news|last=Blagdon|first=Jeff|title=Technical problems cause Bitcoin to plummet from record high, Mt. Gox suspends deposits|url=http://www.theverge.com/2013/3/12/4092898/technical-problems-cause-bitcoin-to-plummet-from-record-high|work=The Verge|accessdate=12 March 2013}}&amp;lt;/ref&amp;gt; before recovering to their previous level in the following hours, a price of approximately $48.&amp;lt;ref&amp;gt;{{cite web| title=Bitcoin Charts | work=Bitcoin Charts | url=http://bitcoincharts.com/charts/mtgoxUSD#rg60zczsg2013-03-12zeg2013-03-15ztgSzm1g10zm2g25zv}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Suspension of trading 2013===&lt;br /&gt;
Mt. Gox suspended trading on 11 April 2013 until 12 April 2013 2 am [[UTC]] for a &amp;quot;market cooldown&amp;quot;.&amp;lt;ref&amp;gt;{{cite web|url=https://twitter.com/MtGox/status/322355614414147588 |title=Twitter / MtGox: Trading is suspended until |publisher=Twitter.com |date= |accessdate=2014-02-17}}{{dead link|date=February 2014}}&amp;lt;/ref&amp;gt; The value of a single bitcoin fell to a low of $55.59 after the resumption of trading before stabilizing above $100. Around mid May 2013, Mt. Gox traded 150,000 bitcoins per day per Bitcoin Charts.&amp;lt;ref name=titan /&amp;gt; &lt;br /&gt;
&lt;br /&gt;
Mt. Gox suspended withdrawals in US dollars on June 20, 2013.&amp;lt;ref&amp;gt;{{cite news | title=Bitcoin’s Big Bank Problem: Why Did Mt. Gox Halt U.S. Payouts? | url=http://www.wired.com/wiredenterprise/2013/06/mt-gox-stops/ | last=McMillan|first=Robert | work=Wired | publisher=[[Condé Nast]] | date=20 June 2013}}&amp;lt;/ref&amp;gt;  The [[Mizuho Bank]] branch in Tokyo that handled Mt. Gox transactions pressured Mt. Gox from then on to close its account.&amp;lt;ref name=titan /&amp;gt;  On July 4, 2013, Mt. Gox announced that it had &amp;quot;fully resumed&amp;quot; withdrawals, but as of September 5, 2013, few US dollar withdrawals had been successfully completed.&amp;lt;ref&amp;gt;{{cite news | url=http://blogs.wsj.com/moneybeat/2013/07/05/bitcoin-operator-mt-gox-resumes-withdrawals/ |&lt;br /&gt;
title=Bitcoin operator Mt. Gox resumes withdrawals |&lt;br /&gt;
last=Vigna|first=Paul |&lt;br /&gt;
date=5 July 2013 |&lt;br /&gt;
work=The Wall Street Journal}}&amp;lt;/ref&amp;gt;&amp;lt;ref&amp;gt;{{cite news |&lt;br /&gt;
url=http://blogs.wsj.com/moneybeat/2013/07/30/bitcoin-exchange-mt-gox-still-grappling-with-slowdown/ |&lt;br /&gt;
title=Bitcoin exchange Mt. Gox still grappling with slowdown |&lt;br /&gt;
last=Vigna|first=Paul |&lt;br /&gt;
date=31 July 2013 |&lt;br /&gt;
work=The Wall Street Journal}}&amp;lt;/ref&amp;gt;&amp;lt;ref&amp;gt;{{cite news |&lt;br /&gt;
url=http://www.forbes.com/sites/beltway/2013/09/03/how-bitcoin-spreads-violate-a-fundamental-economic-law/ |&lt;br /&gt;
work=Forbes |&lt;br /&gt;
date=3 September 2013 |&lt;br /&gt;
title=How Bitcoin spreads violate a fundamental economic law |&lt;br /&gt;
author=Marron, Donald}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
On August 5, 2013, Mt. Gox announced that they incurred &amp;quot;significant losses&amp;quot; due to crediting deposits which had not fully cleared and that new deposits would no longer be credited until the funds transfer was fully completed.&amp;lt;ref&amp;gt;{{cite press release | title=August 2013 Mt. Gox Status Update | publisher=Mt. Gox Co. Ltd. | date=5 August 2013 | url=https://www.mtgox.com/press_release_20130805.html | archiveurl=https://web.archive.org/web/20130805084259/https://www.mtgox.com/press_release_20130805.html | archivedate=5 August 2013}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===CoinLab lawsuit and Homeland Security seizure of US funds===&lt;br /&gt;
On 2 May 2013 CoinLab filed a $75 million lawsuit against Mt. Gox alleging a breach of contract.&amp;lt;ref name=chen2013&amp;gt;{{cite news|last=Chen | first=Adrian | work=Gawker Media | date=2 May 2013 | title=Massive Bitcoin Business Partnership Devolves Into $75 Million Lawsuit|url=http://gawker.com/massive-bitcoin-business-partnership-devolves-into-75-487857656|accessdate=8 June 2013}}&amp;lt;/ref&amp;gt; The companies had formed a partnership in February 2013 under which CoinLab handled all of Mt. Gox&#039;s North American services.&amp;lt;ref name=chen2013/&amp;gt; CoinLab&#039;s lawsuit contends that Mt. Gox failed to allow them to move existing U.S. and Canadian customers from Mt. Gox to CoinLab.&amp;lt;ref name=chen2013/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
On 15 May 2013 the US [[Department of Homeland Security]] (DHS) issued a warrant to seize money from Mt. Gox&#039;s US subsidiary&#039;s account with payment processor [[Dwolla]].&amp;lt;ref name=dillet2013/&amp;gt; The warrant suggests the US [[Immigration and Customs Enforcement]], an investigative branch of the DHS, felt that the subsidiary, which was not licensed by the US [[Financial Crimes Enforcement Network]] (FinCEN), was operating as an unregistered [[money transmitter]] in the US.&amp;lt;ref name=dillet2013&amp;gt;{{cite news|last=Dillet|first=Romain|title=Feds Seize Assets From Mt. Gox’s Dwolla Account, Accuse It Of Violating Money Transfer Regulations | work=TechCrunch | publisher=[[AOL|AOL Inc.]] | date=16 May 2013 | url=http://techcrunch.com/2013/05/16/mt-gox-dwolla-account-money-seizure/ | accessdate=10 February 2014 }}&amp;lt;/ref&amp;gt;&amp;lt;ref name=msblic&amp;gt;{{ cite news | title=MtGox Gets FinCEN MSB License | work=Bitcoin Magazine | publisher=Coin Publishing Ltd. | first=Vitalik | last=Buterin | date=29 June 2013 | url=http://bitcoinmagazine.com/5560/mtgox-gets-fincen-msb-license/ | accessdate=10 February 2014}}&amp;lt;/ref&amp;gt; Between May and July more than $5 million were seized. &amp;lt;ref name=titan /&amp;gt; On 29 June 2013, Mt. Gox received its [[money services business]] (MSB) license from FinCEN.&amp;lt;ref name=msblic/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Withdrawals delayed or refused===&lt;br /&gt;
&#039;&#039;[[Wired Magazine]]&#039;&#039; reported in November 2013 that customers were experiencing delays of weeks to months in withdrawing funds from their accounts.&amp;lt;ref name=mcmillan2013&amp;gt;{{cite news | title=The rise and fall of the world&#039;s largest Bitcoin exchange | last1=McMillan | first1=Robert | last2=Metz | first2=Cade | work=Wired | publisher=[[Condé Nast]] | date=6 November 2013 | url=http://www.wired.com/wiredenterprise/2013/11/mtgox/ | accessdate=8 February 2014 }}&amp;lt;/ref&amp;gt; The article said that the company had “effectively been frozen out of the U.S. banking system because of its regulatory problems”. Customer complaints about long delays were mounting as of February 2014, with more than 3300 posts in a thread about the topic on the Bitcoin Talk online forum.&amp;lt;ref&amp;gt;{{cite news | url=http://www.coindesk.com/poll-mt-gox-withdrawal-issues/ | title=Poll: Are you having Mt. Gox withdrawal issues? | last=Wong | first=Joon Ian | date=4 February 2014 | work=CoinDesk | accessdate=9 February 2014 }}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Bankruptcy and shutdown==&lt;br /&gt;
&lt;br /&gt;
On 7 February 2014, all Bitcoin withdrawals were halted by Mt. Gox.&amp;lt;ref name=doughterty2014&amp;gt;{{cite news | work=Bloomberg | date=7 February 2014 | url=http://www.bloomberg.com/news/2014-02-07/bitcoin-price-falls-as-mt-gox-exchange-halts-activity.html | title= Bitcoin Price Plunges as Mt. Gox Exchange Halts Activity | last=Dougherty | first=Carter | accessdate=9 February 2014 }}&amp;lt;/ref&amp;gt; The company said it was pausing withdrawal requests “to obtain a clear technical view of the currency processes”.&amp;lt;ref name=doughterty2014/&amp;gt; The company issued a press release on February 10, 2014 stating that the issue was due to transaction malleability: “A bug in the bitcoin software makes it possible for someone to use the Bitcoin network to alter transaction details to make it seem like a sending of bitcoins to a bitcoin wallet did not occur when in fact it did occur. Since the transaction appears as if it has not proceeded correctly, the bitcoins may be resent. MtGox is working with the Bitcoin core development team and others to mitigate this issue.”&amp;lt;ref&amp;gt;{{cite press release | title=Update - Statement Regarding BTC Withdrawal Delays | publisher=Mt. Gox Co. Ltd. | date=10 February 2014 | url=https://www.mtgox.com/press_release_20140210.html | archiveurl=https://web.archive.org/web/20140210122955/https://www.mtgox.com/press_release_20140210.html | archivedate=10 February 2014 }}&amp;lt;/ref&amp;gt;&amp;lt;ref&amp;gt;http://www.pokerupdate.com/news/business-and-finance/mt-gox-shutdown-puts-bitcoin-investors-on-edge/&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
On 17 February 2014, with all Mt. Gox withdrawals still halted and competing exchanges back in full operation, the company published another press release indicating the steps they claim they are taking to address security issues.&amp;lt;ref&amp;gt;{{cite press release | title=20140217-Announcement: Tokyo, Japan, February 17th, 2014 | url=https://www.mtgox.com/img/pdf/20140217-Announcement.pdf | format=PDF | archiveurl=https://web.archive.org/web/*/https://www.mtgox.com/img/pdf/20140217-Announcement.pdf | archivedate=17 February 2014 | date=17 February 2014 | location=Tokyo | publisher=Mt. Gox }}&amp;lt;/ref&amp;gt; In an email interview with the &#039;&#039;[[Wall Street Journal]]&#039;&#039;, CEO Mark Karpelès refused to comment on increasing concerns among customers about the financial status of the exchange, did not give a definite date on which withdrawals would be resumed, and wrote that the exchange would impose &amp;quot;new daily and monthly limits&amp;quot; on withdrawals if and when they were resumed.&amp;lt;ref&amp;gt;{{cite news |&lt;br /&gt;
url=http://online.wsj.com/news/articles/SB10001424052702304899704579388483531937144?mg=reno64-wsj&amp;amp;url=http%3A%2F%2Fonline.wsj.com%2Farticle%2FSB10001424052702304899704579388483531937144.html |&lt;br /&gt;
title=Bitcoin Platform Mt. Gox Apologizes for Delayed Response - CEO Karpeles Declines To Shed Light On How Customer Funds Are Protected |&lt;br /&gt;
publisher=Wall Street Journal |&lt;br /&gt;
author=Mochizuki, Takashi and Warnock, Eleanor |&lt;br /&gt;
date=February 17, 2014 }}&amp;lt;/ref&amp;gt; A poll of 3000 Mt. Gox customers by CoinDesk indicated that 68% of customers were still awaiting funds from Mt. Gox.  The median waiting time was between one to three months. 21% of poll respondents had been waiting for three months or more.&amp;lt;ref&amp;gt;{{cite news |&lt;br /&gt;
url=http://www.coindesk.com/mt-gox-users-awaiting-funds-survey-reveals/ |&lt;br /&gt;
title=68% of Mt. Gox Users Still Awaiting Their Funds, Survey Reveals |&lt;br /&gt;
date=15 February 2014 |&lt;br /&gt;
publisher=Coin Desk |&lt;br /&gt;
author=Wong, Joon Ian}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
On 20 February 2014, with all withdrawals still halted, Mt. Gox issued yet another statement, giving no date for the resumption of withdrawals.&amp;lt;ref name=cnbcfury&amp;gt;{{cite news |&lt;br /&gt;
url = http://www.cnbc.com/id/101431022 |&lt;br /&gt;
title=Bitcoin investor fury at Mt Gox delays |&lt;br /&gt;
date=February 20, 2014 |&lt;br /&gt;
publisher=CNBC |&lt;br /&gt;
author=Clinch, Matt}}&amp;lt;/ref&amp;gt; A protest by two Bitcoin enthusiasts outside the building that houses the Mt. Gox headquarters in Tokyo continued. &lt;br /&gt;
Citing &amp;quot;security concerns&amp;quot;, Mt. Gox announced they had moved their offices to a different location in [[Shibuya]]. Bitcoin prices quoted by Mt. Gox dropped below 20% of the prices on other exchanges, reflecting the market&#039;s estimate of the unlikelihood of Mt. Gox paying their customers.&amp;lt;ref&amp;gt;{{cite news |&lt;br /&gt;
url=http://www.theverge.com/2014/2/19/5425220/protest-at-mt-gox-bitcoin-exchange-in-tokyo |&lt;br /&gt;
title=Mt. Gox, where is our money? |&lt;br /&gt;
date=February 20, 2014 |&lt;br /&gt;
publisher=The Verge |&lt;br /&gt;
author=Byford, Sam}}&amp;lt;/ref&amp;gt;&amp;lt;ref&amp;gt;{{cite news |&lt;br /&gt;
title=Bitcoin exchange in Downward Spiral: &amp;quot;Mt Gox has left the building&amp;quot; |&lt;br /&gt;
publisher=Heise |&lt;br /&gt;
date=February 20, 2014 |&lt;br /&gt;
location=Hannover, Germany |&lt;br /&gt;
url=http://www.heise.de/newsticker/meldung/Bitcoin-Boerse-in-Abwaertsspirale-Mt-Gox-has-left-the-building-2119550.html }}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
On 23 February 2014, Mark Karpelès, the CEO of Mt. Gox, resigned from the board of the [[Bitcoin Foundation]].&amp;lt;ref&amp;gt;{{cite news | url=http://www.reuters.com/article/2014/02/24/mtgox-bitcoinfoundation-idUSL3N0LT15X20140224 | work=Reuters | date=February 23, 2014 | title=Mt. Gox resigns from Bitcoin Foundation | accessdate=25 February 2014 }}&amp;lt;/ref&amp;gt; The same day, all posts on their Twitter account were removed.&amp;lt;ref&amp;gt;{{cite news | url=http://www.businessinsider.com/mtgox-resigns-from-bitcoin-foundation-2014-2 | publisher=Business Insider | date=February 23, 2014 | title=MtGox Resigns From Bitcoin Foundation, Deletes All Tweets From Twitter Feed | accessdate=25 February 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
On 24 February 2014, Mt. Gox suspended all trading, and hours later its website went offline, returning a blank page.&amp;lt;ref name=&amp;quot;WiredGox&amp;quot;/&amp;gt;&amp;lt;ref name=&amp;quot;NYTGox&amp;quot;/&amp;gt;&amp;lt;ref&amp;gt;{{cite news | url=http://bigstory.ap.org/article/website-bitcoin-exchange-mt-gox-offline | first1=Yuriko | last1=Nagano | first2=Stephen | last2=Wright | title=Website of Bitcoin exchange Mt. Gox offline | work=Associated Press | date=25 February 2014 | accessdate=25 February 2014}}&amp;lt;/ref&amp;gt; An alleged leaked internal [[crisis management]] document claimed that the company was insolvent, after losing 744,408 bitcoins in a theft which went undetected for years.&amp;lt;ref name=&amp;quot;WiredGox&amp;quot;&amp;gt;{{cite news | url=http://www.wired.com/wiredenterprise/2014/02/bitcoins-mt-gox-implodes/?cid=co19086554 | title=Bitcoin exchange Mt. Gox implodes amid allegations of $350 million hack| first=Robert |last=McMillan|work=[[Wired (magazine)|Wired]]|date=24 February 2014|accessdate=25 February 2014}}&amp;lt;/ref&amp;gt;&amp;lt;ref name=&amp;quot;NYTGox&amp;quot;&amp;gt;{{cite news | url=http://www.nytimes.com/2014/02/25/business/apparent-theft-at-mt-gox-shakes-bitcoin-world.html | title=Apparent theft at Mt. Gox shakes Bitcoin world|first1=Nathaniel|last1=Popper|first2=Rachel|last2=Abrams|work=[[The New York Times]]|date=25 February 2014|accessdate=25 February 2014}}&amp;lt;/ref&amp;gt;&amp;lt;ref&amp;gt;[http://www.theguardian.com/technology/2014/feb/27/how-does-a-bug-in-bitcoin-lead-to-mtgoxs-collapse How a bug in bitcoin led to MtGox&#039;s collapse], Alex Hern, [[The Guardian]], Feb. 27, 2014&amp;lt;/ref&amp;gt;&amp;lt;ref&amp;gt;[http://www.foxbusiness.com/markets/2014/02/25/mt-gox-ceo-says-on-internet-chat-hasnt-given-up/]&amp;lt;/ref&amp;gt; Six other major bitcoin exchanges released a joint statement distancing themselves from Mt. Gox, shortly before Mt. Gox&#039;s website went offline.&amp;lt;ref&amp;gt;{{cite news | url=http://www.reuters.com/article/2014/02/25/mtgox-website-idUSL3N0LU1N920140225 | work=Reuters | title=Bitcoin exchange Mt. Gox&#039;s website down | date=25 February 2014 | accessdate=25 February 2014}}&amp;lt;/ref&amp;gt;&amp;lt;ref&amp;gt;{{cite press release | title=The Coinbase Blog - Joint Statement Regarding MtGox | date=24 February 2014 | work=The Coinbase Blog |publisher=Coinbase| url=http://blog.coinbase.com/post/77766809700/joint-statement-regarding-mtgox | accessdate=24 February 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
On 25 February 2014, Mt.Gox reported on its website that a &amp;quot;decision was taken to close all transactions for the time being&amp;quot;, citing &amp;quot;recent news reports and the potential repercussions on MtGox&#039;s operations&amp;quot;. The chief executive, Mark Karpelès told &#039;&#039;[[Reuters]]&#039;&#039; that Mt. Gox was &amp;quot;at a turning point&amp;quot;.&amp;lt;ref name=Reuters-closed&amp;gt;{{cite news|title=Mt. Gox website says all transactions closed &amp;quot;for the time being&amp;quot;|url=http://www.reuters.com/article/2014/02/25/us-mtgox-website-idUSBREA1O07920140225|accessdate=25 February 2014|newspaper=Reuters|date=25 February 2014}}&amp;lt;/ref&amp;gt;&amp;lt;ref name=Lowery-end&amp;gt;{{cite news|last=Lowery|first=Adrian|title=Is it the beginning of the end for Bitcoin? Virtual currency in turmoil as rumoured $375m theft closes major exchange |url=http://www.thisismoney.co.uk/money/news/article-2567436/Bitcoin-turmoil-rumoured-375m-theft-closes-major-exchange.html|accessdate=25 February 2014|newspaper=This is money|date=25 February 2014}}&amp;lt;/ref&amp;gt;&amp;lt;ref name=Anklam-offline&amp;gt;{{cite news|last=Anklam|first=Fred|title=Bitcoin exchange Mt. Gox goes offline amid turmoil|url=http://www.usatoday.com/story/tech/2014/02/25/mt-gox-offline/5801093/|accessdate=25 February 2014|newspaper=USA Today|date=25 February 2014}}&amp;lt;/ref&amp;gt;&amp;lt;ref name=Vaishampayan&amp;gt;{{cite news|last=Vaishampayan|first=Saumya|title=Mt. Gox says transactions closed &#039;for time being&#039;|url=http://www.marketwatch.com/story/mt-gox-says-transactions-closed-for-time-being-2014-02-25?link=MW_home_latest_news|accessdate=25 February 2014|newspaper=Market Watch|date=25 February 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
On 28 February 2014 Mt. Gox filed for bankruptcy protection in Tokyo, reporting that it had liabilities of about 6.5 billion [[Japanese yen|yen]] ($64 million at the time), and 3.84 billion yen in assets.&amp;lt;ref name=warnock2014&amp;gt;{{cite news | first1=Eleanor | last1=Warnock | first2=Takashi | last2=Mochizuki | first3=Alexander|last3=Martin | date=28 February 2014 | work=The Wall Street Journal | url=http://online.wsj.com/news/article_email/SB10001424052702303801304579410010379087576 | title=Mt. Gox files for bankruptcy protection | accessdate=28 February 2014}}&amp;lt;/ref&amp;gt;&amp;lt;ref name=takemoto2014&amp;gt;{{cite news | title=Mt. Gox files for bankruptcy, blames hackers for losses | url=http://www.reuters.com/article/2014/02/28/us-bitcoin-mtgox-bankruptcy-idUSBREA1R0FX20140228 | first1=Yoshifumi |last1=Takemoto |first2=Sophie |last2=Knight|work=Reuters|date=28 February 2014|accessdate=28 February 2014}}&amp;lt;/ref&amp;gt; The company said they had lost almost 750,000 of its customers&#039; bitcoins, and around 100,000 of its own bitcoins, totaling around 7% of all bitcoins, and worth around $473 million near the time of the filing.&amp;lt;ref name=warnock2014/&amp;gt;&amp;lt;ref name=takemoto2014/&amp;gt; Mt. Gox released a statement saying &amp;quot;The company believes there is a high possibility that the Bitcoins were stolen,”&amp;lt;ref name=&amp;quot;Bloomberg28&amp;quot;&amp;gt;[http://www.bloomberg.com/news/2014-02-28/mt-gox-exchange-files-for-bankruptcy.html Mt. Gox Seeks Bankruptcy After $480 Million Bitcoin Loss], Carter Dougherty and Grace Huang, [[Bloomberg News]], Feb. 28, 2014&amp;lt;/ref&amp;gt; blaming hackers,&amp;lt;ref name=titan /&amp;gt; thus beginning a search for the missing money. Chief Executive of Mt. Gox, Mark Karpelès, said technical issues opened up the way for fraudulent withdrawals. &lt;br /&gt;
&lt;br /&gt;
Mt. Gox also faces lawsuits from its customers.&amp;lt;ref name=&amp;quot;Sidel-bitcoin vanish&amp;quot;&amp;gt;{{cite news|last=Sidel|first=Robin|title=Almost Half a Billion Worth of Bitcoins Vanish|url=http://online.wsj.com/news/articles/SB10001424052702303801304579410010379087576?mod=WSJ_hp_LEFTWhatsNewsCollection&amp;amp;mg=reno64-wsj&amp;amp;url=http%3A%2F%2Fonline.wsj.com%2Farticle%2FSB10001424052702303801304579410010379087576.html%3Fmod%3DWSJ_hp_LEFTWhatsNewsCollection|accessdate=3 March 2014|newspaper=Wall Street Journal|date=28 February 2014}}&amp;lt;/ref&amp;gt;&amp;lt;ref&amp;gt;{{cite web | url=http://www.investing.com/news/economy-news/mtgox-boss-sued-for-bitcoin-losses-270031 | title=&lt;br /&gt;
MtGox Boss Sued For Bitcoin Losses | work=[[Investing.com]] | date=4 March 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
On 9 March 2014, Mt. Gox filed for [[bankruptcy protection]] in the US, to temporarily halt U.S. legal action by traders who alleged the operation was a fraud.&amp;lt;ref name=Finley-bankruptcy&amp;gt;{{cite news|last=Finley|first=Klint|title=Bitcoin Exchange Mt. Gox Files for U.S. Bankruptcy as Death Spiral Continues|url=http://www.wired.com/wiredenterprise/2014/03/gox-texas/|accessdate=11 March 2014|newspaper=Wired|date=10 March 2014}}&amp;lt;/ref&amp;gt;&amp;lt;ref name=Hals-bankrupt&amp;gt;{{cite news|last=Hals|first=Tom|title=Mt. Gox files U.S. bankruptcy, opponents call it a ruse|url=http://www.reuters.com/article/2014/03/10/us-bitcoin-mtgox-bankruptcy-idUSBREA290WU20140310|accessdate=11 March 2014|newspaper=Reuters|date=10 March 2014}}&amp;lt;/ref&amp;gt;&amp;lt;ref name=NYP-Bankrupt&amp;gt;{{cite news|title=Bitcoin exchange Mt. Gox files for US bankruptcy|url=http://nypost.com/2014/03/10/bitcoin-exchange-mt-gox-files-for-us-bankruptcy/|accessdate=11 March 2014|newspaper=New York Post|date=10 March 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
On 20 March 2014, Mt. Gox reported on its website that it found some bitcoins — worth around $116 million — in an old digital wallet from 2011. That brings the total number of bitcoins the firm lost down to 650,000 from 850,000.&amp;lt;ref&amp;gt;{{cite web&lt;br /&gt;
 |url         = https://www.mtgox.com/img/pdf/20140320-btc-announce.pdf&lt;br /&gt;
 |title       = 当社保有ビットコインの残高に関するお知らせ / Announcement regarding the balance of Bitcoin held by the company&lt;br /&gt;
 |subtitle    = &lt;br /&gt;
 |author      = Karpeles, Mark&lt;br /&gt;
 |quote       = MtGox Co., Ltd. had certain old­format wallets which were used in the past and which, MtGox &lt;br /&gt;
thought, no longer held any bitcoins. Following the application for commencement of a civil rehabilitation proceeding, these wallets were rescanned and their balance researched. On March 7,  2014, MtGox Co., Ltd. confirmed that an old­format wallet which was used prior to June 2011 held a  balance of approximately 200,000 BTC (199,999.99 BTC).&lt;br /&gt;
 |date        = 2014-03-20&lt;br /&gt;
 |format      = PDF&lt;br /&gt;
 |work        = &lt;br /&gt;
 |publisher   = MtGox&lt;br /&gt;
 |accessdate  = 2014-03-22&lt;br /&gt;
 |description = &lt;br /&gt;
 |deadurl    = &lt;br /&gt;
}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
On April 14, Mt. Gox lawyers said that Mark Karpeles wouldn&#039;t appear for a deposition in a Dallas court, or heed a subpoena by FinCEN.&amp;lt;ref name=titan&amp;gt;{{cite news|last=Mochizuki|first=Takashi|title=Tracing a Bitcoin&#039;s Exchange&#039;s Fall From the Top to Shutdown Mark Karpelès hoped to set up a bitcoin cafe in the building where his exchange rented space.|url=http://online.wsj.com/news/articles/SB10001424052702304311204579508300513992292?mg=reno64-wsj&amp;amp;url=http%3A%2F%2Fonline.wsj.com%2Farticle%2FSB10001424052702304311204579508300513992292.html|accessdate=22 April 2014|newspaper=WSJ|date=20 April 2014}}&amp;lt;/ref&amp;gt; &lt;br /&gt;
On 16 April 2014, Mt. Gox gave up its plan to rebuild under bankruptcy protection, and asked a Tokyo court to allow it to be liquidated.&amp;lt;ref&amp;gt;http://online.wsj.com/news/article_email/SB10001424052702303663604579504691512965308-lMyQjAxMTA0MDEwNTExNDUyWj&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;
* [[Bitcoin Ladder]]&lt;br /&gt;
&lt;br /&gt;
==External Links==&lt;br /&gt;
&lt;br /&gt;
* [https://mtgox.com MT. Gox exchange] now defunct website&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>C0ldfusi0nz</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Research&amp;diff=47526</id>
		<title>Research</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Research&amp;diff=47526"/>
		<updated>2014-05-22T12:48:28Z</updated>

		<summary type="html">&lt;p&gt;C0ldfusi0nz: Adding &amp;quot;Information Propagation in the Bitcoin Network&amp;quot; research paper&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Publications including research and analysis of Bitcoin or related areas.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
! Title&lt;br /&gt;
! Author&lt;br /&gt;
! Type&lt;br /&gt;
! Year&lt;br /&gt;
! Links&lt;br /&gt;
|-&lt;br /&gt;
| Bitcoin: A Peer-to-Peer Electronic Cash System&lt;br /&gt;
| Satoshi Nakamoto&lt;br /&gt;
| Research paper&lt;br /&gt;
| 2009&lt;br /&gt;
| [http://bitcoin.org/bitcoin.pdf Download] [[Bitcoin_paper |wiki page]]&lt;br /&gt;
|-&lt;br /&gt;
| Triple Entry Accounting&lt;br /&gt;
| Ian Grigg&lt;br /&gt;
| Research paper&lt;br /&gt;
| 2005&lt;br /&gt;
| [http://iang.org/papers/triple_entry.html Download]&lt;br /&gt;
|-&lt;br /&gt;
| Cyberlaundering: Anonymous Digital Cash and Money Laundering&lt;br /&gt;
| R. Mark Bortner&lt;br /&gt;
| Research paper&lt;br /&gt;
| 1996&lt;br /&gt;
| [http://osaka.law.miami.edu/~froomkin/seminar/papers/bortner.htm Download]&lt;br /&gt;
|-&lt;br /&gt;
| Shadowy Figures: Tracking Illicit Financial Transactions in the Murky World of Digital Currencies, Peer–to–Peer Networks, and Mobile Device Payments&lt;br /&gt;
| John Villasenor, Cody Monk, Christopher Bronk&lt;br /&gt;
| Research paper&lt;br /&gt;
| 2011&lt;br /&gt;
| [http://www.bakerinstitute.org/publications/ITP-pub-FinancialTransactions-082911.pdf Download]&lt;br /&gt;
|-&lt;br /&gt;
| An Analysis of Anonymity in the Bitcoin System&lt;br /&gt;
| Fergal Reid, Martin Harrigan&lt;br /&gt;
| Research paper&lt;br /&gt;
| 2011&lt;br /&gt;
| [http://arxiv.org/abs/1107.4524 Download], [http://bitcointalk.org/index.php?topic=31539.0 discussion]&lt;br /&gt;
|-&lt;br /&gt;
| Bitcoin: An Innovative Alternative Digital Currency&lt;br /&gt;
| Reuben Grinberg&lt;br /&gt;
| Research paper&lt;br /&gt;
| 2011&lt;br /&gt;
| [http://papers.ssrn.com/sol3/papers.cfm?abstract_id=1817857 Download], [http://www.bitcointalk.org/index.php?topic=6247.0 discussion]&lt;br /&gt;
|-&lt;br /&gt;
| Bitcoin NFC&lt;br /&gt;
| David Allen Bronleewe&lt;br /&gt;
| Master&#039;s report&lt;br /&gt;
| 2011&lt;br /&gt;
| [http://repositories.lib.utexas.edu/bitstream/handle/2152/ETD-UT-2011-08-4150/BRONLEEWE-MASTERS-REPORT.pdf?sequence=1 Download], [http://code.google.com/p/bitcoin-nfc source code]&lt;br /&gt;
|-&lt;br /&gt;
| Optimal pool abuse strategy&lt;br /&gt;
| Raulo&lt;br /&gt;
| Research paper&lt;br /&gt;
| 2011&lt;br /&gt;
| [http://bitcoin.atspace.com/poolcheating.pdf Download], [http://www.bitcointalk.org/index.php?topic=3165.0 discussion]&lt;br /&gt;
|-&lt;br /&gt;
| Abusing Bitcoin cooperative mining pools: strategies for egoistical but honest miners&lt;br /&gt;
| Nakamoto Ryo&lt;br /&gt;
| Research paper&lt;br /&gt;
| 2011&lt;br /&gt;
| [http://www.bitcoinservice.co.uk/files/111 Download], [http://www.bitcointalk.org/index.php?topic=2941.0 discussion]&lt;br /&gt;
|-&lt;br /&gt;
| Analysis of Bitcoin Pooled Mining Reward Systems&lt;br /&gt;
| Meni Rosenfeld&lt;br /&gt;
| Research paper&lt;br /&gt;
| 2011&lt;br /&gt;
| [https://bitcoil.co.il/pool_analysis.pdf Download], [http://bitcointalk.org/index.php?topic=32814.0 discussion]&lt;br /&gt;
|-&lt;br /&gt;
| Bitcoin Exchange system&lt;br /&gt;
| Tomáš Jiříček&lt;br /&gt;
| Research paper&lt;br /&gt;
| 2012&lt;br /&gt;
| [https://dip.felk.cvut.cz/browse/pdfcache/jiricto2_2012bach.pdf Download]&lt;br /&gt;
|-&lt;br /&gt;
| On Bitcoin and Red Balloons&lt;br /&gt;
| Moshe Babaioff, Shahar Dobzinski, Sigal Oren, Aviv Zohar&lt;br /&gt;
| Publication article&lt;br /&gt;
| 2012&lt;br /&gt;
| [http://research.microsoft.com/pubs/156072/bitcoin.pdf Download]&lt;br /&gt;
|-&lt;br /&gt;
| 2011 Observations on the Digital Currency Industry&lt;br /&gt;
| Mark Herpel&lt;br /&gt;
| Publication article&lt;br /&gt;
| 2011&lt;br /&gt;
| [http://papers.ssrn.com/sol3/papers.cfm?abstract_id=1721076 Download]&lt;br /&gt;
|-&lt;br /&gt;
| MAVE, New Lightweight Digital Signature Protocols for Massive Verifications&lt;br /&gt;
| Sergio Demian Lerner&lt;br /&gt;
| Research paper&lt;br /&gt;
| 2012 (preliminary)&lt;br /&gt;
| [http://bitslog.files.wordpress.com/2012/04/mave1.pdf Download]&lt;br /&gt;
|-&lt;br /&gt;
| MAVEPAY, a New Lightweight Payment Scheme for Peer to Peer Currency Networks&lt;br /&gt;
| Sergio Demian Lerner&lt;br /&gt;
| Research paper&lt;br /&gt;
| 2012 (preliminary)&lt;br /&gt;
| [http://bitslog.files.wordpress.com/2012/04/mavepay1.pdf Download]&lt;br /&gt;
|-&lt;br /&gt;
| Bitcoin: Eine erste Einordnung (an initial classification)&lt;br /&gt;
| Christoph Sorge, Artus Krohn-Grimberghe&lt;br /&gt;
| Research paper&lt;br /&gt;
| 2012&lt;br /&gt;
| [http://www.springerlink.com/content/cw1v762571tr4462/ Download], [http://bitcointalk.org/index.php?topic=90233.0 discussion]&lt;br /&gt;
|-&lt;br /&gt;
| Bitcoin - an introduction to the workings and a preliminary analysis and understanding of potential legal issues&lt;br /&gt;
| Jean-Daniel Schmid, Alexander Schmid&lt;br /&gt;
| Article&lt;br /&gt;
| 2012&lt;br /&gt;
| [http://ef-r.ch/images/publications/1338882576_Bitcoin.pdf Download]&lt;br /&gt;
|-&lt;br /&gt;
| Secure multiparty Bitcoin anonymization&lt;br /&gt;
| Edward Z. Yang&lt;br /&gt;
| Article&lt;br /&gt;
| 2012&lt;br /&gt;
| [http://blog.ezyang.com/2012/07/secure-multiparty-bitcoin-anonymization/ Download], [http://www.reddit.com/r/Bitcoin/comments/wvm2w/secure_multiparty_bitcoin_anonymization/ discussion]&lt;br /&gt;
|-&lt;br /&gt;
| Bitcoin &amp;amp; Gresham&#039;s Law - the economic inevitability of Collapse&lt;br /&gt;
| Philipp Güring, Ian Grigg&lt;br /&gt;
| Article&lt;br /&gt;
| 2011&lt;br /&gt;
| [http://iang.org/papers/BitcoinBreachesGreshamsLaw.pdf Download]&lt;br /&gt;
|-&lt;br /&gt;
| Today Techies, Tomorrow the World? Bitcoin.&lt;br /&gt;
| Reuben Grinberg&lt;br /&gt;
| Article&lt;br /&gt;
| 2012&lt;br /&gt;
| [http://www.milkeninstitute.org/publications/review/2012_1/22-31MR53.pdf Download]&lt;br /&gt;
|-&lt;br /&gt;
| Traveling the Silk Road: A measurement analysis of a large anonymous online marketplace&lt;br /&gt;
| Nicolas Christin&lt;br /&gt;
| Research paper&lt;br /&gt;
| 2012&lt;br /&gt;
| [http://www.cylab.cmu.edu/files/pdfs/tech_reports/CMUCyLab12018.pdf Download]&lt;br /&gt;
|-&lt;br /&gt;
| CommitCoin: Carbon Dating Commitments with Bitcoin&lt;br /&gt;
| Jeremy Clark and Aleksander Essex&lt;br /&gt;
| Research paper&lt;br /&gt;
| 2012&lt;br /&gt;
| [http://people.scs.carleton.ca/~clark/papers/2012_fc.pdf Download extended abstract]&amp;lt;br /&amp;gt;[http://eprint.iacr.org/2011/677.pdf Download technical report]&lt;br /&gt;
|-&lt;br /&gt;
| Quantitative Analysis of the Full Bitcoin Transaction Graph&lt;br /&gt;
| Dorit Ron and Adi Shamir&lt;br /&gt;
| Research paper&lt;br /&gt;
| 2012&lt;br /&gt;
| [http://eprint.iacr.org/2012/584.pdf Download]&lt;br /&gt;
|-&lt;br /&gt;
| Design and security analysis of Bitcoin infrastructure using application deployed on Google Apps Engine&lt;br /&gt;
| Piotr &amp;quot;ThePiachu&amp;quot; Piasecki&lt;br /&gt;
| Master&#039;s thesis&lt;br /&gt;
| 2012&lt;br /&gt;
| [https://dl.dropbox.com/u/3658181/PiotrPiasecki-BitcoinMasterThesis.pdf Download], [https://bitcointalk.org/index.php?topic=88149.0 discussion]&lt;br /&gt;
|-&lt;br /&gt;
| The Production of Freedom: Value Production in the US- dominated Financial System, and Possible Alternatives&lt;br /&gt;
| Jeremy Kirshbaum&lt;br /&gt;
| Master&#039;s thesis&lt;br /&gt;
| 2012 (preliminary)&lt;br /&gt;
| [https://docs.google.com/document/d/1JIyMWIibqH8x20vGBTMBZ2yqM7Xbp54UpWBh0o2H7WI/edit?pli=1 Download], [https://bitcointalk.org/index.php?topic=87404.0 discussion]&lt;br /&gt;
|-&lt;br /&gt;
| COIN: a distributed accounting system for peer to peer networks&lt;br /&gt;
| Fabio Varesano&lt;br /&gt;
| Bachelor&#039;s thesis&lt;br /&gt;
| 2012&lt;br /&gt;
| [http://www.varesano.net/contents/projects/coin%20distributed%20accounting%20system%20peer%20peer%20networks Download]&lt;br /&gt;
|-&lt;br /&gt;
| BITCOIN CLIENTS&lt;br /&gt;
| Rostislav Skudnov&lt;br /&gt;
| Bachelor&#039;s thesis&lt;br /&gt;
| 2012&lt;br /&gt;
| [http://publications.theseus.fi/bitstream/handle/10024/47166/Skudnov_Rostislav.pdf?sequence=1 Download]&lt;br /&gt;
|-&lt;br /&gt;
| Bitter to Better—How to Make Bitcoin a Better Currency&lt;br /&gt;
| Simon Barber, Xavier Boyen, Elaine Shi, Ersin Uzun&lt;br /&gt;
| Research paper&lt;br /&gt;
| 2012&lt;br /&gt;
| [http://crypto.stanford.edu/~xb/fc12/bitcoin.pdf Download]&lt;br /&gt;
|-&lt;br /&gt;
| NooShare: A decentralized ledger of shared computational resources&lt;br /&gt;
| Alex Coventry&lt;br /&gt;
| Research paper&lt;br /&gt;
| 2012&lt;br /&gt;
| [http://mit.edu/alex_c/www/nooshare.pdf Download]&lt;br /&gt;
|-&lt;br /&gt;
| Bits and Bets. Information, Price Volatility, and Demand for Bitcoin&lt;br /&gt;
| Martis Buchholz, Jess Delaney, Joseph Warren&lt;br /&gt;
| Final project&lt;br /&gt;
| 2012&lt;br /&gt;
| [http://academic.reed.edu/economics/parker/s12/312/finalproj/Bitcoin.pdf Download], [http://www.reddit.com/r/Bitcoin/comments/x7kop/economic_analysis_of_the_demand_for_bitcoin discussion], [https://bitcointalk.org/index.php?topic=96003.0 discussion]&lt;br /&gt;
|-&lt;br /&gt;
| Two Bitcoins at the Price of One? Double Spending attacks on Fast Payments in Bitcoin&lt;br /&gt;
| Ghassan O. Karame, Elli Androulaki, Srdjan Cap-kun &lt;br /&gt;
| Research paper&lt;br /&gt;
| 2012&lt;br /&gt;
| [http://eprint.iacr.org/2012/248 Download]&lt;br /&gt;
|-&lt;br /&gt;
| Nerdy Money: Bitcoin, the Private Digital Currency, and the Case Against Its Regulation&lt;br /&gt;
| Nikolei M. Kaplanov&lt;br /&gt;
| Research paper&lt;br /&gt;
| 2012&lt;br /&gt;
| [http://papers.ssrn.com/sol3/papers.cfm?abstract_id=2115203 Abstract]&lt;br /&gt;
|-&lt;br /&gt;
| Analysis of hashrate-based double-spending&lt;br /&gt;
| Meni Rosenfeld&lt;br /&gt;
| Research paper&lt;br /&gt;
| 2012&lt;br /&gt;
| [https://bitcoil.co.il/Doublespend.pdf Download]&lt;br /&gt;
|-&lt;br /&gt;
| Homomorphic Payment Addresses and the Pay-to-Contract Protocol&lt;br /&gt;
| Ilja Gerhardt, Timo Hanke&lt;br /&gt;
| Research Paper&lt;br /&gt;
| 2012&lt;br /&gt;
| [http://arxiv.org/pdf/1212.3257v1 Download] ([http://docs.google.com/viewer?url=http%3A%2F%2Farxiv.org%2Fpdf%2F1212.325qq7v1 via web viewer])&lt;br /&gt;
|-&lt;br /&gt;
| Quasi-Commodity Money (February 6, 2012). &amp;quot;This paper considers reform possibilities posed by a type of base money that has heretofore been overlooked in the literature on monetary economics.&amp;quot;&lt;br /&gt;
| George Selgin&lt;br /&gt;
| Working Papers Series&lt;br /&gt;
| 2012&lt;br /&gt;
| [http://ssrn.com/abstract=2000118 Download]&lt;br /&gt;
|-&lt;br /&gt;
| Virtual currency schemes - &amp;quot;This report is a first attempt to provide the basis for a discussion on virtual currency schemes.&amp;quot;&lt;br /&gt;
| European Central Bank&lt;br /&gt;
| Paper&lt;br /&gt;
| 2012&lt;br /&gt;
| [http://www.ecb.europa.eu/pub/pdf/other/virtualcurrencyschemes201210en.pdf Download]&lt;br /&gt;
|-&lt;br /&gt;
| Evaluating User Privacy in Bitcoin&lt;br /&gt;
| Elli Androulaki, Ghassan Karame, Marc Roeschlin, Tobias Scherer and Srdjan Capkun &lt;br /&gt;
| Paper&lt;br /&gt;
| 2013&lt;br /&gt;
| [http://fc13.ifca.ai/proc/1-3.pdf Download]  ([http://fc13.ifca.ai/slide/1-3.pdf Slides]) &lt;br /&gt;
|-&lt;br /&gt;
| Beware the Middleman: Empirical Analysis of Bitcoin-Exchange Risk&lt;br /&gt;
| Tyler Moore and Nicolas Christin &lt;br /&gt;
| Short Paper&lt;br /&gt;
| 2013&lt;br /&gt;
| [http://fc13.ifca.ai/proc/1-2.pdf Download]  ([http://fc13.ifca.ai/slide/1-2.pdf Slides]) &lt;br /&gt;
|-&lt;br /&gt;
| Bitcoin, Regulating Fraud In The E-Conomy Of Hacker-Cash&lt;br /&gt;
| Derek A. Dion&lt;br /&gt;
| Paper&lt;br /&gt;
| 2013&lt;br /&gt;
| [http://illinoisjltp.com/journal/wp-content/uploads/2013/05/Dion.pdf Download]&lt;br /&gt;
|-&lt;br /&gt;
| The practical materiality of Bitcoin&lt;br /&gt;
| Bill Maurera, Taylor C. Nelmsa &amp;amp; Lana Swartz &lt;br /&gt;
| Paper&lt;br /&gt;
| 2013&lt;br /&gt;
| [http://www.tandfonline.com/doi/full/10.1080/10350330.2013.777594#.UbbTVaD_6b4 Download]&lt;br /&gt;
|-&lt;br /&gt;
| Regulating Digital Currencies: Bringing Bitcoin within the Reach of the IMF&lt;br /&gt;
| Nicholas Plassaras &lt;br /&gt;
| Paper&lt;br /&gt;
| 2013&lt;br /&gt;
| [https://papers.ssrn.com/sol3/papers.cfm?abstract_id=2248419 Download]&lt;br /&gt;
|-&lt;br /&gt;
| Bitcoin is Memory&lt;br /&gt;
| William J. Luther, Josiah Olson &lt;br /&gt;
| Paper&lt;br /&gt;
| 2013&lt;br /&gt;
| [http://papers.ssrn.com/sol3/papers.cfm?abstract_id=2275730 Download]&lt;br /&gt;
|-&lt;br /&gt;
| The Economics of Bitcoin Mining or, Bitcoin in the Presence of Adversaries&lt;br /&gt;
| Joshua A. Kroll, Ian C. Davey, and Edward W. Felten &lt;br /&gt;
| Paper&lt;br /&gt;
| 2013&lt;br /&gt;
| [http://www.weis2013.econinfosec.org/papers/KrollDaveyFeltenWEIS2013.pdf Download]&lt;br /&gt;
|-&lt;br /&gt;
| Bitcoin: A Primer for Policymakers&lt;br /&gt;
| Jerry Brito, Andrea Castillo&lt;br /&gt;
| Research paper&lt;br /&gt;
| 2013&lt;br /&gt;
| [http://mercatus.org/publication/bitcoin-primer-policymakers Abstract] [http://mercatus.org/sites/default/files/Brito_BitcoinPrimer.pdf Download]&lt;br /&gt;
|-&lt;br /&gt;
| Whack-a-Mole: Prosecuting Digital Currency Exchanges&lt;br /&gt;
| Catherine Martin Christopher &lt;br /&gt;
| Research paper&lt;br /&gt;
| 2013&lt;br /&gt;
| [http://papers.ssrn.com/sol3/papers.cfm?abstract_id=2312787 Abstract]&lt;br /&gt;
[http://papers.ssrn.com/sol3/Delivery.cfm/SSRN_ID2312787_code1372021.pdf?abstractid=2312787&amp;amp;mirid=2 Download]&lt;br /&gt;
|-&lt;br /&gt;
| Are Cryptocurrencies &#039;Super&#039; Tax Havens?&lt;br /&gt;
| Omri Y. Marian&lt;br /&gt;
| Research paper&lt;br /&gt;
| 2013&lt;br /&gt;
| [http://papers.ssrn.com/sol3/papers.cfm?abstract_id=2305863 Abstract]&lt;br /&gt;
[http://papers.ssrn.com/sol3/Delivery.cfm/SSRN_ID2316499_code592645.pdf?abstractid=2305863&amp;amp;mirid=1 Download]&lt;br /&gt;
|-&lt;br /&gt;
| Collective Emergent Institutional Entrepreneurship Through Bitcoin&lt;br /&gt;
| Robin Teigland, Zeynep Yetis and Tomas Olov Larsson &lt;br /&gt;
| Research paper&lt;br /&gt;
| 2013&lt;br /&gt;
| [http://papers.ssrn.com/sol3/papers.cfm?abstract_id=2263707 Abstract]&lt;br /&gt;
[http://papers.ssrn.com/sol3/Delivery.cfm/SSRN_ID2263707_code2053543.pdf?abstractid=2263707&amp;amp;mirid=1 Download]&lt;br /&gt;
|-&lt;br /&gt;
| Anonymity of Bitcoin Transactions&lt;br /&gt;
| Malte Möser&lt;br /&gt;
| Research paper&lt;br /&gt;
| 2013&lt;br /&gt;
| [https://www.wi.uni-muenster.de/sites/default/files/public/department/itsecurity/mbc13/mbc13-moeser-paper.pdf Download]&lt;br /&gt;
|-&lt;br /&gt;
| On the origins of Bitcoin: Stages of monetary evolution&lt;br /&gt;
| Konrad S. Graf &lt;br /&gt;
| Research paper&lt;br /&gt;
| 2013&lt;br /&gt;
| [http://konradsgraf.com/blog1/2013/10/23/on-the-origins-of-bitcoin-my-new-work-on-bitcoin-and-monetar.html Abstract]&lt;br /&gt;
[http://konradsgraf.com/storage/On%20the%20Origins%20of%20Bitcoin%20Graf%2023.10.13.pdf Download]&lt;br /&gt;
|-&lt;br /&gt;
| Majority is not Enough: Bitcoin Mining is Vulnerable&lt;br /&gt;
| Ittay Eyal and Emin Gun Sirer&lt;br /&gt;
| Research paper&lt;br /&gt;
| 2013&lt;br /&gt;
| [http://arxiv.org/abs/1311.0243 Abstract]&lt;br /&gt;
[http://arxiv.org/pdf/1311.0243v1 Download]&lt;br /&gt;
|-&lt;br /&gt;
| Bitcoin, the end of the Taboo on Money&lt;br /&gt;
| Denis Roio aka Jaromil&lt;br /&gt;
| Humanities article&lt;br /&gt;
| 2013&lt;br /&gt;
| [http://www.dyndy.net/2013/04/bitcoin-ends-the-taboo-on-money/ Abstract]&lt;br /&gt;
[https://files.dyne.org/readers/Bitcoin_end_of_taboo_on_money.pdf Download]&lt;br /&gt;
|-&lt;br /&gt;
| Secure Multiparty Computations on BitCoin&lt;br /&gt;
| Marcin Andrychowicz, Stefan Dziembowski, Daniel Malinowski and Łukasz Mazurek University of Warsaw &lt;br /&gt;
| Research paper&lt;br /&gt;
| 2013&lt;br /&gt;
| [http://eprint.iacr.org/2013/784 Abstract]&lt;br /&gt;
[http://eprint.iacr.org/eprint-bin/cite.pl?entry=2013/784 BibTeX]&lt;br /&gt;
[http://eprint.iacr.org/2013/784.pdf Download]&lt;br /&gt;
|-&lt;br /&gt;
| A Fistful of Bitcoins: Characterizing Payments Among Men with No Names&lt;br /&gt;
| Sarah Meiklejohn, Marjori Pomarole, Grant Jordan, Kirill Levchenko, Damon McCoy, Geoffrey M. Voelker, Stefan Savage&lt;br /&gt;
| Research paper&lt;br /&gt;
| 2013&lt;br /&gt;
| &lt;br /&gt;
[http://www.cs.gmu.edu/~mccoy/papers/imc13.pdf Download]&lt;br /&gt;
|-&lt;br /&gt;
| Information Propagation in the Bitcoin Network&lt;br /&gt;
| Christian Decker (ETH Zurich, Switzerland), Roger Wattenhofer (Microsoft Research)&lt;br /&gt;
| Research paper&lt;br /&gt;
| 2013&lt;br /&gt;
| &lt;br /&gt;
[http://www.tik.ee.ethz.ch/file/49318d3f56c1d525aabf7fda78b23fc0/P2P2013_041.pdf Download]&lt;br /&gt;
|-&lt;br /&gt;
| The Economics of Private Digital Currency&lt;br /&gt;
| Gerald P Dwyer&lt;br /&gt;
| Research paper&lt;br /&gt;
| 2014&lt;br /&gt;
| [http://mpra.ub.uni-muenchen.de/55824/ Abstract]&lt;br /&gt;
[http://mpra.ub.uni-muenchen.de/55824/1/MPRA_paper_55824.pdf Download]&lt;br /&gt;
|}&lt;br /&gt;
==See Also==&lt;br /&gt;
&lt;br /&gt;
* [http://people.scs.carleton.ca/~clark/biblio.html Jeremy Clark&#039;s Bitcoin Bibliography]&lt;br /&gt;
* [[:Category:Economics|Economic]]&lt;br /&gt;
* [[:Category:Technical|Technical]]&lt;br /&gt;
* [[Press]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Research]]&lt;/div&gt;</summary>
		<author><name>C0ldfusi0nz</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Research&amp;diff=47525</id>
		<title>Research</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Research&amp;diff=47525"/>
		<updated>2014-05-22T12:45:53Z</updated>

		<summary type="html">&lt;p&gt;C0ldfusi0nz: adding &amp;quot;A Fistful of Bitcoins&amp;quot; research paper&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Publications including research and analysis of Bitcoin or related areas.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
! Title&lt;br /&gt;
! Author&lt;br /&gt;
! Type&lt;br /&gt;
! Year&lt;br /&gt;
! Links&lt;br /&gt;
|-&lt;br /&gt;
| Bitcoin: A Peer-to-Peer Electronic Cash System&lt;br /&gt;
| Satoshi Nakamoto&lt;br /&gt;
| Research paper&lt;br /&gt;
| 2009&lt;br /&gt;
| [http://bitcoin.org/bitcoin.pdf Download] [[Bitcoin_paper |wiki page]]&lt;br /&gt;
|-&lt;br /&gt;
| Triple Entry Accounting&lt;br /&gt;
| Ian Grigg&lt;br /&gt;
| Research paper&lt;br /&gt;
| 2005&lt;br /&gt;
| [http://iang.org/papers/triple_entry.html Download]&lt;br /&gt;
|-&lt;br /&gt;
| Cyberlaundering: Anonymous Digital Cash and Money Laundering&lt;br /&gt;
| R. Mark Bortner&lt;br /&gt;
| Research paper&lt;br /&gt;
| 1996&lt;br /&gt;
| [http://osaka.law.miami.edu/~froomkin/seminar/papers/bortner.htm Download]&lt;br /&gt;
|-&lt;br /&gt;
| Shadowy Figures: Tracking Illicit Financial Transactions in the Murky World of Digital Currencies, Peer–to–Peer Networks, and Mobile Device Payments&lt;br /&gt;
| John Villasenor, Cody Monk, Christopher Bronk&lt;br /&gt;
| Research paper&lt;br /&gt;
| 2011&lt;br /&gt;
| [http://www.bakerinstitute.org/publications/ITP-pub-FinancialTransactions-082911.pdf Download]&lt;br /&gt;
|-&lt;br /&gt;
| An Analysis of Anonymity in the Bitcoin System&lt;br /&gt;
| Fergal Reid, Martin Harrigan&lt;br /&gt;
| Research paper&lt;br /&gt;
| 2011&lt;br /&gt;
| [http://arxiv.org/abs/1107.4524 Download], [http://bitcointalk.org/index.php?topic=31539.0 discussion]&lt;br /&gt;
|-&lt;br /&gt;
| Bitcoin: An Innovative Alternative Digital Currency&lt;br /&gt;
| Reuben Grinberg&lt;br /&gt;
| Research paper&lt;br /&gt;
| 2011&lt;br /&gt;
| [http://papers.ssrn.com/sol3/papers.cfm?abstract_id=1817857 Download], [http://www.bitcointalk.org/index.php?topic=6247.0 discussion]&lt;br /&gt;
|-&lt;br /&gt;
| Bitcoin NFC&lt;br /&gt;
| David Allen Bronleewe&lt;br /&gt;
| Master&#039;s report&lt;br /&gt;
| 2011&lt;br /&gt;
| [http://repositories.lib.utexas.edu/bitstream/handle/2152/ETD-UT-2011-08-4150/BRONLEEWE-MASTERS-REPORT.pdf?sequence=1 Download], [http://code.google.com/p/bitcoin-nfc source code]&lt;br /&gt;
|-&lt;br /&gt;
| Optimal pool abuse strategy&lt;br /&gt;
| Raulo&lt;br /&gt;
| Research paper&lt;br /&gt;
| 2011&lt;br /&gt;
| [http://bitcoin.atspace.com/poolcheating.pdf Download], [http://www.bitcointalk.org/index.php?topic=3165.0 discussion]&lt;br /&gt;
|-&lt;br /&gt;
| Abusing Bitcoin cooperative mining pools: strategies for egoistical but honest miners&lt;br /&gt;
| Nakamoto Ryo&lt;br /&gt;
| Research paper&lt;br /&gt;
| 2011&lt;br /&gt;
| [http://www.bitcoinservice.co.uk/files/111 Download], [http://www.bitcointalk.org/index.php?topic=2941.0 discussion]&lt;br /&gt;
|-&lt;br /&gt;
| Analysis of Bitcoin Pooled Mining Reward Systems&lt;br /&gt;
| Meni Rosenfeld&lt;br /&gt;
| Research paper&lt;br /&gt;
| 2011&lt;br /&gt;
| [https://bitcoil.co.il/pool_analysis.pdf Download], [http://bitcointalk.org/index.php?topic=32814.0 discussion]&lt;br /&gt;
|-&lt;br /&gt;
| Bitcoin Exchange system&lt;br /&gt;
| Tomáš Jiříček&lt;br /&gt;
| Research paper&lt;br /&gt;
| 2012&lt;br /&gt;
| [https://dip.felk.cvut.cz/browse/pdfcache/jiricto2_2012bach.pdf Download]&lt;br /&gt;
|-&lt;br /&gt;
| On Bitcoin and Red Balloons&lt;br /&gt;
| Moshe Babaioff, Shahar Dobzinski, Sigal Oren, Aviv Zohar&lt;br /&gt;
| Publication article&lt;br /&gt;
| 2012&lt;br /&gt;
| [http://research.microsoft.com/pubs/156072/bitcoin.pdf Download]&lt;br /&gt;
|-&lt;br /&gt;
| 2011 Observations on the Digital Currency Industry&lt;br /&gt;
| Mark Herpel&lt;br /&gt;
| Publication article&lt;br /&gt;
| 2011&lt;br /&gt;
| [http://papers.ssrn.com/sol3/papers.cfm?abstract_id=1721076 Download]&lt;br /&gt;
|-&lt;br /&gt;
| MAVE, New Lightweight Digital Signature Protocols for Massive Verifications&lt;br /&gt;
| Sergio Demian Lerner&lt;br /&gt;
| Research paper&lt;br /&gt;
| 2012 (preliminary)&lt;br /&gt;
| [http://bitslog.files.wordpress.com/2012/04/mave1.pdf Download]&lt;br /&gt;
|-&lt;br /&gt;
| MAVEPAY, a New Lightweight Payment Scheme for Peer to Peer Currency Networks&lt;br /&gt;
| Sergio Demian Lerner&lt;br /&gt;
| Research paper&lt;br /&gt;
| 2012 (preliminary)&lt;br /&gt;
| [http://bitslog.files.wordpress.com/2012/04/mavepay1.pdf Download]&lt;br /&gt;
|-&lt;br /&gt;
| Bitcoin: Eine erste Einordnung (an initial classification)&lt;br /&gt;
| Christoph Sorge, Artus Krohn-Grimberghe&lt;br /&gt;
| Research paper&lt;br /&gt;
| 2012&lt;br /&gt;
| [http://www.springerlink.com/content/cw1v762571tr4462/ Download], [http://bitcointalk.org/index.php?topic=90233.0 discussion]&lt;br /&gt;
|-&lt;br /&gt;
| Bitcoin - an introduction to the workings and a preliminary analysis and understanding of potential legal issues&lt;br /&gt;
| Jean-Daniel Schmid, Alexander Schmid&lt;br /&gt;
| Article&lt;br /&gt;
| 2012&lt;br /&gt;
| [http://ef-r.ch/images/publications/1338882576_Bitcoin.pdf Download]&lt;br /&gt;
|-&lt;br /&gt;
| Secure multiparty Bitcoin anonymization&lt;br /&gt;
| Edward Z. Yang&lt;br /&gt;
| Article&lt;br /&gt;
| 2012&lt;br /&gt;
| [http://blog.ezyang.com/2012/07/secure-multiparty-bitcoin-anonymization/ Download], [http://www.reddit.com/r/Bitcoin/comments/wvm2w/secure_multiparty_bitcoin_anonymization/ discussion]&lt;br /&gt;
|-&lt;br /&gt;
| Bitcoin &amp;amp; Gresham&#039;s Law - the economic inevitability of Collapse&lt;br /&gt;
| Philipp Güring, Ian Grigg&lt;br /&gt;
| Article&lt;br /&gt;
| 2011&lt;br /&gt;
| [http://iang.org/papers/BitcoinBreachesGreshamsLaw.pdf Download]&lt;br /&gt;
|-&lt;br /&gt;
| Today Techies, Tomorrow the World? Bitcoin.&lt;br /&gt;
| Reuben Grinberg&lt;br /&gt;
| Article&lt;br /&gt;
| 2012&lt;br /&gt;
| [http://www.milkeninstitute.org/publications/review/2012_1/22-31MR53.pdf Download]&lt;br /&gt;
|-&lt;br /&gt;
| Traveling the Silk Road: A measurement analysis of a large anonymous online marketplace&lt;br /&gt;
| Nicolas Christin&lt;br /&gt;
| Research paper&lt;br /&gt;
| 2012&lt;br /&gt;
| [http://www.cylab.cmu.edu/files/pdfs/tech_reports/CMUCyLab12018.pdf Download]&lt;br /&gt;
|-&lt;br /&gt;
| CommitCoin: Carbon Dating Commitments with Bitcoin&lt;br /&gt;
| Jeremy Clark and Aleksander Essex&lt;br /&gt;
| Research paper&lt;br /&gt;
| 2012&lt;br /&gt;
| [http://people.scs.carleton.ca/~clark/papers/2012_fc.pdf Download extended abstract]&amp;lt;br /&amp;gt;[http://eprint.iacr.org/2011/677.pdf Download technical report]&lt;br /&gt;
|-&lt;br /&gt;
| Quantitative Analysis of the Full Bitcoin Transaction Graph&lt;br /&gt;
| Dorit Ron and Adi Shamir&lt;br /&gt;
| Research paper&lt;br /&gt;
| 2012&lt;br /&gt;
| [http://eprint.iacr.org/2012/584.pdf Download]&lt;br /&gt;
|-&lt;br /&gt;
| Design and security analysis of Bitcoin infrastructure using application deployed on Google Apps Engine&lt;br /&gt;
| Piotr &amp;quot;ThePiachu&amp;quot; Piasecki&lt;br /&gt;
| Master&#039;s thesis&lt;br /&gt;
| 2012&lt;br /&gt;
| [https://dl.dropbox.com/u/3658181/PiotrPiasecki-BitcoinMasterThesis.pdf Download], [https://bitcointalk.org/index.php?topic=88149.0 discussion]&lt;br /&gt;
|-&lt;br /&gt;
| The Production of Freedom: Value Production in the US- dominated Financial System, and Possible Alternatives&lt;br /&gt;
| Jeremy Kirshbaum&lt;br /&gt;
| Master&#039;s thesis&lt;br /&gt;
| 2012 (preliminary)&lt;br /&gt;
| [https://docs.google.com/document/d/1JIyMWIibqH8x20vGBTMBZ2yqM7Xbp54UpWBh0o2H7WI/edit?pli=1 Download], [https://bitcointalk.org/index.php?topic=87404.0 discussion]&lt;br /&gt;
|-&lt;br /&gt;
| COIN: a distributed accounting system for peer to peer networks&lt;br /&gt;
| Fabio Varesano&lt;br /&gt;
| Bachelor&#039;s thesis&lt;br /&gt;
| 2012&lt;br /&gt;
| [http://www.varesano.net/contents/projects/coin%20distributed%20accounting%20system%20peer%20peer%20networks Download]&lt;br /&gt;
|-&lt;br /&gt;
| BITCOIN CLIENTS&lt;br /&gt;
| Rostislav Skudnov&lt;br /&gt;
| Bachelor&#039;s thesis&lt;br /&gt;
| 2012&lt;br /&gt;
| [http://publications.theseus.fi/bitstream/handle/10024/47166/Skudnov_Rostislav.pdf?sequence=1 Download]&lt;br /&gt;
|-&lt;br /&gt;
| Bitter to Better—How to Make Bitcoin a Better Currency&lt;br /&gt;
| Simon Barber, Xavier Boyen, Elaine Shi, Ersin Uzun&lt;br /&gt;
| Research paper&lt;br /&gt;
| 2012&lt;br /&gt;
| [http://crypto.stanford.edu/~xb/fc12/bitcoin.pdf Download]&lt;br /&gt;
|-&lt;br /&gt;
| NooShare: A decentralized ledger of shared computational resources&lt;br /&gt;
| Alex Coventry&lt;br /&gt;
| Research paper&lt;br /&gt;
| 2012&lt;br /&gt;
| [http://mit.edu/alex_c/www/nooshare.pdf Download]&lt;br /&gt;
|-&lt;br /&gt;
| Bits and Bets. Information, Price Volatility, and Demand for Bitcoin&lt;br /&gt;
| Martis Buchholz, Jess Delaney, Joseph Warren&lt;br /&gt;
| Final project&lt;br /&gt;
| 2012&lt;br /&gt;
| [http://academic.reed.edu/economics/parker/s12/312/finalproj/Bitcoin.pdf Download], [http://www.reddit.com/r/Bitcoin/comments/x7kop/economic_analysis_of_the_demand_for_bitcoin discussion], [https://bitcointalk.org/index.php?topic=96003.0 discussion]&lt;br /&gt;
|-&lt;br /&gt;
| Two Bitcoins at the Price of One? Double Spending attacks on Fast Payments in Bitcoin&lt;br /&gt;
| Ghassan O. Karame, Elli Androulaki, Srdjan Cap-kun &lt;br /&gt;
| Research paper&lt;br /&gt;
| 2012&lt;br /&gt;
| [http://eprint.iacr.org/2012/248 Download]&lt;br /&gt;
|-&lt;br /&gt;
| Nerdy Money: Bitcoin, the Private Digital Currency, and the Case Against Its Regulation&lt;br /&gt;
| Nikolei M. Kaplanov&lt;br /&gt;
| Research paper&lt;br /&gt;
| 2012&lt;br /&gt;
| [http://papers.ssrn.com/sol3/papers.cfm?abstract_id=2115203 Abstract]&lt;br /&gt;
|-&lt;br /&gt;
| Analysis of hashrate-based double-spending&lt;br /&gt;
| Meni Rosenfeld&lt;br /&gt;
| Research paper&lt;br /&gt;
| 2012&lt;br /&gt;
| [https://bitcoil.co.il/Doublespend.pdf Download]&lt;br /&gt;
|-&lt;br /&gt;
| Homomorphic Payment Addresses and the Pay-to-Contract Protocol&lt;br /&gt;
| Ilja Gerhardt, Timo Hanke&lt;br /&gt;
| Research Paper&lt;br /&gt;
| 2012&lt;br /&gt;
| [http://arxiv.org/pdf/1212.3257v1 Download] ([http://docs.google.com/viewer?url=http%3A%2F%2Farxiv.org%2Fpdf%2F1212.325qq7v1 via web viewer])&lt;br /&gt;
|-&lt;br /&gt;
| Quasi-Commodity Money (February 6, 2012). &amp;quot;This paper considers reform possibilities posed by a type of base money that has heretofore been overlooked in the literature on monetary economics.&amp;quot;&lt;br /&gt;
| George Selgin&lt;br /&gt;
| Working Papers Series&lt;br /&gt;
| 2012&lt;br /&gt;
| [http://ssrn.com/abstract=2000118 Download]&lt;br /&gt;
|-&lt;br /&gt;
| Virtual currency schemes - &amp;quot;This report is a first attempt to provide the basis for a discussion on virtual currency schemes.&amp;quot;&lt;br /&gt;
| European Central Bank&lt;br /&gt;
| Paper&lt;br /&gt;
| 2012&lt;br /&gt;
| [http://www.ecb.europa.eu/pub/pdf/other/virtualcurrencyschemes201210en.pdf Download]&lt;br /&gt;
|-&lt;br /&gt;
| Evaluating User Privacy in Bitcoin&lt;br /&gt;
| Elli Androulaki, Ghassan Karame, Marc Roeschlin, Tobias Scherer and Srdjan Capkun &lt;br /&gt;
| Paper&lt;br /&gt;
| 2013&lt;br /&gt;
| [http://fc13.ifca.ai/proc/1-3.pdf Download]  ([http://fc13.ifca.ai/slide/1-3.pdf Slides]) &lt;br /&gt;
|-&lt;br /&gt;
| Beware the Middleman: Empirical Analysis of Bitcoin-Exchange Risk&lt;br /&gt;
| Tyler Moore and Nicolas Christin &lt;br /&gt;
| Short Paper&lt;br /&gt;
| 2013&lt;br /&gt;
| [http://fc13.ifca.ai/proc/1-2.pdf Download]  ([http://fc13.ifca.ai/slide/1-2.pdf Slides]) &lt;br /&gt;
|-&lt;br /&gt;
| Bitcoin, Regulating Fraud In The E-Conomy Of Hacker-Cash&lt;br /&gt;
| Derek A. Dion&lt;br /&gt;
| Paper&lt;br /&gt;
| 2013&lt;br /&gt;
| [http://illinoisjltp.com/journal/wp-content/uploads/2013/05/Dion.pdf Download]&lt;br /&gt;
|-&lt;br /&gt;
| The practical materiality of Bitcoin&lt;br /&gt;
| Bill Maurera, Taylor C. Nelmsa &amp;amp; Lana Swartz &lt;br /&gt;
| Paper&lt;br /&gt;
| 2013&lt;br /&gt;
| [http://www.tandfonline.com/doi/full/10.1080/10350330.2013.777594#.UbbTVaD_6b4 Download]&lt;br /&gt;
|-&lt;br /&gt;
| Regulating Digital Currencies: Bringing Bitcoin within the Reach of the IMF&lt;br /&gt;
| Nicholas Plassaras &lt;br /&gt;
| Paper&lt;br /&gt;
| 2013&lt;br /&gt;
| [https://papers.ssrn.com/sol3/papers.cfm?abstract_id=2248419 Download]&lt;br /&gt;
|-&lt;br /&gt;
| Bitcoin is Memory&lt;br /&gt;
| William J. Luther, Josiah Olson &lt;br /&gt;
| Paper&lt;br /&gt;
| 2013&lt;br /&gt;
| [http://papers.ssrn.com/sol3/papers.cfm?abstract_id=2275730 Download]&lt;br /&gt;
|-&lt;br /&gt;
| The Economics of Bitcoin Mining or, Bitcoin in the Presence of Adversaries&lt;br /&gt;
| Joshua A. Kroll, Ian C. Davey, and Edward W. Felten &lt;br /&gt;
| Paper&lt;br /&gt;
| 2013&lt;br /&gt;
| [http://www.weis2013.econinfosec.org/papers/KrollDaveyFeltenWEIS2013.pdf Download]&lt;br /&gt;
|-&lt;br /&gt;
| Bitcoin: A Primer for Policymakers&lt;br /&gt;
| Jerry Brito, Andrea Castillo&lt;br /&gt;
| Research paper&lt;br /&gt;
| 2013&lt;br /&gt;
| [http://mercatus.org/publication/bitcoin-primer-policymakers Abstract] [http://mercatus.org/sites/default/files/Brito_BitcoinPrimer.pdf Download]&lt;br /&gt;
|-&lt;br /&gt;
| Whack-a-Mole: Prosecuting Digital Currency Exchanges&lt;br /&gt;
| Catherine Martin Christopher &lt;br /&gt;
| Research paper&lt;br /&gt;
| 2013&lt;br /&gt;
| [http://papers.ssrn.com/sol3/papers.cfm?abstract_id=2312787 Abstract]&lt;br /&gt;
[http://papers.ssrn.com/sol3/Delivery.cfm/SSRN_ID2312787_code1372021.pdf?abstractid=2312787&amp;amp;mirid=2 Download]&lt;br /&gt;
|-&lt;br /&gt;
| Are Cryptocurrencies &#039;Super&#039; Tax Havens?&lt;br /&gt;
| Omri Y. Marian&lt;br /&gt;
| Research paper&lt;br /&gt;
| 2013&lt;br /&gt;
| [http://papers.ssrn.com/sol3/papers.cfm?abstract_id=2305863 Abstract]&lt;br /&gt;
[http://papers.ssrn.com/sol3/Delivery.cfm/SSRN_ID2316499_code592645.pdf?abstractid=2305863&amp;amp;mirid=1 Download]&lt;br /&gt;
|-&lt;br /&gt;
| Collective Emergent Institutional Entrepreneurship Through Bitcoin&lt;br /&gt;
| Robin Teigland, Zeynep Yetis and Tomas Olov Larsson &lt;br /&gt;
| Research paper&lt;br /&gt;
| 2013&lt;br /&gt;
| [http://papers.ssrn.com/sol3/papers.cfm?abstract_id=2263707 Abstract]&lt;br /&gt;
[http://papers.ssrn.com/sol3/Delivery.cfm/SSRN_ID2263707_code2053543.pdf?abstractid=2263707&amp;amp;mirid=1 Download]&lt;br /&gt;
|-&lt;br /&gt;
| Anonymity of Bitcoin Transactions&lt;br /&gt;
| Malte Möser&lt;br /&gt;
| Research paper&lt;br /&gt;
| 2013&lt;br /&gt;
| [https://www.wi.uni-muenster.de/sites/default/files/public/department/itsecurity/mbc13/mbc13-moeser-paper.pdf Download]&lt;br /&gt;
|-&lt;br /&gt;
| On the origins of Bitcoin: Stages of monetary evolution&lt;br /&gt;
| Konrad S. Graf &lt;br /&gt;
| Research paper&lt;br /&gt;
| 2013&lt;br /&gt;
| [http://konradsgraf.com/blog1/2013/10/23/on-the-origins-of-bitcoin-my-new-work-on-bitcoin-and-monetar.html Abstract]&lt;br /&gt;
[http://konradsgraf.com/storage/On%20the%20Origins%20of%20Bitcoin%20Graf%2023.10.13.pdf Download]&lt;br /&gt;
|-&lt;br /&gt;
| Majority is not Enough: Bitcoin Mining is Vulnerable&lt;br /&gt;
| Ittay Eyal and Emin Gun Sirer&lt;br /&gt;
| Research paper&lt;br /&gt;
| 2013&lt;br /&gt;
| [http://arxiv.org/abs/1311.0243 Abstract]&lt;br /&gt;
[http://arxiv.org/pdf/1311.0243v1 Download]&lt;br /&gt;
|-&lt;br /&gt;
| Bitcoin, the end of the Taboo on Money&lt;br /&gt;
| Denis Roio aka Jaromil&lt;br /&gt;
| Humanities article&lt;br /&gt;
| 2013&lt;br /&gt;
| [http://www.dyndy.net/2013/04/bitcoin-ends-the-taboo-on-money/ Abstract]&lt;br /&gt;
[https://files.dyne.org/readers/Bitcoin_end_of_taboo_on_money.pdf Download]&lt;br /&gt;
|-&lt;br /&gt;
| Secure Multiparty Computations on BitCoin&lt;br /&gt;
| Marcin Andrychowicz, Stefan Dziembowski, Daniel Malinowski and Łukasz Mazurek University of Warsaw &lt;br /&gt;
| Research paper&lt;br /&gt;
| 2013&lt;br /&gt;
| [http://eprint.iacr.org/2013/784 Abstract]&lt;br /&gt;
[http://eprint.iacr.org/eprint-bin/cite.pl?entry=2013/784 BibTeX]&lt;br /&gt;
[http://eprint.iacr.org/2013/784.pdf Download]&lt;br /&gt;
|-&lt;br /&gt;
| A Fistful of Bitcoins: Characterizing Payments Among Men with No Names&lt;br /&gt;
| Sarah Meiklejohn, Marjori Pomarole, Grant Jordan, Kirill Levchenko, Damon McCoy, Geoffrey M. Voelker, Stefan Savage&lt;br /&gt;
| Research paper&lt;br /&gt;
| 2013&lt;br /&gt;
| &lt;br /&gt;
[http://www.cs.gmu.edu/~mccoy/papers/imc13.pdf Download]&lt;br /&gt;
|-&lt;br /&gt;
| The Economics of Private Digital Currency&lt;br /&gt;
| Gerald P Dwyer&lt;br /&gt;
| Research paper&lt;br /&gt;
| 2014&lt;br /&gt;
| [http://mpra.ub.uni-muenchen.de/55824/ Abstract]&lt;br /&gt;
[http://mpra.ub.uni-muenchen.de/55824/1/MPRA_paper_55824.pdf Download]&lt;br /&gt;
|}&lt;br /&gt;
==See Also==&lt;br /&gt;
&lt;br /&gt;
* [http://people.scs.carleton.ca/~clark/biblio.html Jeremy Clark&#039;s Bitcoin Bibliography]&lt;br /&gt;
* [[:Category:Economics|Economic]]&lt;br /&gt;
* [[:Category:Technical|Technical]]&lt;br /&gt;
* [[Press]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Research]]&lt;/div&gt;</summary>
		<author><name>C0ldfusi0nz</name></author>
	</entry>
</feed>