<?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=Pigeons</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=Pigeons"/>
	<link rel="alternate" type="text/html" href="https://en.bitcoin.it/wiki/Special:Contributions/Pigeons"/>
	<updated>2026-04-09T15:58:49Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.43.8</generator>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Thin_Client_Security&amp;diff=60491</id>
		<title>Thin Client Security</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Thin_Client_Security&amp;diff=60491"/>
		<updated>2016-02-25T22:28:35Z</updated>

		<summary type="html">&lt;p&gt;Pigeons: /* bitcoinj */ URL change&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Recently there have been a number of proposals for bitcoin clients which do not store a complete copy of every block in the entire block chain.  This page will refer to all such clients as &amp;quot;thin clients&amp;quot;.  This page is meant to be a place to try to make sense of the security and trust implications of the various schemes.&lt;br /&gt;
&lt;br /&gt;
== Full Node vs. SPV ==&lt;br /&gt;
&lt;br /&gt;
It is important to distinguish between block height verification and block depth verification.&lt;br /&gt;
&lt;br /&gt;
A full node client verifies that all preceding blocks are valid in order to guarantee that a transaction is valid.  Currently only the Satoshi client,  libbitcoin, and btcd do full node verification.  Full nodes are the fundamental anchor of trustless security in the Bitcoin system.&lt;br /&gt;
&lt;br /&gt;
A client verifies the depth D of a block by checking that there are D blocks &#039;&#039;&#039;after&#039;&#039;&#039; it (also called &amp;quot;confirmations&amp;quot;), all of which are well-formed.  SPV clients don&#039;t verify the preceding blocks, they use the number of confirmations (whether they are valid or not) as a measure of the likelihood of a [[Chain_Reorganization|block chain reorganization]] producing a new longer fork which excludes the transaction.&lt;br /&gt;
&lt;br /&gt;
== Full Node Clients ==&lt;br /&gt;
&lt;br /&gt;
The &amp;quot;thick&amp;quot; bitcoin client downloads a copy of the entire chain, including all transactions (not just headers).  It will be used as the reference point for security comparisons below.&lt;br /&gt;
&lt;br /&gt;
A full-node client uses the [[Protocol_rules#Blocks well-formed|difficultywise-longest]] valid block chain it can find. A transaction&#039;s &#039;&#039;depth&#039;&#039; (the number of blocks or confirmations &#039;&#039;after&#039;&#039; it) is used to determine the likelihood of the transaction being double-spent due to the emergence of a longer fork.&lt;br /&gt;
&lt;br /&gt;
==== [[bitcoind|bitcoin-qt]] ====&lt;br /&gt;
&lt;br /&gt;
==== [https://github.com/conformal/btcd btcd] ====&lt;br /&gt;
&lt;br /&gt;
==== [[Libbitcoin|libbitcoin-server]] ====&lt;br /&gt;
&lt;br /&gt;
=== Block Retention ===&lt;br /&gt;
&lt;br /&gt;
Once a full-chain client has downloaded the entire chain, it typically retains it (as the Satoshi client did/does).&lt;br /&gt;
&lt;br /&gt;
Satoshi&#039;s original paper mentions the possibility of pruning individual transactions, which allows for full nodes which verify the entire transaction history but do not retain it. Because users are required to download and verify the block chain from some other node initially, this change isn&#039;t costless.&lt;br /&gt;
&lt;br /&gt;
== Simplified Payment Verification (SPV) Clients ==&lt;br /&gt;
&lt;br /&gt;
This client downloads a complete copy of the headers for all blocks in the entire block chain.  This means that the download and storage requirements scale linearly with the amount of time since Bitcoin was invented.&lt;br /&gt;
&lt;br /&gt;
This scheme is described in section 8 of the [http://bitcoin.org/bitcoin.pdf original bitcoin whitepaper].&lt;br /&gt;
&lt;br /&gt;
==== Block Depth Check ====&lt;br /&gt;
&lt;br /&gt;
As Satoshi writes, &amp;quot;[the thin client] can&#039;t check the transaction for himself, but by linking it to a place in the chain, he can see that a network node has accepted it, and blocks added after it further confirm the network has accepted it.&amp;quot;  If we take &amp;quot;X&amp;quot; to be the &amp;quot;number of blocks added after it&amp;quot;, then SPV essentially trusts that a transaction X blocks deep will be costly to forge.&lt;br /&gt;
&lt;br /&gt;
This is very different from the trust model in the &amp;quot;thick&amp;quot; client: the thick client verifies that a transaction&#039;s inputs are unspent by actually checking the whole chain up to that point -- there is no &amp;quot;X blocks deep&amp;quot; involved here. At that point it uses &amp;quot;X blocks deep&amp;quot; to decide how likely it is that a longer fork in the chain will emerge which excludes that transaction.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== [[BitCoinJ|bitcoinj]] ====&lt;br /&gt;
&lt;br /&gt;
Simplified Payment Verification is the verification mechanism used in [[BitCoinJ|bitcoinj]].&lt;br /&gt;
&lt;br /&gt;
A security analysis of some of the issues in bitcoinj can be found [https://bitcoinj.github.io/security-model here]; however:&lt;br /&gt;
&lt;br /&gt;
* The claim that &amp;quot;picking 10 nodes and requiring all of them to be consistent needs much less trust&amp;quot; overlooks the problem of [https://en.bitcoin.it/wiki/Weaknesses#Cancer_nodes &amp;quot;cancer nodes&amp;quot;] and [http://en.wikipedia.org/wiki/Sybil_attack Sybil attacks].&lt;br /&gt;
* Many of the security claims are qualified by some form of &amp;quot;if you don&#039;t think an attacker controls your internet connection&amp;quot;; see the previous section for a discussion of why this is problematic.&lt;br /&gt;
&lt;br /&gt;
==== [https://bitcointalk.org/index.php?topic=128055.0 picocoin] ====&lt;br /&gt;
&lt;br /&gt;
Simplified Payment Verification is the verification mechanism used in picocoin.&lt;br /&gt;
&lt;br /&gt;
The library (libccoin) that picocoin is based on includes code for validating scripts and blocks; this could potentially be used to implement a full-chain client.&lt;br /&gt;
&lt;br /&gt;
==== [[Electrum]] ====&lt;br /&gt;
&lt;br /&gt;
Electrum fetches blockchain information from Electrum servers, bitcoin nodes that index the blockchain by address.&lt;br /&gt;
Electrum performs Simple Payment Verification to check the transactions returned by servers.&lt;br /&gt;
For this, it fetches blokchain headers from about 10 random servers.&lt;br /&gt;
In addition, Electrum servers are authenticated by SSL, in order to protect users from MITM attacks.&lt;br /&gt;
&lt;br /&gt;
=== Unused Output Tree in the Block chain (UOT) ===&lt;br /&gt;
&lt;br /&gt;
There have been several proposals (the first appears to be [https://bitcointalk.org/index.php?topic=21995.0 this one] by gmaxwell, who called it an &amp;quot;open transaction tree&amp;quot;, although the term &amp;quot;open&amp;quot; is now taken to mean &amp;quot;not yet mined into the block chain&amp;quot; rather than &amp;quot;unspent&amp;quot;) to form a tree of unused transaction outputs at each block in the chain, hash it as a Merkle tree, and encode the root hash in the block chain (probably as part of the coinbase input).  This will be called an Unused Output Tree (UOT).  The first detailed proposal so far appears to be [https://en.bitcoin.it/wiki/User:DiThi/MTUT Alberto Torres&#039; proposal]; etotheipi&#039;s [https://bitcointalk.org/index.php?topic=88208.0 ultimate block chain compression] is a variant of this.&lt;br /&gt;
&lt;br /&gt;
If such UOT hashes were included in the block chain, a client which shipped with a [https://en.bitcoin.it/wiki/Vocabulary checkpoint] block that had a UOT would only need to download blocks after the checkpoint.  Moreover, once the client had downloaded those blocks and confirmed their UOTs, it could discard all but the most recent block containing a UOT.&lt;br /&gt;
&lt;br /&gt;
Hostile miners may insert blocks into the chain which have what claims to be a UOT, but which is actually invalid.  It is unlikely that such blocks could be kept out of the chain because, again, this would require adding a new block validity criterion, and miners implementing this new criterion would risk &amp;quot;mining on the wrong side&amp;quot; of a fork, which could cost them a lot of money.  Therefore, any UOT strategy would need to cope with the fact that not every block containing a UOT entry can be trusted.&lt;br /&gt;
&lt;br /&gt;
Note that at the present moment no standard format for such Unused Output Tree hashes has been agreed upon, nor do any of the blocks in the chain contain them.  The [https://bitcointalk.org/index.php?topic=91954 ultraprune] feature added to bitcoind-0.8 maintains a similar data structure on the client&#039;s disk.  It does not put this data structure or its hash anywhere in the block chain.&lt;br /&gt;
&lt;br /&gt;
== Server-Trusting Clients ==&lt;br /&gt;
&lt;br /&gt;
These clients involve a high level of trust in the server they rely upon.  Mechanisms for authenticating the server, and for confirming that the server has not been compromised, are usually not explained.&lt;br /&gt;
&lt;br /&gt;
All thin clients listed below currently connect to a single server, and are vulnerable to an attack similar to a double-spend. The attack can be run by that single server - the server can just lie to them that they received a Bitcoin transaction, and they, assuming the server does not lie, perform some service, transfer funds or send goods without actually receiving any Bitcoin in exchange. Therefore, they are implicitly trusting it.&lt;br /&gt;
&lt;br /&gt;
Future enhancements have been suggested that will have the client talk to multiple servers and broadcast transactions and query all of them.  Unfortunately it is well known to security researchers that this does not actually increase security; it simply makes the exploits more complicated and difficult to find.  Security researchers have a name for this phenomenon: it is called a &amp;quot;Sybil attack&amp;quot;&amp;lt;ref&amp;gt;http://en.wikipedia.org/wiki/Sybil_attack&amp;lt;/ref&amp;gt;.  [https://bitcointalk.org/index.php?topic=88208.msg975201#msg975201 This post] on bitcointalk explains how some governments (notably Iran and China) already perform these sorts of attacks on their own citizens, with the coerced assistance of SSL certificate authorities.&lt;br /&gt;
&lt;br /&gt;
Clients with a checkpoint (even a very old one) that download and validate the headers for the whole block chain are [http://bitcoinmedia.com/the-irc-bootstrap-method-is-flawed/#comment-4243 not vulnerable] to Sybil attacks in the following sense: they can always ensure that an attack would cost more than the amount being stolen.&lt;br /&gt;
&lt;br /&gt;
=== [[BCCAPI]] ===&lt;br /&gt;
&lt;br /&gt;
== Other ==&lt;br /&gt;
&lt;br /&gt;
* A [http://sourceforge.net/mailarchive/message.php?msg_id=28633866 thread] on bitcoin-dev&lt;br /&gt;
* A [http://bitcoin.stackexchange.com/questions/2584/is-reclaiming-disk-space-already-implemented-how-effective-will-it-be/2589 question] on bitcoin.stackexchange.com&lt;br /&gt;
* The [[Weaknesses#Sybil_attack|sybil attack (also known as &amp;quot;cancer nodes&amp;quot;)]] paragraph explains some of the issues with thin clients that base security on trusting whatever &amp;quot;a majority of the IP addresses I can see&amp;quot; say.&lt;br /&gt;
* [http://bitcoin.stackexchange.com/questions/2613/how-secure-are-various-models-of-bitcoin-clients related discussion on Stack Exchange]&lt;br /&gt;
* A hypothesized [https://bitcointalk.org/index.php?topic=134318.msg1441171#msg1441171 intermediate security class] between SPV and full-chain validation.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;references&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Technical]]&lt;br /&gt;
[[category:Clients]]&lt;br /&gt;
[[Category:Security]]&lt;/div&gt;</summary>
		<author><name>Pigeons</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Talk:Buying_bitcoins&amp;diff=19571</id>
		<title>Talk:Buying bitcoins</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Talk:Buying_bitcoins&amp;diff=19571"/>
		<updated>2011-11-17T20:44:37Z</updated>

		<summary type="html">&lt;p&gt;Pigeons: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;There needs to be some standard way of ordering the exchanges.  I propose they be ordered by 30 day volume in BTC.&lt;br /&gt;
&lt;br /&gt;
== Duplication? ==&lt;br /&gt;
&lt;br /&gt;
The information on exchanges is very close to duplicating the information from the Currency Exchange section of the [[Trade]] page. [[User:Pigeons|Pigeons]]&lt;/div&gt;</summary>
		<author><name>Pigeons</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Buying_bitcoins&amp;diff=19570</id>
		<title>Buying bitcoins</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Buying_bitcoins&amp;diff=19570"/>
		<updated>2011-11-17T20:39:44Z</updated>

		<summary type="html">&lt;p&gt;Pigeons: start re-order per user:phantomcircuit suggestion on discussion page&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;One issue currently facing a newcomer to bitcoin is, how do I get some? While there is the [[bitcoin faucet]] that can get you started with a small fraction of a coin, when getting larger amounts the user faces an abundance of choice. This page will cut through the clutter, and help direct you to the right exchanger for your needs.&lt;br /&gt;
&lt;br /&gt;
==Major Exchanges==&lt;br /&gt;
&lt;br /&gt;
The least expensive methods for buying bitcoins involve transferring funds using a bank wire, ACH, bank transfer (ACH, EUR / SEPA).&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| Exchange || Type || Adding Funds || Withdrawing Funds || [[eWallet]] || Notes&lt;br /&gt;
|-&lt;br /&gt;
|  [[MtGox]] || Market || BTC&amp;lt;br/&amp;gt;USD ([[Dwolla]])&amp;lt;br /&amp;gt;USD (International bank wire)&amp;lt;br /&amp;gt;USD (Wire to [[AurumXChange Company|AurumXChange]])&amp;lt;br /&amp;gt;AUD (Bank wire)&amp;lt;br /&amp;gt;GBP (Bank wire)&amp;lt;br /&amp;gt;Liberty Reserve USD || BTC&amp;lt;br /&amp;gt;USD ([[Dwolla]])&amp;lt;br /&amp;gt;USD (Wire via [[AurumXChange Company|AurumXChange]])&amp;lt;br /&amp;gt;USD (Check via [[Paxum]])&amp;lt;br /&amp;gt;USD (ATM via [[Paxum]])&amp;lt;br /&amp;gt;USD (wire via [[Paxum]])&amp;lt;br /&amp;gt;AUD (Bank wire)&amp;lt;br /&amp;gt;Liberty Reserve USD&amp;lt;br /&amp;gt;Liberty Reserve USD (via AurumXChange) || {{Table Value Yes}} || Oldest running exchange. Higest daily volume. Respecting AML laws, Restrictions and limits on withdrawals.&lt;br /&gt;
|-&lt;br /&gt;
|  [[TradeHill]] || Market || BTC&amp;lt;br/&amp;gt;USD (Domestic bank wire)&amp;lt;br&amp;gt;USD (International bank wire)&amp;lt;br/&amp;gt;USD (Check via [[Paxum]])&amp;lt;br /&amp;gt;USD (wire via [[Paxum]])&amp;lt;br /&amp;gt;EUR (via [[Paxum]]&amp;lt;br /&amp;gt;CAD (via [[Paxum]]&amp;lt;br /&amp;gt;CLP (Bank transfer)&amp;lt;br /&amp;gt;PEN (Bank transfer)&amp;lt;br /&amp;gt;INR (Bank transfer)&amp;lt;br /&amp;gt;AUD (Bank transfer)&amp;lt;br /&amp;gt;Liberty Reserve USD || BTC&amp;lt;br/&amp;gt;USD (Domestic bank wire)&amp;lt;br/&amp;gt;USD (International bank wire)&amp;lt;br /&amp;gt;USD (Direct deposit / ACH)&amp;lt;br /&amp;gt;USD (Check via [[Paxum]])&amp;lt;br /&amp;gt;USD (ATM via [[Paxum]])&amp;lt;br /&amp;gt;USD (Prepaid card via [[Paxum]])&amp;lt;br /&amp;gt;EUR (via [[Paxum]]&amp;lt;br /&amp;gt;CAD (via [[Paxum]])&amp;lt;br /&amp;gt;CLP (Bank transfer)&amp;lt;br /&amp;gt;INR (Bank transfer)&amp;lt;br /&amp;gt;AUD (Bank transfer)&amp;lt;br /&amp;gt;Liberty Reserve USD || {{Table Value Yes}} || &lt;br /&gt;
|-&lt;br /&gt;
|  [[BTC-E]] || Market || BTC&amp;lt;br/&amp;gt;USD ([[Liberty Reserve]])&amp;lt;br /&amp;gt;USD (Interkassa) || BTC&amp;lt;br/&amp;gt;USD (Webmoney) || {{Table Value Yes}} || Language: Russian.  Interkassa can be funded from Webmoney and many other methods.&lt;br /&gt;
|-&lt;br /&gt;
|  [[VirWoX]] || Market || BTC&amp;lt;br/&amp;gt;SLL (Second Life)&amp;lt;br/&amp;gt;ACD (Avination)&amp;lt;br/&amp;gt;OMC (OpenSim)&amp;lt;br/&amp;gt;USD,EUR,GBP,CHF ([[PayPal]])&amp;lt;br/&amp;gt;USD,EUR,GBP (Credit &amp;amp; Debit cards via [[Moneybookers]])&amp;lt;br/&amp;gt;USD,EUR,GBP ([[NETELLER]])&amp;lt;br/&amp;gt;EUR (DIRECTebanking / Sofortüberweisung)&amp;lt;br/&amp;gt;USD,EUR,GBP,CHF ([[paysafecard]])&amp;lt;br/&amp;gt;EUR (SEPA bank transfer) || BTC&amp;lt;br/&amp;gt;SLL (Second Life)&amp;lt;br/&amp;gt;ACD (Avination)&amp;lt;br/&amp;gt;OMC (OpenSim)&amp;lt;br/&amp;gt;USD,EUR,GBP,CHF ([[PayPal]])&amp;lt;br /&amp;gt;USD,EUR,GBP ([[Moneybookers]])&amp;lt;br/&amp;gt;USD,EUR,GBP ([[NETELLER]])&amp;lt;br/&amp;gt;EUR (SEPA bank transfer) || {{Table Value Yes}} || Trading through Second Life Linden Dollars.&amp;lt;br/&amp;gt;Variable limits on PayPal and Credit Card deposits. &lt;br /&gt;
|-&lt;br /&gt;
|  [[Britcoin]]&amp;lt;br/&amp;gt;&amp;amp;amp;&amp;lt;br/&amp;gt;[[Intersango]] || Market || BTC&amp;lt;br /&amp;gt;GBP (bank deposit)&amp;lt;br/&amp;gt;USD ([[Dwolla]])&amp;lt;br /&amp;gt;USD (Domestic bank wire)&amp;lt;br /&amp;gt;USD (ACH)&amp;lt;br /&amp;gt;PLN (Bank Wire) || BTC&amp;lt;br /&amp;gt;GBP (bank transfer)&amp;lt;br/&amp;gt;USD ([[Dwolla]])&amp;lt;br /&amp;gt;PLN (Bank Wire) || {{Table Value Yes}} || Operated by the [https://bitcoinconsultancy.com/ BitcoinConsultancy] &amp;lt;br/&amp;gt; [https://intersango.com Intersango] is a completely custom trading platform built from the ground up with security, scalability and extensibility in mind. [https://bitcointalk.org/index.php?topic=43745.0 More Information]&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;Boasts an [https://bitcoinconsultancy.com/wiki/index.php/Intersango/API ever expanding API]&lt;br /&gt;
|-&lt;br /&gt;
|  [[BitChange.pl]] || Market || BTC&amp;lt;br /&amp;gt;PLN (Bank wire) || BTC&amp;lt;br /&amp;gt;PLN (Bank wire) || {{Table Value Yes}} ||&lt;br /&gt;
|-&lt;br /&gt;
|  [[VirtEx]] || Market || BTC&amp;lt;br/&amp;gt;CAD (online bill pay)&amp;lt;br /&amp;gt;CAD (cash at TDBank) || BTC&amp;lt;br/&amp;gt;CAD (direct deposit) || {{Table Value Yes}} ||&lt;br /&gt;
|-&lt;br /&gt;
|  [[Camp BX]] (CBX) || Market || BTC &amp;lt;br/&amp;gt;USD (Check / ACH)&amp;lt;br /&amp;gt;USPS Postal Money Order &amp;lt;br/&amp;gt; USD ([[Dwolla]])&amp;lt;br/&amp;gt; USD (Domestic bank wire)&amp;lt;br/&amp;gt;USD (International bank wire) || BTC &amp;lt;br /&amp;gt;USD (Check / ACH)&amp;lt;br /&amp;gt;USPS Postal Money Order &amp;lt;br/&amp;gt; USD ([[Dwolla]])&amp;lt;br/&amp;gt; USD (Domestic bank wire)&amp;lt;br/&amp;gt;USD (International bank wire) || {{Table Value Yes}} || &amp;lt;ul&amp;gt; &amp;lt;li&amp;gt; Security certification from McAfee&amp;lt;/li&amp;gt;&amp;lt;li&amp;gt; Advanced trading options with AON/FOK/Market&amp;lt;/li&amp;gt; &amp;lt;li&amp;gt;STOPLOSS and Short-Selling in Pipeline&amp;lt;/li&amp;gt;&amp;lt;li&amp;gt; Trading API available&amp;lt;/li&amp;gt;&amp;lt;li&amp;gt; Wallet API available &amp;lt;/li&amp;gt;&amp;lt;li&amp;gt; CBX Instant Bitcoin Transfers Feature &amp;lt;/li&amp;gt;&amp;lt;li&amp;gt; Stoploss / Custom Order Expiry Date/Time &amp;lt;/li&amp;gt;&amp;lt;li&amp;gt; SMS (Text Message) Notifications &amp;lt;/li&amp;gt; &amp;lt;li&amp;gt; Two-Factor Authentication &amp;lt;/li&amp;gt; &amp;lt;li&amp;gt; Based in USA - Atlanta &amp;lt;/li&amp;gt; &amp;lt;/ul&amp;gt;   &lt;br /&gt;
|-&lt;br /&gt;
|  [[Mercado Bitcoin]] || Market || BTC&amp;lt;br/&amp;gt;BRL (Bank transfer)&amp;lt;br /&amp;gt;BRL (Bank transfer - MoIP)&amp;lt;br /&amp;gt;Liberty Reserve USD || BTC&amp;lt;br/&amp;gt;BRL (Bank transfer - MoIP) || {{Table Value Yes}} || Language: Portugese&lt;br /&gt;
|-&lt;br /&gt;
|  [[Bitcoin-Central]] || Market || BTC&amp;lt;br /&amp;gt;CAD (Interac)&amp;lt;br /&amp;gt;CAD (Bank wire)&amp;lt;br /&amp;gt;CAD (Cash deposit)&amp;lt;br /&amp;gt;EUR (SEPA)&amp;lt;br /&amp;gt;INR (Bank wire)&amp;lt;br /&amp;gt;Liberty Reserve USD&amp;lt;br /&amp;gt;Liberty Reserve EUR&amp;lt;br /&amp;gt;PGAU [[Pecunix]] Gold || BTC&amp;lt;br /&amp;gt;CAD (Interac)&amp;lt;br /&amp;gt;CAD (Bank wire)&amp;lt;br /&amp;gt;EUR (SEPA)&amp;lt;br /&amp;gt;INR (Bank wire)&amp;lt;br /&amp;gt;Liberty Reserve USD&amp;lt;br /&amp;gt;Liberty Reserve EUR&amp;lt;br /&amp;gt;[[Pecunix]] Gold || {{Table Value Yes}} || [https://github.com/davout/bitcoin-central Open-source], community reviewed platform&amp;lt;br /&amp;gt;Available in French and English languages&lt;br /&gt;
|-&lt;br /&gt;
|  [[HelloBitcoin]] || Market || BTC&amp;lt;br/&amp;gt;USD (Dwolla)&amp;lt;br /&amp;gt;USD (Bank wire)&amp;lt;br /&amp;gt;USD (Check) || BTC&amp;lt;br/&amp;gt;USD (Check)&amp;lt;br /&amp;gt;USD (Bank wire)&amp;lt;br /&amp;gt;USD (ACH) || {{Table Value Yes}} || Offers margin trading and shorting.&lt;br /&gt;
|-&lt;br /&gt;
|  [[Brasil Bitcoin Market]] || Market || BTC&amp;lt;br/&amp;gt;BRL (Bank transfer - MoIP) || BTC&amp;lt;br/&amp;gt;BRL (Bank transfer - MoIP) || {{Table Value Yes}} || Language: Portugese&lt;br /&gt;
|-&lt;br /&gt;
|  [[Australian Bitcoin Exchange]] || Market || BTC&amp;lt;br /&amp;gt;AUD (Electronic funds deposit)&amp;lt;br /&amp;gt;AUD (Mtgox Redeemable Voucher) || BTC&amp;lt;br /&amp;gt;AUD (Electronic funds transfer) || {{Table Value Yes}} ||&lt;br /&gt;
|-&lt;br /&gt;
|  [[FreshBTC]] || Market || BTC&amp;lt;br /&amp;gt;PLN (Bank wire) || BTC&amp;lt;br /&amp;gt;PLN (Bank wire) || {{Table Value Yes}} ||&lt;br /&gt;
|-&lt;br /&gt;
|  [[BitStamp]] || Market || BTC&amp;lt;br /&amp;gt;EUR (SEPA transfer) || BTC&amp;lt;br /&amp;gt;EUR (SEPA transfer) || {{Table Value Yes}} || EUR deposits converted to/from USD for trading&lt;br /&gt;
|-&lt;br /&gt;
|  [[Aqoin]] || Market || BTC&amp;lt;br /&amp;gt;EUR (SEPA transfer)&amp;lt;br /&amp;gt;EUR (Domestic bank wire/Spain)&amp;lt;br /&amp;gt;EUR (International bank wire) || BTC&amp;lt;br /&amp;gt;EUR (SEPA transfer)&amp;lt;br /&amp;gt;EUR (Domestic bank wire/Spain)&amp;lt;br /&amp;gt;PayPal || {{Table Value Yes}} || AQOIN ANNOUNCED NOVEMBER 16 THEY ARE CLOSING THEIR MARKET.&amp;lt;br /&amp;gt;Languages: English, Spanish&lt;br /&gt;
|-&lt;br /&gt;
|  [[Rock Currency Exchange]] || Market || BTC&amp;lt;br/&amp;gt;EUR (SEPA transfer)&amp;lt;br /&amp;gt;SLL (Second Life)&amp;lt;br /&amp;gt;USD (Dwolla) || BTC&amp;lt;br/&amp;gt;EUR (SEPA transfer)&amp;lt;br /&amp;gt;SLL (Second Life)&amp;lt;br /&amp;gt;USD (Dwolla)  || {{Table Value Yes}} || &lt;br /&gt;
|-&lt;br /&gt;
|  [[CryptoXchange]]  || Market || BTC&amp;lt;br/&amp;gt;NMC&amp;lt;br/&amp;gt;LTC&amp;lt;br/&amp;gt;USD&amp;lt;br/&amp;gt;AUD (Bank Transfer)&amp;lt;br/&amp;gt;GBP || BTC&amp;lt;br/&amp;gt;NMC&amp;lt;br/&amp;gt;LTC&amp;lt;br/&amp;gt;USD&amp;lt;br/&amp;gt;AUD (Bank Transfer)&amp;lt;br/&amp;gt;GBP  || {{Table Value Yes}} || &amp;lt;ul&amp;gt; &amp;lt;li&amp;gt; Buy Gold,Silver,Palladium and Casascius physical bitcoins plus other items in the store.&amp;lt;/li&amp;gt; &amp;lt;li&amp;gt; Affiliate program.&amp;lt;/li&amp;gt; &amp;lt;li&amp;gt; Mining Pool integration program.&amp;lt;/li&amp;gt; &amp;lt;li&amp;gt; Bitcoin, Namecoin and Litecoin &amp;lt;/li&amp;gt; &amp;lt;li&amp;gt;Multiple Authentication Levels&amp;lt;/li&amp;gt; &amp;lt;li&amp;gt; API &amp;lt;/li&amp;gt; &amp;lt;li&amp;gt; Free Yubikey&#039;s to High Volume Traders &amp;lt;/li&amp;gt; &amp;lt;li&amp;gt; An Australian Owned and Operated Registered Company.&amp;lt;/li&amp;gt; &amp;lt;li&amp;gt;&lt;br /&gt;
Inquiries: contact@cryptoxchanger.com or Phone: +61280050602 &amp;lt;/li&amp;gt; &amp;lt;/ul&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|  [[WM-Center]] || Exchanger || BTC&amp;lt;br/&amp;gt;USD (International bank wire, Western Unon, Moneygram, Xoom etc, cash)&amp;lt;br /&amp;gt;EUR (IBAN bank wire)&amp;lt;br /&amp;gt;RUB (bank wire, WU, Anelik and etc, cash)&amp;lt;br /&amp;gt;AUD (Bank wire)&amp;lt;br /&amp;gt;Liberty Reserve USD/EUR, Perfect Money USD/EUR, Pecunix, Paxum, c-gold, Hoopay, GDP || BTC&amp;lt;br /&amp;gt;USD (International bank wire, Western Unon, Moneygram, Xoom etc, cash)&amp;lt;br /&amp;gt;EUR (IBAN bank wire)&amp;lt;br /&amp;gt;RUB (bank wire, WU, Anelik and etc, cash)&amp;lt;br /&amp;gt;AUD (Bank wire)&amp;lt;br /&amp;gt;Liberty Reserve USD/EUR, Perfect Money USD/EUR, Pecunix, Paxum, c-gold, Hoopay, GDP&amp;lt;br /&amp;gt; PayPal USD/EUR, Moneybookers, Neteller || {{Table Value No}} || 24/7/365 support in english, spanish and russian!&lt;br /&gt;
|-&lt;br /&gt;
|  [[bitNZ]] || Market || BTC&amp;lt;br/&amp;gt;NZD (Domestic bank transfer) || BTC&amp;lt;br/&amp;gt;NZD (Domestic bank transfer) || {{Table Value Yes}} || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Fixed Rate Exchanges &amp;amp; Others==&lt;br /&gt;
&lt;br /&gt;
For smaller amounts, the options are limited due to bank transfer fees, conversion fees and transaction size restrictions. Options include:&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| Service || Type || Payment Method || Notes&lt;br /&gt;
|-&lt;br /&gt;
| [[Bitcoin Market]] || Market || USD (Liberty Reserve)&amp;lt;br /&amp;gt;USD (MoneyBookers)&amp;lt;br /&amp;gt;GAU (Pecunix) || Varies (person to person)&lt;br /&gt;
|-&lt;br /&gt;
| [[bitcoins.aunz.ws]] || Fixed Rate || AUD || cash deposit at NAB &lt;br /&gt;
|-&lt;br /&gt;
| [[BitMarket.eu]] || Market || EUR (Euro)&amp;lt;br /&amp;gt;GBP (British Sterling Pound)&amp;lt;br /&amp;gt;USD (U.S. Dollar)&amp;lt;br&amp;gt;PLN (Polish złoty)&amp;lt;br /&amp;gt;AUD (Australian Dollar)&amp;lt;br /&amp;gt;CAD (Canadian Dollar)&amp;lt;br /&amp;gt;ZAR (South African Rand)&amp;lt;br /&amp;gt;ILS (Israeli Shekel)&amp;lt;br /&amp;gt;CHF (Swiss Franc)&amp;lt;br&amp;gt;RUB (Russian Ruble) || Varies (person to person)&lt;br /&gt;
|-&lt;br /&gt;
| [[Bitcoiny.cz]] || Market || CZK || Varies (person to person)&lt;br /&gt;
|-&lt;br /&gt;
| [[Bit]] / BTC China || Market || n/a || n/a&lt;br /&gt;
|-&lt;br /&gt;
| [[Bitfunnel]] || Credit Card payment exchange/brokering services || Varies (person to person)&lt;br /&gt;
|-&lt;br /&gt;
| [[bitcoin-otc|#bitcoin-otc]] || [http://bitcoin-otc.com/vieworderbook.php Order Book] || Varies (person to person) || IRC trading marketplace will usually have people willing to deal for small and larger amounts using various payment methods, including [[PayPal]], [[Dwolla]], [[Linden Dollars]], etc.&lt;br /&gt;
|-&lt;br /&gt;
| [[Lilion Transfer]] || Fixed Rate || USD (Liberty Reserve)&amp;lt;br /&amp;gt;[[Pecunix]] || &lt;br /&gt;
|-&lt;br /&gt;
| [[Nanaimo Gold]] || Fixed Rate || USD (Liberty Reserve)&amp;lt;br /&amp;gt;Western Union money transfer&amp;lt;br /&amp;gt;Moneygram money transfer&amp;lt;br /&amp;gt;Cash in the mail || LR &amp;lt;--&amp;gt; Bitcoin exchange is automated&amp;lt;br /&amp;gt;For cash in the mail send USD, EUR, CAD, or GBP.  Canada mailing address.&lt;br /&gt;
|-&lt;br /&gt;
| [[Bitcoin Argentina]] || Fixed Rate || Cash: ARS, BRL, USD &amp;lt;br /&amp;gt; Bank transfer: ARS || No exchange fees!&lt;br /&gt;
|-&lt;br /&gt;
| [[Bitcoin.com.es]] || Fixed Rate || EUR (bank deposit) || Bank transfer or cash deposits at OpenBank in Spain.&lt;br /&gt;
|-&lt;br /&gt;
| [[Bahtcoin]] || Fixed Rate || Cash, Webmoney&amp;lt;br /&amp;gt;Liberty Reserve USD || Will cash out to Thai mobile and gaming prepaid cards as well.&lt;br /&gt;
|-&lt;br /&gt;
| [[Bitcoin Brasil]] || Fixed Rate || BRL (Brazilian Real)&amp;lt;br /&amp;gt;USD || Cash exchange&lt;br /&gt;
|-&lt;br /&gt;
| [[BitPiggy]] || Fixed Rate || AUD (Australian Dollar)|| Payment via bank transfer.&lt;br /&gt;
|-&lt;br /&gt;
| [[GetBitcoin]] || Fixed Rate || USD (Dwolla)&amp;lt;BR /&amp;gt;USD (Bank wire)&amp;lt;BR /&amp;gt;USD (Cash in the mail)&amp;lt;BR /&amp;gt;USD (Money Order)&amp;lt;BR /&amp;gt;USD (Cashier&#039;s Check/Certified Check)&amp;lt;BR /&amp;gt;USD (Western Union)&amp;lt;BR /&amp;gt;USD (Traveler&#039;s Check)&amp;lt;BR /&amp;gt;USD (Prepaid Debit Card)&amp;lt;BR /&amp;gt; || For cash in mail, send USD.  U.S. mailing address.&lt;br /&gt;
|-&lt;br /&gt;
| [[Bitcoin 4 Cash]] || Fixed Rate || Cash in the mail || Send USD or CAD. Canada mailing address.&lt;br /&gt;
|-&lt;br /&gt;
| [[Bitcoin2Cash]] || Fixed Rate || Cash in the mail || Send USD. U.S. mailing address.&lt;br /&gt;
|-&lt;br /&gt;
| [[bitcoin.local]] || Directory || Varies (person to person) ||&lt;br /&gt;
|-&lt;br /&gt;
| [[bcchanger.com]] || Directory || Enables person to person purchases and sales via PayPal, MoneyBookers and other e-currency platforms ||&lt;br /&gt;
|-&lt;br /&gt;
| [[YouTipIt]] || Fixed Rate || USD&amp;lt;br /&amp;gt;EUR&amp;lt;br /&amp;gt;GBP || Purchase bitcoins to add to your balance with YouTipIt using credit card through ClickAndBuy.&lt;br /&gt;
|-&lt;br /&gt;
| [[Ubitex]] || In person exchange || Varies (person to person) ||&lt;br /&gt;
|-&lt;br /&gt;
| [[Bitcoil]] || Fixed Rate || ILS (bank transfer) ||&lt;br /&gt;
|- &lt;br /&gt;
|[[Accesscoin]] || Fixed Rate || USD (Google Checkout) || Requires Facebook account for second factor authentication ||&lt;br /&gt;
|-&lt;br /&gt;
|[[btcnow]] || Fixed Rate || USD (Google Checkout) ||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Other Financial Services==&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| Service || Type || Payment || Settled || Notes&lt;br /&gt;
|-&lt;br /&gt;
| [http://polimedia.us/bitcoin/options.php Derivatives] || Buy / Sell / Exercise CALLs / PUTs, American style.&amp;lt;br /&amp;gt;52 strikes offered (by .5), current month + 2.&amp;lt;br /&amp;gt; No shorting available yet.|| BTC || BTC || Transactions encoded via amt.&amp;lt;br /&amp;gt; Must use non-rounding client&amp;lt;br /&amp;gt;(0.3.24 or later)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Physical Bitcoins==&lt;br /&gt;
&lt;br /&gt;
Physical Bitcoins are bearer tokens that have an embedded redeemable digital bitcoin value if torn open.  While they are somewhat expensive if bought purely for the digital bitcoins, they are relatively easy to get, because they can be purchased with PayPal or credit card - payment methods not typically not accepted for pure digital bitcoin purchases.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| Service || Type || Payment || Notes&lt;br /&gt;
|-&lt;br /&gt;
| [http://www.memorydealers.com Memory Dealers] || Casascius Physical Bitcoins || USD (PayPal/Credit Card) || &lt;br /&gt;
|-&lt;br /&gt;
| [https://www.casascius.com Casascius.com] || Casascius Physical Bitcoins || BTC || &lt;br /&gt;
|-&lt;br /&gt;
| [http://www.bitbills.com Bitbills] || Bitbills cards || BTC || Not taking orders as of Nov 2011.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
&lt;br /&gt;
* [[:Category:Digital_currencies|Digital Currencies]]&lt;br /&gt;
* [[Selling bitcoins]]&lt;br /&gt;
* [[Secure Trading]]&lt;br /&gt;
* [[:Category:Local|Local]] exchanges&lt;br /&gt;
&lt;br /&gt;
[[Category:Exchanges]]&lt;br /&gt;
[[Category:Introduction]]&lt;br /&gt;
[[zh-cn:购买bitcoins]]&lt;/div&gt;</summary>
		<author><name>Pigeons</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Aqoin&amp;diff=19569</id>
		<title>Aqoin</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Aqoin&amp;diff=19569"/>
		<updated>2011-11-17T20:22:26Z</updated>

		<summary type="html">&lt;p&gt;Pigeons: Added info on closure of market&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Aqoin is an online wallet, a payment processing system for Bitcoin and a [[currency exchange]] site serving those trading between bitcoins and the following currencies:&lt;br /&gt;
&lt;br /&gt;
* EUR (Euro)&lt;br /&gt;
&lt;br /&gt;
The languages supported by the site are Spanish and English.&lt;br /&gt;
&lt;br /&gt;
The service was announced September 1th, 2011.&lt;br /&gt;
&lt;br /&gt;
Aqoin announced on November 16, 2011 that they are closing their market.&amp;lt;ref&amp;gt;[http://aqoin.blogspot.com/2011/11/aqoin-aviso-importante-cerramos-nuestro.html&#039;&#039;http://aqoin.blogspot.com/2011/11/aqoin-aviso-importante-cerramos-nuestro.html&#039;&#039;]&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Adding Funds==&lt;br /&gt;
&lt;br /&gt;
===EUR (Bank transfer)===&lt;br /&gt;
Funds may be added using SEPA zone bank wires or International wire transfers.  Those in Spain can select the national (domestic) wire transfer method.&lt;br /&gt;
&lt;br /&gt;
==Withdrawing Funds==&lt;br /&gt;
&lt;br /&gt;
===EUR (Bank transfer)===&lt;br /&gt;
Funds may be withdrawn as SEPA zone bank wires or those in Spain can select the national (domestic) wire transfer method.&lt;br /&gt;
&lt;br /&gt;
===PayPal===&lt;br /&gt;
Funds may be withdrawn to PayPal.&lt;br /&gt;
&lt;br /&gt;
==Aqoin payments module==&lt;br /&gt;
The aqoin payments module allows online merchants to offer their products and services in Bitcoins. It allows instant payments using aqoin accounts or payments throught Bitcoin network.&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
&lt;br /&gt;
* [[Buying bitcoins]]&lt;br /&gt;
* [[Selling bitcoins]]&lt;br /&gt;
&lt;br /&gt;
==External Links==&lt;br /&gt;
&lt;br /&gt;
* [http://www.aqoin.me Aqoin] web site&lt;br /&gt;
* [http://aqoin.blogspot.com Aqoin blog]&lt;br /&gt;
* [http://twitter.com/aqoin Aqoin in Twitter]&lt;br /&gt;
* [http://aqoin.me/ayuda_modulo_pago.php Aqoin payments module]&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;/div&gt;</summary>
		<author><name>Pigeons</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Buying_bitcoins&amp;diff=19568</id>
		<title>Buying bitcoins</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Buying_bitcoins&amp;diff=19568"/>
		<updated>2011-11-17T20:03:43Z</updated>

		<summary type="html">&lt;p&gt;Pigeons: Aqoin closing their market per their blog and twitter&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;One issue currently facing a newcomer to bitcoin is, how do I get some? While there is the [[bitcoin faucet]] that can get you started with a small fraction of a coin, when getting larger amounts the user faces an abundance of choice. This page will cut through the clutter, and help direct you to the right exchanger for your needs.&lt;br /&gt;
&lt;br /&gt;
==Major Exchanges==&lt;br /&gt;
&lt;br /&gt;
The least expensive methods for buying bitcoins involve transferring funds using a bank wire, ACH, bank transfer (ACH, EUR / SEPA).&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| Exchange || Type || Adding Funds || Withdrawing Funds || [[eWallet]] || Notes&lt;br /&gt;
|-&lt;br /&gt;
|  [[MtGox]] || Market || BTC&amp;lt;br/&amp;gt;USD ([[Dwolla]])&amp;lt;br /&amp;gt;USD (International bank wire)&amp;lt;br /&amp;gt;USD (Wire to [[AurumXChange Company|AurumXChange]])&amp;lt;br /&amp;gt;AUD (Bank wire)&amp;lt;br /&amp;gt;GBP (Bank wire)&amp;lt;br /&amp;gt;Liberty Reserve USD || BTC&amp;lt;br /&amp;gt;USD ([[Dwolla]])&amp;lt;br /&amp;gt;USD (Wire via [[AurumXChange Company|AurumXChange]])&amp;lt;br /&amp;gt;USD (Check via [[Paxum]])&amp;lt;br /&amp;gt;USD (ATM via [[Paxum]])&amp;lt;br /&amp;gt;USD (wire via [[Paxum]])&amp;lt;br /&amp;gt;AUD (Bank wire)&amp;lt;br /&amp;gt;Liberty Reserve USD&amp;lt;br /&amp;gt;Liberty Reserve USD (via AurumXChange) || {{Table Value Yes}} || Oldest running exchange. Higest daily volume. Respecting AML laws, Restrictions and limits on withdrawals.&lt;br /&gt;
|-&lt;br /&gt;
|  [[TradeHill]] || Market || BTC&amp;lt;br/&amp;gt;USD (Domestic bank wire)&amp;lt;br&amp;gt;USD (International bank wire)&amp;lt;br/&amp;gt;USD (Check via [[Paxum]])&amp;lt;br /&amp;gt;USD (wire via [[Paxum]])&amp;lt;br /&amp;gt;EUR (via [[Paxum]]&amp;lt;br /&amp;gt;CAD (via [[Paxum]]&amp;lt;br /&amp;gt;CLP (Bank transfer)&amp;lt;br /&amp;gt;PEN (Bank transfer)&amp;lt;br /&amp;gt;INR (Bank transfer)&amp;lt;br /&amp;gt;AUD (Bank transfer)&amp;lt;br /&amp;gt;Liberty Reserve USD || BTC&amp;lt;br/&amp;gt;USD (Domestic bank wire)&amp;lt;br/&amp;gt;USD (International bank wire)&amp;lt;br /&amp;gt;USD (Direct deposit / ACH)&amp;lt;br /&amp;gt;USD (Check via [[Paxum]])&amp;lt;br /&amp;gt;USD (ATM via [[Paxum]])&amp;lt;br /&amp;gt;USD (Prepaid card via [[Paxum]])&amp;lt;br /&amp;gt;EUR (via [[Paxum]]&amp;lt;br /&amp;gt;CAD (via [[Paxum]])&amp;lt;br /&amp;gt;CLP (Bank transfer)&amp;lt;br /&amp;gt;INR (Bank transfer)&amp;lt;br /&amp;gt;AUD (Bank transfer)&amp;lt;br /&amp;gt;Liberty Reserve USD || {{Table Value Yes}} || &lt;br /&gt;
|-&lt;br /&gt;
|  [[CryptoXchange]]  || Market || BTC&amp;lt;br/&amp;gt;NMC&amp;lt;br/&amp;gt;LTC&amp;lt;br/&amp;gt;USD&amp;lt;br/&amp;gt;AUD (Bank Transfer)&amp;lt;br/&amp;gt;GBP || BTC&amp;lt;br/&amp;gt;NMC&amp;lt;br/&amp;gt;LTC&amp;lt;br/&amp;gt;USD&amp;lt;br/&amp;gt;AUD (Bank Transfer)&amp;lt;br/&amp;gt;GBP  || {{Table Value Yes}} || &amp;lt;ul&amp;gt; &amp;lt;li&amp;gt; Buy Gold,Silver,Palladium and Casascius physical bitcoins plus other items in the store.&amp;lt;/li&amp;gt; &amp;lt;li&amp;gt; Affiliate program.&amp;lt;/li&amp;gt; &amp;lt;li&amp;gt; Mining Pool integration program.&amp;lt;/li&amp;gt; &amp;lt;li&amp;gt; Bitcoin, Namecoin and Litecoin &amp;lt;/li&amp;gt; &amp;lt;li&amp;gt;Multiple Authentication Levels&amp;lt;/li&amp;gt; &amp;lt;li&amp;gt; API &amp;lt;/li&amp;gt; &amp;lt;li&amp;gt; Free Yubikey&#039;s to High Volume Traders &amp;lt;/li&amp;gt; &amp;lt;li&amp;gt; An Australian Owned and Operated Registered Company.&amp;lt;/li&amp;gt; &amp;lt;li&amp;gt;&lt;br /&gt;
Inquiries: contact@cryptoxchanger.com or Phone: +61280050602 &amp;lt;/li&amp;gt; &amp;lt;/ul&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|  [[BTC-E]] || Market || BTC&amp;lt;br/&amp;gt;USD ([[Liberty Reserve]])&amp;lt;br /&amp;gt;USD (Interkassa) || BTC&amp;lt;br/&amp;gt;USD (Webmoney) || {{Table Value Yes}} || Language: Russian.  Interkassa can be funded from Webmoney and many other methods.&lt;br /&gt;
|-&lt;br /&gt;
|  [[VirWoX]] || Market || BTC&amp;lt;br/&amp;gt;SLL (Second Life)&amp;lt;br/&amp;gt;ACD (Avination)&amp;lt;br/&amp;gt;OMC (OpenSim)&amp;lt;br/&amp;gt;USD,EUR,GBP,CHF ([[PayPal]])&amp;lt;br/&amp;gt;USD,EUR,GBP (Credit &amp;amp; Debit cards via [[Moneybookers]])&amp;lt;br/&amp;gt;USD,EUR,GBP ([[NETELLER]])&amp;lt;br/&amp;gt;EUR (DIRECTebanking / Sofortüberweisung)&amp;lt;br/&amp;gt;USD,EUR,GBP,CHF ([[paysafecard]])&amp;lt;br/&amp;gt;EUR (SEPA bank transfer) || BTC&amp;lt;br/&amp;gt;SLL (Second Life)&amp;lt;br/&amp;gt;ACD (Avination)&amp;lt;br/&amp;gt;OMC (OpenSim)&amp;lt;br/&amp;gt;USD,EUR,GBP,CHF ([[PayPal]])&amp;lt;br /&amp;gt;USD,EUR,GBP ([[Moneybookers]])&amp;lt;br/&amp;gt;USD,EUR,GBP ([[NETELLER]])&amp;lt;br/&amp;gt;EUR (SEPA bank transfer) || {{Table Value Yes}} || Trading through Second Life Linden Dollars.&amp;lt;br/&amp;gt;Variable limits on PayPal and Credit Card deposits. &lt;br /&gt;
|-&lt;br /&gt;
|  [[Britcoin]]&amp;lt;br/&amp;gt;&amp;amp;amp;&amp;lt;br/&amp;gt;[[Intersango]] || Market || BTC&amp;lt;br /&amp;gt;GBP (bank deposit)&amp;lt;br/&amp;gt;USD ([[Dwolla]])&amp;lt;br /&amp;gt;USD (Domestic bank wire)&amp;lt;br /&amp;gt;USD (ACH)&amp;lt;br /&amp;gt;PLN (Bank Wire) || BTC&amp;lt;br /&amp;gt;GBP (bank transfer)&amp;lt;br/&amp;gt;USD ([[Dwolla]])&amp;lt;br /&amp;gt;PLN (Bank Wire) || {{Table Value Yes}} || Operated by the [https://bitcoinconsultancy.com/ BitcoinConsultancy] &amp;lt;br/&amp;gt; [https://intersango.com Intersango] is a completely custom trading platform built from the ground up with security, scalability and extensibility in mind. [https://bitcointalk.org/index.php?topic=43745.0 More Information]&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;Boasts an [https://bitcoinconsultancy.com/wiki/index.php/Intersango/API ever expanding API]&lt;br /&gt;
|-&lt;br /&gt;
|  [[BitChange.pl]] || Market || BTC&amp;lt;br /&amp;gt;PLN (Bank wire) || BTC&amp;lt;br /&amp;gt;PLN (Bank wire) || {{Table Value Yes}} ||&lt;br /&gt;
|-&lt;br /&gt;
|  [[VirtEx]] || Market || BTC&amp;lt;br/&amp;gt;CAD (online bill pay)&amp;lt;br /&amp;gt;CAD (cash at TDBank) || BTC&amp;lt;br/&amp;gt;CAD (direct deposit) || {{Table Value Yes}} ||&lt;br /&gt;
|-&lt;br /&gt;
|  [[Camp BX]] (CBX) || Market || BTC &amp;lt;br/&amp;gt;USD (Check / ACH)&amp;lt;br /&amp;gt;USPS Postal Money Order &amp;lt;br/&amp;gt; USD ([[Dwolla]])&amp;lt;br/&amp;gt; USD (Domestic bank wire)&amp;lt;br/&amp;gt;USD (International bank wire) || BTC &amp;lt;br /&amp;gt;USD (Check / ACH)&amp;lt;br /&amp;gt;USPS Postal Money Order &amp;lt;br/&amp;gt; USD ([[Dwolla]])&amp;lt;br/&amp;gt; USD (Domestic bank wire)&amp;lt;br/&amp;gt;USD (International bank wire) || {{Table Value Yes}} || &amp;lt;ul&amp;gt; &amp;lt;li&amp;gt; Security certification from McAfee&amp;lt;/li&amp;gt;&amp;lt;li&amp;gt; Advanced trading options with AON/FOK/Market&amp;lt;/li&amp;gt; &amp;lt;li&amp;gt;STOPLOSS and Short-Selling in Pipeline&amp;lt;/li&amp;gt;&amp;lt;li&amp;gt; Trading API available&amp;lt;/li&amp;gt;&amp;lt;li&amp;gt; Wallet API available &amp;lt;/li&amp;gt;&amp;lt;li&amp;gt; CBX Instant Bitcoin Transfers Feature &amp;lt;/li&amp;gt;&amp;lt;li&amp;gt; Stoploss / Custom Order Expiry Date/Time &amp;lt;/li&amp;gt;&amp;lt;li&amp;gt; SMS (Text Message) Notifications &amp;lt;/li&amp;gt; &amp;lt;li&amp;gt; Two-Factor Authentication &amp;lt;/li&amp;gt; &amp;lt;li&amp;gt; Based in USA - Atlanta &amp;lt;/li&amp;gt; &amp;lt;/ul&amp;gt;   &lt;br /&gt;
|-&lt;br /&gt;
|  [[Mercado Bitcoin]] || Market || BTC&amp;lt;br/&amp;gt;BRL (Bank transfer)&amp;lt;br /&amp;gt;BRL (Bank transfer - MoIP)&amp;lt;br /&amp;gt;Liberty Reserve USD || BTC&amp;lt;br/&amp;gt;BRL (Bank transfer - MoIP) || {{Table Value Yes}} || Language: Portugese&lt;br /&gt;
|-&lt;br /&gt;
|  [[Bitcoin-Central]] || Market || BTC&amp;lt;br /&amp;gt;CAD (Interac)&amp;lt;br /&amp;gt;CAD (Bank wire)&amp;lt;br /&amp;gt;CAD (Cash deposit)&amp;lt;br /&amp;gt;EUR (SEPA)&amp;lt;br /&amp;gt;INR (Bank wire)&amp;lt;br /&amp;gt;Liberty Reserve USD&amp;lt;br /&amp;gt;Liberty Reserve EUR&amp;lt;br /&amp;gt;PGAU [[Pecunix]] Gold || BTC&amp;lt;br /&amp;gt;CAD (Interac)&amp;lt;br /&amp;gt;CAD (Bank wire)&amp;lt;br /&amp;gt;EUR (SEPA)&amp;lt;br /&amp;gt;INR (Bank wire)&amp;lt;br /&amp;gt;Liberty Reserve USD&amp;lt;br /&amp;gt;Liberty Reserve EUR&amp;lt;br /&amp;gt;[[Pecunix]] Gold || {{Table Value Yes}} || [https://github.com/davout/bitcoin-central Open-source], community reviewed platform&amp;lt;br /&amp;gt;Available in French and English languages&lt;br /&gt;
|-&lt;br /&gt;
|  [[HelloBitcoin]] || Market || BTC&amp;lt;br/&amp;gt;USD (Dwolla)&amp;lt;br /&amp;gt;USD (Bank wire)&amp;lt;br /&amp;gt;USD (Check) || BTC&amp;lt;br/&amp;gt;USD (Check)&amp;lt;br /&amp;gt;USD (Bank wire)&amp;lt;br /&amp;gt;USD (ACH) || {{Table Value Yes}} || Offers margin trading and shorting.&lt;br /&gt;
|-&lt;br /&gt;
|  [[Brasil Bitcoin Market]] || Market || BTC&amp;lt;br/&amp;gt;BRL (Bank transfer - MoIP) || BTC&amp;lt;br/&amp;gt;BRL (Bank transfer - MoIP) || {{Table Value Yes}} || Language: Portugese&lt;br /&gt;
|-&lt;br /&gt;
|  [[Australian Bitcoin Exchange]] || Market || BTC&amp;lt;br /&amp;gt;AUD (Electronic funds deposit)&amp;lt;br /&amp;gt;AUD (Mtgox Redeemable Voucher) || BTC&amp;lt;br /&amp;gt;AUD (Electronic funds transfer) || {{Table Value Yes}} ||&lt;br /&gt;
|-&lt;br /&gt;
|  [[FreshBTC]] || Market || BTC&amp;lt;br /&amp;gt;PLN (Bank wire) || BTC&amp;lt;br /&amp;gt;PLN (Bank wire) || {{Table Value Yes}} ||&lt;br /&gt;
|-&lt;br /&gt;
|  [[BitStamp]] || Market || BTC&amp;lt;br /&amp;gt;EUR (SEPA transfer) || BTC&amp;lt;br /&amp;gt;EUR (SEPA transfer) || {{Table Value Yes}} || EUR deposits converted to/from USD for trading&lt;br /&gt;
|-&lt;br /&gt;
|  [[Aqoin]] || Market || BTC&amp;lt;br /&amp;gt;EUR (SEPA transfer)&amp;lt;br /&amp;gt;EUR (Domestic bank wire/Spain)&amp;lt;br /&amp;gt;EUR (International bank wire) || BTC&amp;lt;br /&amp;gt;EUR (SEPA transfer)&amp;lt;br /&amp;gt;EUR (Domestic bank wire/Spain)&amp;lt;br /&amp;gt;PayPal || {{Table Value Yes}} || AQOIN ANNOUNCED NOVEMBER 16 THEY ARE CLOSING THEIR MARKET.&amp;lt;br /&amp;gt;Languages: English, Spanish&lt;br /&gt;
|-&lt;br /&gt;
|  [[Rock Currency Exchange]] || Market || BTC&amp;lt;br/&amp;gt;EUR (SEPA transfer)&amp;lt;br /&amp;gt;SLL (Second Life)&amp;lt;br /&amp;gt;USD (Dwolla) || BTC&amp;lt;br/&amp;gt;EUR (SEPA transfer)&amp;lt;br /&amp;gt;SLL (Second Life)&amp;lt;br /&amp;gt;USD (Dwolla)  || {{Table Value Yes}} || &lt;br /&gt;
|-&lt;br /&gt;
|  [[WM-Center]] || Exchanger || BTC&amp;lt;br/&amp;gt;USD (International bank wire, Western Unon, Moneygram, Xoom etc, cash)&amp;lt;br /&amp;gt;EUR (IBAN bank wire)&amp;lt;br /&amp;gt;RUB (bank wire, WU, Anelik and etc, cash)&amp;lt;br /&amp;gt;AUD (Bank wire)&amp;lt;br /&amp;gt;Liberty Reserve USD/EUR, Perfect Money USD/EUR, Pecunix, Paxum, c-gold, Hoopay, GDP || BTC&amp;lt;br /&amp;gt;USD (International bank wire, Western Unon, Moneygram, Xoom etc, cash)&amp;lt;br /&amp;gt;EUR (IBAN bank wire)&amp;lt;br /&amp;gt;RUB (bank wire, WU, Anelik and etc, cash)&amp;lt;br /&amp;gt;AUD (Bank wire)&amp;lt;br /&amp;gt;Liberty Reserve USD/EUR, Perfect Money USD/EUR, Pecunix, Paxum, c-gold, Hoopay, GDP&amp;lt;br /&amp;gt; PayPal USD/EUR, Moneybookers, Neteller || {{Table Value No}} || 24/7/365 support in english, spanish and russian!&lt;br /&gt;
|-&lt;br /&gt;
|  [[bitNZ]] || Market || BTC&amp;lt;br/&amp;gt;NZD (Domestic bank transfer) || BTC&amp;lt;br/&amp;gt;NZD (Domestic bank transfer) || {{Table Value Yes}} || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Fixed Rate Exchanges &amp;amp; Others==&lt;br /&gt;
&lt;br /&gt;
For smaller amounts, the options are limited due to bank transfer fees, conversion fees and transaction size restrictions. Options include:&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| Service || Type || Payment Method || Notes&lt;br /&gt;
|-&lt;br /&gt;
| [[Bitcoin Market]] || Market || USD (Liberty Reserve)&amp;lt;br /&amp;gt;USD (MoneyBookers)&amp;lt;br /&amp;gt;GAU (Pecunix) || Varies (person to person)&lt;br /&gt;
|-&lt;br /&gt;
| [[bitcoins.aunz.ws]] || Fixed Rate || AUD || cash deposit at NAB &lt;br /&gt;
|-&lt;br /&gt;
| [[BitMarket.eu]] || Market || EUR (Euro)&amp;lt;br /&amp;gt;GBP (British Sterling Pound)&amp;lt;br /&amp;gt;USD (U.S. Dollar)&amp;lt;br&amp;gt;PLN (Polish złoty)&amp;lt;br /&amp;gt;AUD (Australian Dollar)&amp;lt;br /&amp;gt;CAD (Canadian Dollar)&amp;lt;br /&amp;gt;ZAR (South African Rand)&amp;lt;br /&amp;gt;ILS (Israeli Shekel)&amp;lt;br /&amp;gt;CHF (Swiss Franc)&amp;lt;br&amp;gt;RUB (Russian Ruble) || Varies (person to person)&lt;br /&gt;
|-&lt;br /&gt;
| [[Bitcoiny.cz]] || Market || CZK || Varies (person to person)&lt;br /&gt;
|-&lt;br /&gt;
| [[Bit]] / BTC China || Market || n/a || n/a&lt;br /&gt;
|-&lt;br /&gt;
| [[Bitfunnel]] || Credit Card payment exchange/brokering services || Varies (person to person)&lt;br /&gt;
|-&lt;br /&gt;
| [[bitcoin-otc|#bitcoin-otc]] || [http://bitcoin-otc.com/vieworderbook.php Order Book] || Varies (person to person) || IRC trading marketplace will usually have people willing to deal for small and larger amounts using various payment methods, including [[PayPal]], [[Dwolla]], [[Linden Dollars]], etc.&lt;br /&gt;
|-&lt;br /&gt;
| [[Lilion Transfer]] || Fixed Rate || USD (Liberty Reserve)&amp;lt;br /&amp;gt;[[Pecunix]] || &lt;br /&gt;
|-&lt;br /&gt;
| [[Nanaimo Gold]] || Fixed Rate || USD (Liberty Reserve)&amp;lt;br /&amp;gt;Western Union money transfer&amp;lt;br /&amp;gt;Moneygram money transfer&amp;lt;br /&amp;gt;Cash in the mail || LR &amp;lt;--&amp;gt; Bitcoin exchange is automated&amp;lt;br /&amp;gt;For cash in the mail send USD, EUR, CAD, or GBP.  Canada mailing address.&lt;br /&gt;
|-&lt;br /&gt;
| [[Bitcoin Argentina]] || Fixed Rate || Cash: ARS, BRL, USD &amp;lt;br /&amp;gt; Bank transfer: ARS || No exchange fees!&lt;br /&gt;
|-&lt;br /&gt;
| [[Bitcoin.com.es]] || Fixed Rate || EUR (bank deposit) || Bank transfer or cash deposits at OpenBank in Spain.&lt;br /&gt;
|-&lt;br /&gt;
| [[Bahtcoin]] || Fixed Rate || Cash, Webmoney&amp;lt;br /&amp;gt;Liberty Reserve USD || Will cash out to Thai mobile and gaming prepaid cards as well.&lt;br /&gt;
|-&lt;br /&gt;
| [[Bitcoin Brasil]] || Fixed Rate || BRL (Brazilian Real)&amp;lt;br /&amp;gt;USD || Cash exchange&lt;br /&gt;
|-&lt;br /&gt;
| [[BitPiggy]] || Fixed Rate || AUD (Australian Dollar)|| Payment via bank transfer.&lt;br /&gt;
|-&lt;br /&gt;
| [[GetBitcoin]] || Fixed Rate || USD (Dwolla)&amp;lt;BR /&amp;gt;USD (Bank wire)&amp;lt;BR /&amp;gt;USD (Cash in the mail)&amp;lt;BR /&amp;gt;USD (Money Order)&amp;lt;BR /&amp;gt;USD (Cashier&#039;s Check/Certified Check)&amp;lt;BR /&amp;gt;USD (Western Union)&amp;lt;BR /&amp;gt;USD (Traveler&#039;s Check)&amp;lt;BR /&amp;gt;USD (Prepaid Debit Card)&amp;lt;BR /&amp;gt; || For cash in mail, send USD.  U.S. mailing address.&lt;br /&gt;
|-&lt;br /&gt;
| [[Bitcoin 4 Cash]] || Fixed Rate || Cash in the mail || Send USD or CAD. Canada mailing address.&lt;br /&gt;
|-&lt;br /&gt;
| [[Bitcoin2Cash]] || Fixed Rate || Cash in the mail || Send USD. U.S. mailing address.&lt;br /&gt;
|-&lt;br /&gt;
| [[bitcoin.local]] || Directory || Varies (person to person) ||&lt;br /&gt;
|-&lt;br /&gt;
| [[bcchanger.com]] || Directory || Enables person to person purchases and sales via PayPal, MoneyBookers and other e-currency platforms ||&lt;br /&gt;
|-&lt;br /&gt;
| [[YouTipIt]] || Fixed Rate || USD&amp;lt;br /&amp;gt;EUR&amp;lt;br /&amp;gt;GBP || Purchase bitcoins to add to your balance with YouTipIt using credit card through ClickAndBuy.&lt;br /&gt;
|-&lt;br /&gt;
| [[Ubitex]] || In person exchange || Varies (person to person) ||&lt;br /&gt;
|-&lt;br /&gt;
| [[Bitcoil]] || Fixed Rate || ILS (bank transfer) ||&lt;br /&gt;
|- &lt;br /&gt;
|[[Accesscoin]] || Fixed Rate || USD (Google Checkout) || Requires Facebook account for second factor authentication ||&lt;br /&gt;
|-&lt;br /&gt;
|[[btcnow]] || Fixed Rate || USD (Google Checkout) ||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Other Financial Services==&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| Service || Type || Payment || Settled || Notes&lt;br /&gt;
|-&lt;br /&gt;
| [http://polimedia.us/bitcoin/options.php Derivatives] || Buy / Sell / Exercise CALLs / PUTs, American style.&amp;lt;br /&amp;gt;52 strikes offered (by .5), current month + 2.&amp;lt;br /&amp;gt; No shorting available yet.|| BTC || BTC || Transactions encoded via amt.&amp;lt;br /&amp;gt; Must use non-rounding client&amp;lt;br /&amp;gt;(0.3.24 or later)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Physical Bitcoins==&lt;br /&gt;
&lt;br /&gt;
Physical Bitcoins are bearer tokens that have an embedded redeemable digital bitcoin value if torn open.  While they are somewhat expensive if bought purely for the digital bitcoins, they are relatively easy to get, because they can be purchased with PayPal or credit card - payment methods not typically not accepted for pure digital bitcoin purchases.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| Service || Type || Payment || Notes&lt;br /&gt;
|-&lt;br /&gt;
| [http://www.memorydealers.com Memory Dealers] || Casascius Physical Bitcoins || USD (PayPal/Credit Card) || &lt;br /&gt;
|-&lt;br /&gt;
| [https://www.casascius.com Casascius.com] || Casascius Physical Bitcoins || BTC || &lt;br /&gt;
|-&lt;br /&gt;
| [http://www.bitbills.com Bitbills] || Bitbills cards || BTC || Not taking orders as of Nov 2011.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
&lt;br /&gt;
* [[:Category:Digital_currencies|Digital Currencies]]&lt;br /&gt;
* [[Selling bitcoins]]&lt;br /&gt;
* [[Secure Trading]]&lt;br /&gt;
* [[:Category:Local|Local]] exchanges&lt;br /&gt;
&lt;br /&gt;
[[Category:Exchanges]]&lt;br /&gt;
[[Category:Introduction]]&lt;br /&gt;
[[zh-cn:购买bitcoins]]&lt;/div&gt;</summary>
		<author><name>Pigeons</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Buying_bitcoins&amp;diff=19561</id>
		<title>Buying bitcoins</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Buying_bitcoins&amp;diff=19561"/>
		<updated>2011-11-17T16:25:17Z</updated>

		<summary type="html">&lt;p&gt;Pigeons: added new USD &amp;amp; EUR options for Rock&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;One issue currently facing a newcomer to bitcoin is, how do I get some? While there is the [[bitcoin faucet]] that can get you started with a small fraction of a coin, when getting larger amounts the user faces an abundance of choice. This page will cut through the clutter, and help direct you to the right exchanger for your needs.&lt;br /&gt;
&lt;br /&gt;
==Major Exchanges==&lt;br /&gt;
&lt;br /&gt;
The least expensive methods for buying bitcoins involve transferring funds using a bank wire, ACH, bank transfer (ACH, EUR / SEPA).&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| Exchange || Type || Adding Funds || Withdrawing Funds || [[eWallet]] || Notes&lt;br /&gt;
|-&lt;br /&gt;
|  [[MtGox]] || Market || BTC&amp;lt;br/&amp;gt;USD ([[Dwolla]])&amp;lt;br /&amp;gt;USD (International bank wire)&amp;lt;br /&amp;gt;USD (Wire to [[AurumXChange Company|AurumXChange]])&amp;lt;br /&amp;gt;AUD (Bank wire)&amp;lt;br /&amp;gt;GBP (Bank wire)&amp;lt;br /&amp;gt;Liberty Reserve USD || BTC&amp;lt;br /&amp;gt;USD ([[Dwolla]])&amp;lt;br /&amp;gt;USD (Wire via [[AurumXChange Company|AurumXChange]])&amp;lt;br /&amp;gt;USD (Check via [[Paxum]])&amp;lt;br /&amp;gt;USD (ATM via [[Paxum]])&amp;lt;br /&amp;gt;USD (wire via [[Paxum]])&amp;lt;br /&amp;gt;AUD (Bank wire)&amp;lt;br /&amp;gt;Liberty Reserve USD&amp;lt;br /&amp;gt;Liberty Reserve USD (via AurumXChange) || {{Table Value Yes}} || Oldest running exchange. Higest daily volume. Respecting AML laws, Restrictions and limits on withdrawals.&lt;br /&gt;
|-&lt;br /&gt;
|  [[TradeHill]] || Market || BTC&amp;lt;br/&amp;gt;USD (Domestic bank wire)&amp;lt;br&amp;gt;USD (International bank wire)&amp;lt;br/&amp;gt;USD (Check via [[Paxum]])&amp;lt;br /&amp;gt;USD (wire via [[Paxum]])&amp;lt;br /&amp;gt;EUR (via [[Paxum]]&amp;lt;br /&amp;gt;CAD (via [[Paxum]]&amp;lt;br /&amp;gt;CLP (Bank transfer)&amp;lt;br /&amp;gt;PEN (Bank transfer)&amp;lt;br /&amp;gt;INR (Bank transfer)&amp;lt;br /&amp;gt;AUD (Bank transfer)&amp;lt;br /&amp;gt;Liberty Reserve USD || BTC&amp;lt;br/&amp;gt;USD (Domestic bank wire)&amp;lt;br/&amp;gt;USD (International bank wire)&amp;lt;br /&amp;gt;USD (Direct deposit / ACH)&amp;lt;br /&amp;gt;USD (Check via [[Paxum]])&amp;lt;br /&amp;gt;USD (ATM via [[Paxum]])&amp;lt;br /&amp;gt;USD (Prepaid card via [[Paxum]])&amp;lt;br /&amp;gt;EUR (via [[Paxum]]&amp;lt;br /&amp;gt;CAD (via [[Paxum]])&amp;lt;br /&amp;gt;CLP (Bank transfer)&amp;lt;br /&amp;gt;INR (Bank transfer)&amp;lt;br /&amp;gt;AUD (Bank transfer)&amp;lt;br /&amp;gt;Liberty Reserve USD || {{Table Value Yes}} || &lt;br /&gt;
|-&lt;br /&gt;
|  [[CryptoXchange]]  || Market || BTC&amp;lt;br/&amp;gt;NMC&amp;lt;br/&amp;gt;LTC&amp;lt;br/&amp;gt;USD&amp;lt;br/&amp;gt;AUD (Bank Transfer)&amp;lt;br/&amp;gt;GBP || BTC&amp;lt;br/&amp;gt;NMC&amp;lt;br/&amp;gt;LTC&amp;lt;br/&amp;gt;USD&amp;lt;br/&amp;gt;AUD (Bank Transfer)&amp;lt;br/&amp;gt;GBP  || {{Table Value Yes}} || &amp;lt;ul&amp;gt; &amp;lt;li&amp;gt; Buy Gold,Silver,Palladium and Casascius physical bitcoins plus other items in the store.&amp;lt;/li&amp;gt; &amp;lt;li&amp;gt; Affiliate program.&amp;lt;/li&amp;gt; &amp;lt;li&amp;gt; Mining Pool integration program. World Wide Crypto Currency Exchange supporting dozens of languages and currencies&amp;lt;/li&amp;gt; &amp;lt;li&amp;gt; Bitcoin, Namecoin and Litecoin &amp;lt;/li&amp;gt; &amp;lt;li&amp;gt;Multiple Authentication Levels&amp;lt;/li&amp;gt; &amp;lt;li&amp;gt; API &amp;lt;/li&amp;gt; &amp;lt;li&amp;gt; Free Yubikey&#039;s to High Volume Traders &amp;lt;/li&amp;gt; &amp;lt;li&amp;gt; An Australian Owned and Operated Registered Company.&amp;lt;/li&amp;gt; &amp;lt;li&amp;gt;&lt;br /&gt;
Inquiries: contact@cryptoxchanger.com or Phone: +61280050602 &amp;lt;/li&amp;gt; &amp;lt;/ul&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|  [[BTC-E]] || Market || BTC&amp;lt;br/&amp;gt;USD ([[Liberty Reserve]])&amp;lt;br /&amp;gt;USD (Interkassa) || BTC&amp;lt;br/&amp;gt;USD (Webmoney) || {{Table Value Yes}} || Language: Russian.  Interkassa can be funded from Webmoney and many other methods.&lt;br /&gt;
|-&lt;br /&gt;
|  [[VirWoX]] || Market || BTC&amp;lt;br/&amp;gt;SLL (Second Life)&amp;lt;br/&amp;gt;ACD (Avination)&amp;lt;br/&amp;gt;OMC (OpenSim)&amp;lt;br/&amp;gt;USD,EUR,GBP,CHF ([[PayPal]])&amp;lt;br/&amp;gt;USD,EUR,GBP (Credit &amp;amp; Debit cards via [[Moneybookers]])&amp;lt;br/&amp;gt;USD,EUR,GBP ([[NETELLER]])&amp;lt;br/&amp;gt;EUR (DIRECTebanking / Sofortüberweisung)&amp;lt;br/&amp;gt;USD,EUR,GBP,CHF ([[paysafecard]])&amp;lt;br/&amp;gt;EUR (SEPA bank transfer) || BTC&amp;lt;br/&amp;gt;SLL (Second Life)&amp;lt;br/&amp;gt;ACD (Avination)&amp;lt;br/&amp;gt;OMC (OpenSim)&amp;lt;br/&amp;gt;USD,EUR,GBP,CHF ([[PayPal]])&amp;lt;br /&amp;gt;USD,EUR,GBP ([[Moneybookers]])&amp;lt;br/&amp;gt;USD,EUR,GBP ([[NETELLER]])&amp;lt;br/&amp;gt;EUR (SEPA bank transfer) || {{Table Value Yes}} || Trading through Second Life Linden Dollars.&amp;lt;br/&amp;gt;Variable limits on PayPal and Credit Card deposits. &lt;br /&gt;
|-&lt;br /&gt;
|  [[Britcoin]]&amp;lt;br/&amp;gt;&amp;amp;amp;&amp;lt;br/&amp;gt;[[Intersango]] || Market || BTC&amp;lt;br /&amp;gt;GBP (bank deposit)&amp;lt;br/&amp;gt;USD ([[Dwolla]])&amp;lt;br /&amp;gt;USD (Domestic bank wire)&amp;lt;br /&amp;gt;USD (ACH)&amp;lt;br /&amp;gt;PLN (Bank Wire) || BTC&amp;lt;br /&amp;gt;GBP (bank transfer)&amp;lt;br/&amp;gt;USD ([[Dwolla]])&amp;lt;br /&amp;gt;PLN (Bank Wire) || {{Table Value Yes}} || Operated by the [https://bitcoinconsultancy.com/ BitcoinConsultancy] &amp;lt;br/&amp;gt; [https://intersango.com Intersango] is a completely custom trading platform built from the ground up with security, scalability and extensibility in mind. [https://bitcointalk.org/index.php?topic=43745.0 More Information]&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;Boasts an [https://bitcoinconsultancy.com/wiki/index.php/Intersango/API ever expanding API]&lt;br /&gt;
|-&lt;br /&gt;
|  [[BitChange.pl]] || Market || BTC&amp;lt;br /&amp;gt;PLN (Bank wire) || BTC&amp;lt;br /&amp;gt;PLN (Bank wire) || {{Table Value Yes}} ||&lt;br /&gt;
|-&lt;br /&gt;
|  [[VirtEx]] || Market || BTC&amp;lt;br/&amp;gt;CAD (online bill pay)&amp;lt;br /&amp;gt;CAD (cash at TDBank) || BTC&amp;lt;br/&amp;gt;CAD (direct deposit) || {{Table Value Yes}} ||&lt;br /&gt;
|-&lt;br /&gt;
|  [[Camp BX]] (CBX) || Market || BTC &amp;lt;br/&amp;gt;USD (Check / ACH)&amp;lt;br /&amp;gt;USPS Postal Money Order &amp;lt;br/&amp;gt; USD ([[Dwolla]])&amp;lt;br/&amp;gt; USD (Domestic bank wire)&amp;lt;br/&amp;gt;USD (International bank wire) || BTC &amp;lt;br /&amp;gt;USD (Check / ACH)&amp;lt;br /&amp;gt;USPS Postal Money Order &amp;lt;br/&amp;gt; USD ([[Dwolla]])&amp;lt;br/&amp;gt; USD (Domestic bank wire)&amp;lt;br/&amp;gt;USD (International bank wire) || {{Table Value Yes}} || &amp;lt;ul&amp;gt; &amp;lt;li&amp;gt; Security certification from McAfee&amp;lt;/li&amp;gt;&amp;lt;li&amp;gt; Advanced trading options with AON/FOK/Market&amp;lt;/li&amp;gt; &amp;lt;li&amp;gt;STOPLOSS and Short-Selling in Pipeline&amp;lt;/li&amp;gt;&amp;lt;li&amp;gt; Trading API available&amp;lt;/li&amp;gt;&amp;lt;li&amp;gt; Wallet API available &amp;lt;/li&amp;gt;&amp;lt;li&amp;gt; CBX Instant Bitcoin Transfers Feature &amp;lt;/li&amp;gt;&amp;lt;li&amp;gt; Stoploss / Custom Order Expiry Date/Time &amp;lt;/li&amp;gt;&amp;lt;li&amp;gt; SMS (Text Message) Notifications &amp;lt;/li&amp;gt; &amp;lt;li&amp;gt; Two-Factor Authentication &amp;lt;/li&amp;gt; &amp;lt;li&amp;gt; Based in USA - Atlanta &amp;lt;/li&amp;gt; &amp;lt;/ul&amp;gt;   &lt;br /&gt;
|-&lt;br /&gt;
|  [[Mercado Bitcoin]] || Market || BTC&amp;lt;br/&amp;gt;BRL (Bank transfer)&amp;lt;br /&amp;gt;BRL (Bank transfer - MoIP)&amp;lt;br /&amp;gt;Liberty Reserve USD || BTC&amp;lt;br/&amp;gt;BRL (Bank transfer - MoIP) || {{Table Value Yes}} || Language: Portugese&lt;br /&gt;
|-&lt;br /&gt;
|  [[Bitcoin-Central]] || Market || BTC&amp;lt;br /&amp;gt;CAD (Interac)&amp;lt;br /&amp;gt;CAD (Bank wire)&amp;lt;br /&amp;gt;CAD (Cash deposit)&amp;lt;br /&amp;gt;EUR (SEPA)&amp;lt;br /&amp;gt;INR (Bank wire)&amp;lt;br /&amp;gt;Liberty Reserve USD&amp;lt;br /&amp;gt;Liberty Reserve EUR&amp;lt;br /&amp;gt;PGAU [[Pecunix]] Gold || BTC&amp;lt;br /&amp;gt;CAD (Interac)&amp;lt;br /&amp;gt;CAD (Bank wire)&amp;lt;br /&amp;gt;EUR (SEPA)&amp;lt;br /&amp;gt;INR (Bank wire)&amp;lt;br /&amp;gt;Liberty Reserve USD&amp;lt;br /&amp;gt;Liberty Reserve EUR&amp;lt;br /&amp;gt;[[Pecunix]] Gold || {{Table Value Yes}} || [https://github.com/davout/bitcoin-central Open-source], community reviewed platform&amp;lt;br /&amp;gt;Available in French and English languages&lt;br /&gt;
|-&lt;br /&gt;
|  [[HelloBitcoin]] || Market || BTC&amp;lt;br/&amp;gt;USD (Dwolla)&amp;lt;br /&amp;gt;USD (Bank wire)&amp;lt;br /&amp;gt;USD (Check) || BTC&amp;lt;br/&amp;gt;USD (Check)&amp;lt;br /&amp;gt;USD (Bank wire)&amp;lt;br /&amp;gt;USD (ACH) || {{Table Value Yes}} || Offers margin trading and shorting.&lt;br /&gt;
|-&lt;br /&gt;
|  [[Brasil Bitcoin Market]] || Market || BTC&amp;lt;br/&amp;gt;BRL (Bank transfer - MoIP) || BTC&amp;lt;br/&amp;gt;BRL (Bank transfer - MoIP) || {{Table Value Yes}} || Language: Portugese&lt;br /&gt;
|-&lt;br /&gt;
|  [[Australian Bitcoin Exchange]] || Market || BTC&amp;lt;br /&amp;gt;AUD (Electronic funds deposit)&amp;lt;br /&amp;gt;AUD (Mtgox Redeemable Voucher) || BTC&amp;lt;br /&amp;gt;AUD (Electronic funds transfer) || {{Table Value Yes}} ||&lt;br /&gt;
|-&lt;br /&gt;
|  [[FreshBTC]] || Market || BTC&amp;lt;br /&amp;gt;PLN (Bank wire) || BTC&amp;lt;br /&amp;gt;PLN (Bank wire) || {{Table Value Yes}} ||&lt;br /&gt;
|-&lt;br /&gt;
|  [[BitStamp]] || Market || BTC&amp;lt;br /&amp;gt;EUR (SEPA transfer) || BTC&amp;lt;br /&amp;gt;EUR (SEPA transfer) || {{Table Value Yes}} || EUR deposits converted to/from USD for trading&lt;br /&gt;
|-&lt;br /&gt;
|  [[Aqoin]] || Market || BTC&amp;lt;br /&amp;gt;EUR (SEPA transfer)&amp;lt;br /&amp;gt;EUR (Domestic bank wire/Spain)&amp;lt;br /&amp;gt;EUR (International bank wire) || BTC&amp;lt;br /&amp;gt;EUR (SEPA transfer)&amp;lt;br /&amp;gt;EUR (Domestic bank wire/Spain)&amp;lt;br /&amp;gt;PayPal || {{Table Value Yes}} || Languages: English, Spanish&lt;br /&gt;
|-&lt;br /&gt;
|  [[Rock Currency Exchange]] || Market || BTC&amp;lt;br/&amp;gt;EUR (SEPA transfer)&amp;lt;br /&amp;gt;SLL (Second Life)&amp;lt;br /&amp;gt;USD (Dwolla) || BTC&amp;lt;br/&amp;gt;EUR (SEPA transfer)&amp;lt;br /&amp;gt;SLL (Second Life)&amp;lt;br /&amp;gt;USD (Dwolla)  || {{Table Value Yes}} || &lt;br /&gt;
|-&lt;br /&gt;
|  [[WM-Center]] || Exchanger || BTC&amp;lt;br/&amp;gt;USD (International bank wire, Western Unon, Moneygram, Xoom etc, cash)&amp;lt;br /&amp;gt;EUR (IBAN bank wire)&amp;lt;br /&amp;gt;RUB (bank wire, WU, Anelik and etc, cash)&amp;lt;br /&amp;gt;AUD (Bank wire)&amp;lt;br /&amp;gt;Liberty Reserve USD/EUR, Perfect Money USD/EUR, Pecunix, Paxum, c-gold, Hoopay, GDP || BTC&amp;lt;br /&amp;gt;USD (International bank wire, Western Unon, Moneygram, Xoom etc, cash)&amp;lt;br /&amp;gt;EUR (IBAN bank wire)&amp;lt;br /&amp;gt;RUB (bank wire, WU, Anelik and etc, cash)&amp;lt;br /&amp;gt;AUD (Bank wire)&amp;lt;br /&amp;gt;Liberty Reserve USD/EUR, Perfect Money USD/EUR, Pecunix, Paxum, c-gold, Hoopay, GDP&amp;lt;br /&amp;gt; PayPal USD/EUR, Moneybookers, Neteller || {{Table Value No}} || 24/7/365 support in english, spanish and russian!&lt;br /&gt;
|-&lt;br /&gt;
|  [[bitNZ]] || Market || BTC&amp;lt;br/&amp;gt;NZD (Domestic bank transfer) || BTC&amp;lt;br/&amp;gt;NZD (Domestic bank transfer) || {{Table Value Yes}} || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Fixed Rate Exchanges &amp;amp; Others==&lt;br /&gt;
&lt;br /&gt;
For smaller amounts, the options are limited due to bank transfer fees, conversion fees and transaction size restrictions. Options include:&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| Service || Type || Payment Method || Notes&lt;br /&gt;
|-&lt;br /&gt;
| [[Bitcoin Market]] || Market || USD (Liberty Reserve)&amp;lt;br /&amp;gt;USD (MoneyBookers)&amp;lt;br /&amp;gt;GAU (Pecunix) || Varies (person to person)&lt;br /&gt;
|-&lt;br /&gt;
| [[bitcoins.aunz.ws]] || Fixed Rate || AUD || cash deposit at NAB &lt;br /&gt;
|-&lt;br /&gt;
| [[BitMarket.eu]] || Market || EUR (Euro)&amp;lt;br /&amp;gt;GBP (British Sterling Pound)&amp;lt;br /&amp;gt;USD (U.S. Dollar)&amp;lt;br&amp;gt;PLN (Polish złoty)&amp;lt;br /&amp;gt;AUD (Australian Dollar)&amp;lt;br /&amp;gt;CAD (Canadian Dollar)&amp;lt;br /&amp;gt;ZAR (South African Rand)&amp;lt;br /&amp;gt;ILS (Israeli Shekel)&amp;lt;br /&amp;gt;CHF (Swiss Franc)&amp;lt;br&amp;gt;RUB (Russian Ruble) || Varies (person to person)&lt;br /&gt;
|-&lt;br /&gt;
| [[Bitcoiny.cz]] || Market || CZK || Varies (person to person)&lt;br /&gt;
|-&lt;br /&gt;
| [[Bit]] / BTC China || Market || n/a || n/a&lt;br /&gt;
|-&lt;br /&gt;
| [[Bitfunnel]] || Credit Card payment exchange/brokering services || Varies (person to person)&lt;br /&gt;
|-&lt;br /&gt;
| [[bitcoin-otc|#bitcoin-otc]] || [http://bitcoin-otc.com/vieworderbook.php Order Book] || Varies (person to person) || IRC trading marketplace will usually have people willing to deal for small and larger amounts using various payment methods, including [[PayPal]], [[Dwolla]], [[Linden Dollars]], etc.&lt;br /&gt;
|-&lt;br /&gt;
| [[Lilion Transfer]] || Fixed Rate || USD (Liberty Reserve)&amp;lt;br /&amp;gt;[[Pecunix]] || &lt;br /&gt;
|-&lt;br /&gt;
| [[Nanaimo Gold]] || Fixed Rate || USD (Liberty Reserve)&amp;lt;br /&amp;gt;Western Union money transfer&amp;lt;br /&amp;gt;Moneygram money transfer&amp;lt;br /&amp;gt;Cash in the mail || LR &amp;lt;--&amp;gt; Bitcoin exchange is automated&amp;lt;br /&amp;gt;For cash in the mail send USD, EUR, CAD, or GBP.  Canada mailing address.&lt;br /&gt;
|-&lt;br /&gt;
| [[Bitcoin Argentina]] || Fixed Rate || Cash: ARS, BRL, USD &amp;lt;br /&amp;gt; Bank transfer: ARS || No exchange fees!&lt;br /&gt;
|-&lt;br /&gt;
| [[Bitcoin.com.es]] || Fixed Rate || EUR (bank deposit) || Bank transfer or cash deposits at OpenBank in Spain.&lt;br /&gt;
|-&lt;br /&gt;
| [[Bahtcoin]] || Fixed Rate || Cash, Webmoney&amp;lt;br /&amp;gt;Liberty Reserve USD || Will cash out to Thai mobile and gaming prepaid cards as well.&lt;br /&gt;
|-&lt;br /&gt;
| [[Bitcoin Brasil]] || Fixed Rate || BRL (Brazilian Real)&amp;lt;br /&amp;gt;USD || Cash exchange&lt;br /&gt;
|-&lt;br /&gt;
| [[BitPiggy]] || Fixed Rate || AUD (Australian Dollar)|| Payment via bank transfer.&lt;br /&gt;
|-&lt;br /&gt;
| [[GetBitcoin]] || Fixed Rate || USD (Dwolla)&amp;lt;BR /&amp;gt;USD (Bank wire)&amp;lt;BR /&amp;gt;USD (Cash in the mail)&amp;lt;BR /&amp;gt;USD (Money Order)&amp;lt;BR /&amp;gt;USD (Cashier&#039;s Check/Certified Check)&amp;lt;BR /&amp;gt;USD (Western Union)&amp;lt;BR /&amp;gt;USD (Traveler&#039;s Check)&amp;lt;BR /&amp;gt;USD (Prepaid Debit Card)&amp;lt;BR /&amp;gt; || For cash in mail, send USD.  U.S. mailing address.&lt;br /&gt;
|-&lt;br /&gt;
| [[Bitcoin 4 Cash]] || Fixed Rate || Cash in the mail || Send USD or CAD. Canada mailing address.&lt;br /&gt;
|-&lt;br /&gt;
| [[Bitcoin2Cash]] || Fixed Rate || Cash in the mail || Send USD. U.S. mailing address.&lt;br /&gt;
|-&lt;br /&gt;
| [[bitcoin.local]] || Directory || Varies (person to person) ||&lt;br /&gt;
|-&lt;br /&gt;
| [[bcchanger.com]] || Directory || Enables person to person purchases and sales via PayPal, MoneyBookers and other e-currency platforms ||&lt;br /&gt;
|-&lt;br /&gt;
| [[YouTipIt]] || Fixed Rate || USD&amp;lt;br /&amp;gt;EUR&amp;lt;br /&amp;gt;GBP || Purchase bitcoins to add to your balance with YouTipIt using credit card through ClickAndBuy.&lt;br /&gt;
|-&lt;br /&gt;
| [[Ubitex]] || In person exchange || Varies (person to person) ||&lt;br /&gt;
|-&lt;br /&gt;
| [[Bitcoil]] || Fixed Rate || ILS (bank transfer) ||&lt;br /&gt;
|- &lt;br /&gt;
|[[Accesscoin]] || Fixed Rate || USD (Google Checkout) || Requires Facebook account for second factor authentication ||&lt;br /&gt;
|-&lt;br /&gt;
|[[btcnow]] || Fixed Rate || USD (Google Checkout) ||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Other Financial Services==&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| Service || Type || Payment || Settled || Notes&lt;br /&gt;
|-&lt;br /&gt;
| [http://polimedia.us/bitcoin/options.php Derivatives] || Buy / Sell / Exercise CALLs / PUTs, American style.&amp;lt;br /&amp;gt;52 strikes offered (by .5), current month + 2.&amp;lt;br /&amp;gt; No shorting available yet.|| BTC || BTC || Transactions encoded via amt.&amp;lt;br /&amp;gt; Must use non-rounding client&amp;lt;br /&amp;gt;(0.3.24 or later)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Physical Bitcoins==&lt;br /&gt;
&lt;br /&gt;
Physical Bitcoins are bearer tokens that have an embedded redeemable digital bitcoin value if torn open.  While they are somewhat expensive if bought purely for the digital bitcoins, they are relatively easy to get, because they can be purchased with PayPal or credit card - payment methods not typically not accepted for pure digital bitcoin purchases.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| Service || Type || Payment || Notes&lt;br /&gt;
|-&lt;br /&gt;
| [http://www.memorydealers.com Memory Dealers] || Casascius Physical Bitcoins || USD (PayPal/Credit Card) || &lt;br /&gt;
|-&lt;br /&gt;
| [https://www.casascius.com Casascius.com] || Casascius Physical Bitcoins || BTC || &lt;br /&gt;
|-&lt;br /&gt;
| [http://www.bitbills.com Bitbills] || Bitbills cards || BTC || Not taking orders as of Nov 2011.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
&lt;br /&gt;
* [[:Category:Digital_currencies|Digital Currencies]]&lt;br /&gt;
* [[Selling bitcoins]]&lt;br /&gt;
* [[Secure Trading]]&lt;br /&gt;
* [[:Category:Local|Local]] exchanges&lt;br /&gt;
&lt;br /&gt;
[[Category:Exchanges]]&lt;br /&gt;
[[Category:Introduction]]&lt;br /&gt;
[[zh-cn:购买bitcoins]]&lt;/div&gt;</summary>
		<author><name>Pigeons</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Nanaimo_Gold&amp;diff=19410</id>
		<title>Nanaimo Gold</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Nanaimo_Gold&amp;diff=19410"/>
		<updated>2011-11-15T02:18:04Z</updated>

		<summary type="html">&lt;p&gt;Pigeons: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;An operation by Shane Smith, an independent business operator, located in Nanaimo BC Canada.&lt;br /&gt;
&lt;br /&gt;
Bitcoins and other digital currencies may be purchased and sold using any of a number of different payment methods.  &lt;br /&gt;
&lt;br /&gt;
==History==&lt;br /&gt;
&lt;br /&gt;
On April 08, 2011 the exchange described the availability of automated trading between bitcoins and [[Liberty Reserve]]&amp;lt;ref&amp;gt;[http://www.bitcoin.org/smf/index.php?topic=5555.0 Nanaimo Gold automatic LR &amp;lt;---&amp;gt; BTC service]&amp;lt;/ref&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
==Currency type:==&lt;br /&gt;
* Bitcoin&lt;br /&gt;
* [[Liberty Reserve]]&lt;br /&gt;
* [[Pecunix]]&lt;br /&gt;
* c-gold&lt;br /&gt;
* HD-Money&lt;br /&gt;
* EuroGoldCash&lt;br /&gt;
&lt;br /&gt;
==Accept payment by:==&lt;br /&gt;
* [[Liberty Reserve]]&lt;br /&gt;
* Western Union Money Transfer&lt;br /&gt;
* Moneygram International Money Transfer&lt;br /&gt;
* Canada Post Money Order [by mail]&lt;br /&gt;
* Cash by mail or deposited at a BofA (U.S.) or RBC (Canada) bank.&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
&lt;br /&gt;
* [[Buying bitcoins]]&lt;br /&gt;
* [[Selling bitcoins]]&lt;br /&gt;
&lt;br /&gt;
==External Links==&lt;br /&gt;
* [http://www.nanaimogold.com/ Official website]&lt;br /&gt;
* [http://www.nanaimogold.com/bitcoin.php Automated Bitcoin &amp;lt;--&amp;gt; Liberty Reserve exchange]&lt;br /&gt;
* [http://www.nanaimogold.com/buy.php Buying digital currency]&lt;br /&gt;
* [http://www.nanaimogold.com/sell.php Selling digital currency]&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&amp;lt;references /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Exchanges]]&lt;/div&gt;</summary>
		<author><name>Pigeons</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Buying_bitcoins&amp;diff=19408</id>
		<title>Buying bitcoins</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Buying_bitcoins&amp;diff=19408"/>
		<updated>2011-11-15T02:06:25Z</updated>

		<summary type="html">&lt;p&gt;Pigeons: /* Major Exchanges */ took out some redundancy and marketing language&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;One issue currently facing a newcomer to bitcoin is, how do I get some? While there is the [[bitcoin faucet]] that can get you started with a small fraction of a coin, when getting larger amounts the user faces an abundance of choice. This page will cut through the clutter, and help direct you to the right exchanger for your needs.&lt;br /&gt;
&lt;br /&gt;
==Major Exchanges==&lt;br /&gt;
&lt;br /&gt;
The least expensive methods for buying bitcoins involve transferring funds using a bank wire, ACH, bank transfer (ACH, EUR / SEPA).&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| Exchange || Type || Adding Funds || Withdrawing Funds || [[eWallet]] || Notes&lt;br /&gt;
|-&lt;br /&gt;
|  [[MtGox]] || Market || BTC&amp;lt;br/&amp;gt;USD ([[Dwolla]])&amp;lt;br /&amp;gt;USD (International bank wire)&amp;lt;br /&amp;gt;USD (Wire to [[AurumXChange Company|AurumXChange]])&amp;lt;br /&amp;gt;AUD (Bank wire)&amp;lt;br /&amp;gt;GBP (Bank wire)&amp;lt;br /&amp;gt;Liberty Reserve USD || BTC&amp;lt;br /&amp;gt;USD ([[Dwolla]])&amp;lt;br /&amp;gt;USD (Wire via [[AurumXChange Company|AurumXChange]])&amp;lt;br /&amp;gt;USD (Check via [[Paxum]])&amp;lt;br /&amp;gt;USD (ATM via [[Paxum]])&amp;lt;br /&amp;gt;USD (wire via [[Paxum]])&amp;lt;br /&amp;gt;AUD (Bank wire)&amp;lt;br /&amp;gt;Liberty Reserve USD&amp;lt;br /&amp;gt;Liberty Reserve USD (via AurumXChange) || {{Table Value Yes}} || Oldest running exchange. Higest daily volume. Respecting AML laws, Restrictions and limits on withdrawals.&lt;br /&gt;
|-&lt;br /&gt;
|  [[TradeHill]] || Market || BTC&amp;lt;br/&amp;gt;USD (Domestic bank wire)&amp;lt;br&amp;gt;USD (International bank wire)&amp;lt;br/&amp;gt;USD (Check via [[Paxum]])&amp;lt;br /&amp;gt;USD (wire via [[Paxum]])&amp;lt;br /&amp;gt;EUR (via [[Paxum]]&amp;lt;br /&amp;gt;CAD (via [[Paxum]]&amp;lt;br /&amp;gt;CLP (Bank transfer)&amp;lt;br /&amp;gt;PEN (Bank transfer)&amp;lt;br /&amp;gt;INR (Bank transfer)&amp;lt;br /&amp;gt;AUD (Bank transfer)&amp;lt;br /&amp;gt;Liberty Reserve USD || BTC&amp;lt;br/&amp;gt;USD (Domestic bank wire)&amp;lt;br/&amp;gt;USD (International bank wire)&amp;lt;br /&amp;gt;USD (Direct deposit / ACH)&amp;lt;br /&amp;gt;USD (Check via [[Paxum]])&amp;lt;br /&amp;gt;USD (ATM via [[Paxum]])&amp;lt;br /&amp;gt;USD (Prepaid card via [[Paxum]])&amp;lt;br /&amp;gt;EUR (via [[Paxum]]&amp;lt;br /&amp;gt;CAD (via [[Paxum]])&amp;lt;br /&amp;gt;CLP (Bank transfer)&amp;lt;br /&amp;gt;INR (Bank transfer)&amp;lt;br /&amp;gt;AUD (Bank transfer)&amp;lt;br /&amp;gt;Liberty Reserve USD || {{Table Value Yes}} || &lt;br /&gt;
|-&lt;br /&gt;
|  [[CryptoXchange]]  || Market || BTC&amp;lt;br/&amp;gt;NMC&amp;lt;br/&amp;gt;LTC&amp;lt;br/&amp;gt;USD&amp;lt;br/&amp;gt;AUD (Bank Transfer)&amp;lt;br/&amp;gt;GBP || BTC&amp;lt;br/&amp;gt;NMC&amp;lt;br/&amp;gt;LTC&amp;lt;br/&amp;gt;USD&amp;lt;br/&amp;gt;AUD (Bank Transfer)&amp;lt;br/&amp;gt;GBP  || {{Table Value Yes}} || &amp;lt;ul&amp;gt; &amp;lt;li&amp;gt; Buy Gold,Silver,Palladium and Casascius physical bitcoins plus other items in the store.&amp;lt;/li&amp;gt; &amp;lt;li&amp;gt; Affiliate program.&amp;lt;/li&amp;gt; &amp;lt;li&amp;gt; Mining Pool integration program. World Wide Crypto Currency Exchange supporting dozens of languages and currencies&amp;lt;/li&amp;gt; &amp;lt;li&amp;gt; Bitcoin, Namecoin and Litecoin &amp;lt;/li&amp;gt; &amp;lt;li&amp;gt;Multiple Authentication Levels&amp;lt;/li&amp;gt; &amp;lt;li&amp;gt; API &amp;lt;/li&amp;gt; &amp;lt;li&amp;gt; Free Yubikey&#039;s to High Volume Traders &amp;lt;/li&amp;gt; &amp;lt;li&amp;gt; An Australian Owned and Operated Registered Company.&amp;lt;/li&amp;gt; &amp;lt;li&amp;gt;&lt;br /&gt;
Inquiries: contact@cryptoxchanger.com or Phone: +61280050602 &amp;lt;/li&amp;gt; &amp;lt;/ul&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|  [[BTC-E]] || Market || BTC&amp;lt;br/&amp;gt;USD ([[Liberty Reserve]])&amp;lt;br /&amp;gt;USD (Interkassa) || BTC&amp;lt;br/&amp;gt;USD (Webmoney) || {{Table Value Yes}} || Language: Russian.  Interkassa can be funded from Webmoney and many other methods.&lt;br /&gt;
|-&lt;br /&gt;
|  [[VirWoX]] || Market || BTC&amp;lt;br/&amp;gt;SLL (Second Life)&amp;lt;br/&amp;gt;ACD (Avination)&amp;lt;br/&amp;gt;OMC (OpenSim)&amp;lt;br/&amp;gt;USD,EUR,GBP,CHF ([[PayPal]])&amp;lt;br/&amp;gt;USD,EUR,GBP (Credit &amp;amp; Debit cards via [[Moneybookers]])&amp;lt;br/&amp;gt;USD,EUR,GBP ([[NETELLER]])&amp;lt;br/&amp;gt;EUR (DIRECTebanking / Sofortüberweisung)&amp;lt;br/&amp;gt;USD,EUR,GBP,CHF ([[paysafecard]])&amp;lt;br/&amp;gt;EUR (SEPA bank transfer) || BTC&amp;lt;br/&amp;gt;SLL (Second Life)&amp;lt;br/&amp;gt;ACD (Avination)&amp;lt;br/&amp;gt;OMC (OpenSim)&amp;lt;br/&amp;gt;USD,EUR,GBP,CHF ([[PayPal]])&amp;lt;br /&amp;gt;USD,EUR,GBP ([[Moneybookers]])&amp;lt;br/&amp;gt;USD,EUR,GBP ([[NETELLER]])&amp;lt;br/&amp;gt;EUR (SEPA bank transfer) || {{Table Value Yes}} || Trading through Second Life Linden Dollars.&amp;lt;br/&amp;gt;Variable limits on PayPal and Credit Card deposits. &lt;br /&gt;
|-&lt;br /&gt;
|  [[Britcoin]]&amp;lt;br/&amp;gt;&amp;amp;amp;&amp;lt;br/&amp;gt;[[Intersango]] || Market || BTC&amp;lt;br /&amp;gt;GBP (bank deposit)&amp;lt;br/&amp;gt;USD ([[Dwolla]])&amp;lt;br /&amp;gt;USD (Domestic bank wire)&amp;lt;br /&amp;gt;USD (ACH)&amp;lt;br /&amp;gt;PLN (Bank Wire) || BTC&amp;lt;br /&amp;gt;GBP (bank transfer)&amp;lt;br/&amp;gt;USD ([[Dwolla]])&amp;lt;br /&amp;gt;PLN (Bank Wire) || {{Table Value Yes}} || Operated by the [https://bitcoinconsultancy.com/ BitcoinConsultancy] &amp;lt;br/&amp;gt; [https://intersango.com Intersango] is a completely custom trading platform built from the ground up with security, scalability and extensibility in mind. [https://bitcointalk.org/index.php?topic=43745.0 More Information]&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;Boasts an [https://bitcoinconsultancy.com/wiki/index.php/Intersango/API ever expanding API]&lt;br /&gt;
|-&lt;br /&gt;
|  [[BitChange.pl]] || Market || BTC&amp;lt;br /&amp;gt;PLN (Bank wire) || BTC&amp;lt;br /&amp;gt;PLN (Bank wire) || {{Table Value Yes}} ||&lt;br /&gt;
|-&lt;br /&gt;
|  [[VirtEx]] || Market || BTC&amp;lt;br/&amp;gt;CAD (online bill pay)&amp;lt;br /&amp;gt;CAD (cash at TDBank) || BTC&amp;lt;br/&amp;gt;CAD (direct deposit) || {{Table Value Yes}} ||&lt;br /&gt;
|-&lt;br /&gt;
|  [[Camp BX]] (CBX) || Market || BTC &amp;lt;br/&amp;gt;USD (Check / ACH)&amp;lt;br /&amp;gt;USPS Postal Money Order &amp;lt;br/&amp;gt; USD ([[Dwolla]])&amp;lt;br/&amp;gt; USD (Domestic bank wire)&amp;lt;br/&amp;gt;USD (International bank wire) || BTC &amp;lt;br /&amp;gt;USD (Check / ACH)&amp;lt;br /&amp;gt;USPS Postal Money Order &amp;lt;br/&amp;gt; USD ([[Dwolla]])&amp;lt;br/&amp;gt; USD (Domestic bank wire)&amp;lt;br/&amp;gt;USD (International bank wire) || {{Table Value Yes}} || &amp;lt;ul&amp;gt; &amp;lt;li&amp;gt; Security certification from McAfee&amp;lt;/li&amp;gt;&amp;lt;li&amp;gt; Advanced trading options with AON/FOK/Market&amp;lt;/li&amp;gt; &amp;lt;li&amp;gt;STOPLOSS and Short-Selling in Pipeline&amp;lt;/li&amp;gt;&amp;lt;li&amp;gt; Trading API available&amp;lt;/li&amp;gt;&amp;lt;li&amp;gt; Wallet API available &amp;lt;/li&amp;gt;&amp;lt;li&amp;gt; CBX Instant Bitcoin Transfers Feature &amp;lt;/li&amp;gt;&amp;lt;li&amp;gt; Stoploss / Custom Order Expiry Date/Time &amp;lt;/li&amp;gt;&amp;lt;li&amp;gt; SMS (Text Message) Notifications &amp;lt;/li&amp;gt; &amp;lt;li&amp;gt; Two-Factor Authentication &amp;lt;/li&amp;gt; &amp;lt;li&amp;gt; Based in USA - Atlanta &amp;lt;/li&amp;gt; &amp;lt;/ul&amp;gt;   &lt;br /&gt;
|-&lt;br /&gt;
|  [[Mercado Bitcoin]] || Market || BTC&amp;lt;br/&amp;gt;BRL (Bank transfer)&amp;lt;br /&amp;gt;BRL (Bank transfer - MoIP)&amp;lt;br /&amp;gt;Liberty Reserve USD || BTC&amp;lt;br/&amp;gt;BRL (Bank transfer - MoIP) || {{Table Value Yes}} || Language: Portugese&lt;br /&gt;
|-&lt;br /&gt;
|  [[Bitcoin-Central]] || Market || BTC&amp;lt;br /&amp;gt;CAD (Interac)&amp;lt;br /&amp;gt;CAD (Bank wire)&amp;lt;br /&amp;gt;CAD (Cash deposit)&amp;lt;br /&amp;gt;EUR (SEPA)&amp;lt;br /&amp;gt;INR (Bank wire)&amp;lt;br /&amp;gt;Liberty Reserve USD&amp;lt;br /&amp;gt;Liberty Reserve EUR&amp;lt;br /&amp;gt;PGAU [[Pecunix]] Gold || BTC&amp;lt;br /&amp;gt;CAD (Interac)&amp;lt;br /&amp;gt;CAD (Bank wire)&amp;lt;br /&amp;gt;EUR (SEPA)&amp;lt;br /&amp;gt;INR (Bank wire)&amp;lt;br /&amp;gt;Liberty Reserve USD&amp;lt;br /&amp;gt;Liberty Reserve EUR&amp;lt;br /&amp;gt;[[Pecunix]] Gold || {{Table Value Yes}} || [https://github.com/davout/bitcoin-central Open-source], community reviewed platform&amp;lt;br /&amp;gt;Available in French and English languages&lt;br /&gt;
|-&lt;br /&gt;
|  [[HelloBitcoin]] || Market || BTC&amp;lt;br/&amp;gt;USD (Cwolla)&amp;lt;br /&amp;gt;USD (Bank wire)&amp;lt;br /&amp;gt;USD (Check) || BTC&amp;lt;br/&amp;gt;USD (Check)&amp;lt;br /&amp;gt;USD (Bank wire)&amp;lt;br /&amp;gt;USD (ACH) || {{Table Value Yes}} || Offers margin trading and shorting.&lt;br /&gt;
|-&lt;br /&gt;
|  [[Brasil Bitcoin Market]] || Market || BTC&amp;lt;br/&amp;gt;BRL (Bank transfer - MoIP) || BTC&amp;lt;br/&amp;gt;BRL (Bank transfer - MoIP) || {{Table Value Yes}} || Language: Portugese&lt;br /&gt;
|-&lt;br /&gt;
|  [[Australian Bitcoin Exchange]] || Market || BTC&amp;lt;br /&amp;gt;AUD (Electronic funds deposit)&amp;lt;br /&amp;gt;AUD (Mtgox Redeemable Voucher) || BTC&amp;lt;br /&amp;gt;AUD (Electronic funds transfer) || {{Table Value Yes}} ||&lt;br /&gt;
|-&lt;br /&gt;
|  [[FreshBTC]] || Market || BTC&amp;lt;br /&amp;gt;PLN (Bank wire) || BTC&amp;lt;br /&amp;gt;PLN (Bank wire) || {{Table Value Yes}} ||&lt;br /&gt;
|-&lt;br /&gt;
|  [[BitStamp]] || Market || BTC&amp;lt;br /&amp;gt;EUR (SEPA transfer) || BTC&amp;lt;br /&amp;gt;EUR (SEPA transfer) || {{Table Value Yes}} || EUR deposits converted to/from USD for trading&lt;br /&gt;
|-&lt;br /&gt;
|  [[Aqoin]] || Market || BTC&amp;lt;br /&amp;gt;EUR (SEPA transfer)&amp;lt;br /&amp;gt;EUR (Domestic bank wire/Spain)&amp;lt;br /&amp;gt;EUR (International bank wire) || BTC&amp;lt;br /&amp;gt;EUR (SEPA transfer)&amp;lt;br /&amp;gt;EUR (Domestic bank wire/Spain)&amp;lt;br /&amp;gt;PayPal || {{Table Value Yes}} || Languages: English, Spanish&lt;br /&gt;
|-&lt;br /&gt;
|  [[Rock Currency Exchange]] || Market || BTC&amp;lt;br/&amp;gt;SLL (Second Life) || BTC&amp;lt;br/&amp;gt;SLL (Second Life) || {{Table Value Yes}} || &lt;br /&gt;
|-&lt;br /&gt;
|  [[WM-Center]] || Exchanger || BTC&amp;lt;br/&amp;gt;USD (International bank wire, Western Unon, Moneygram, Xoom etc, cash)&amp;lt;br /&amp;gt;EUR (IBAN bank wire)&amp;lt;br /&amp;gt;RUB (bank wire, WU, Anelik and etc, cash)&amp;lt;br /&amp;gt;AUD (Bank wire)&amp;lt;br /&amp;gt;Liberty Reserve USD/EUR, Perfect Money USD/EUR, Pecunix, Paxum, c-gold, Hoopay, GDP || BTC&amp;lt;br /&amp;gt;USD (International bank wire, Western Unon, Moneygram, Xoom etc, cash)&amp;lt;br /&amp;gt;EUR (IBAN bank wire)&amp;lt;br /&amp;gt;RUB (bank wire, WU, Anelik and etc, cash)&amp;lt;br /&amp;gt;AUD (Bank wire)&amp;lt;br /&amp;gt;Liberty Reserve USD/EUR, Perfect Money USD/EUR, Pecunix, Paxum, c-gold, Hoopay, GDP&amp;lt;br /&amp;gt; PayPal USD/EUR, Moneybookers, Neteller || {{Table Value No}} || 24/7/365 support in english, spanish and russian!&lt;br /&gt;
|-&lt;br /&gt;
|  [[bitNZ]] || Market || BTC&amp;lt;br/&amp;gt;NZD (Domestic bank transfer) || BTC&amp;lt;br/&amp;gt;NZD (Domestic bank transfer) || {{Table Value Yes}} || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Fixed Rate Exchanges &amp;amp; Others==&lt;br /&gt;
&lt;br /&gt;
For smaller amounts, the options are limited due to bank transfer fees, conversion fees and transaction size restrictions. Options include:&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| Service || Type || Payment Method || Notes&lt;br /&gt;
|-&lt;br /&gt;
| [[Bitcoin Market]] || Market || USD (Liberty Reserve)&amp;lt;br /&amp;gt;USD (MoneyBookers)&amp;lt;br /&amp;gt;GAU (Pecunix) || Varies (person to person)&lt;br /&gt;
|-&lt;br /&gt;
| [[bitcoins.aunz.ws]] || Fixed Rate || AUD || cash deposit at NAB &lt;br /&gt;
|-&lt;br /&gt;
| [[BitMarket.eu]] || Market || EUR (Euro)&amp;lt;br /&amp;gt;GBP (British Sterling Pound)&amp;lt;br /&amp;gt;USD (U.S. Dollar)&amp;lt;br&amp;gt;PLN (Polish złoty)&amp;lt;br /&amp;gt;AUD (Australian Dollar)&amp;lt;br /&amp;gt;CAD (Canadian Dollar)&amp;lt;br /&amp;gt;ZAR (South African Rand)&amp;lt;br /&amp;gt;ILS (Israeli Shekel)&amp;lt;br /&amp;gt;CHF (Swiss Franc)&amp;lt;br&amp;gt;RUB (Russian Ruble) || Varies (person to person)&lt;br /&gt;
|-&lt;br /&gt;
| [[Bitcoiny.cz]] || Market || CZK || Varies (person to person)&lt;br /&gt;
|-&lt;br /&gt;
| [[Bit]] / BTC China || Market || n/a || n/a&lt;br /&gt;
|-&lt;br /&gt;
| [[Bitfunnel]] || Credit Card payment exchange/brokering services || Varies (person to person)&lt;br /&gt;
|-&lt;br /&gt;
| [[bitcoin-otc|#bitcoin-otc]] || [http://bitcoin-otc.com/vieworderbook.php Order Book] || Varies (person to person) || IRC trading marketplace will usually have people willing to deal for small and larger amounts using various payment methods, including [[PayPal]], [[Dwolla]], [[Linden Dollars]], etc.&lt;br /&gt;
|-&lt;br /&gt;
| [[Lilion Transfer]] || Fixed Rate || USD (Liberty Reserve)&amp;lt;br /&amp;gt;[[Pecunix]] || &lt;br /&gt;
|-&lt;br /&gt;
| [[Nanaimo Gold]] || Fixed Rate || USD (Liberty Reserve)&amp;lt;br /&amp;gt;Western Union money transfer&amp;lt;br /&amp;gt;Moneygram money transfer&amp;lt;br /&amp;gt;Cash in the mail || LR &amp;lt;--&amp;gt; Bitcoin exchange is automated&amp;lt;br /&amp;gt;For cash in the mail send USD, EUR, CAD, or GBP.  Canada mailing address.&lt;br /&gt;
|-&lt;br /&gt;
| [[Bitcoin Argentina]] || Fixed Rate || Cash: ARS, BRL, USD &amp;lt;br /&amp;gt; Bank transfer: ARS || No exchange fees!&lt;br /&gt;
|-&lt;br /&gt;
| [[Bitcoin.com.es]] || Fixed Rate || EUR (bank deposit) || Bank transfer or cash deposits at OpenBank in Spain.&lt;br /&gt;
|-&lt;br /&gt;
| [[Bahtcoin]] || Fixed Rate || Cash, Webmoney&amp;lt;br /&amp;gt;Liberty Reserve USD || Will cash out to Thai mobile and gaming prepaid cards as well.&lt;br /&gt;
|-&lt;br /&gt;
| [[Bitcoin Brasil]] || Fixed Rate || BRL (Brazilian Real)&amp;lt;br /&amp;gt;USD || Cash exchange&lt;br /&gt;
|-&lt;br /&gt;
| [[BitPiggy]] || Fixed Rate || AUD (Australian Dollar)|| Payment via bank transfer.&lt;br /&gt;
|-&lt;br /&gt;
| [[GetBitcoin]] || Fixed Rate || USD (Dwolla)&amp;lt;BR /&amp;gt;USD (Bank wire)&amp;lt;BR /&amp;gt;USD (Cash in the mail)&amp;lt;BR /&amp;gt;USD (Money Order)&amp;lt;BR /&amp;gt;USD (Cashier&#039;s Check/Certified Check)&amp;lt;BR /&amp;gt;USD (Western Union)&amp;lt;BR /&amp;gt;USD (Traveler&#039;s Check)&amp;lt;BR /&amp;gt;USD (Prepaid Debit Card)&amp;lt;BR /&amp;gt; || For cash in mail, send USD.  U.S. mailing address.&lt;br /&gt;
|-&lt;br /&gt;
| [[Bitcoin 4 Cash]] || Fixed Rate || Cash in the mail || Send USD or CAD. Canada mailing address.&lt;br /&gt;
|-&lt;br /&gt;
| [[Bitcoin2Cash]] || Fixed Rate || Cash in the mail || Send USD. U.S. mailing address.&lt;br /&gt;
|-&lt;br /&gt;
| [[bitcoin.local]] || Directory || Varies (person to person) ||&lt;br /&gt;
|-&lt;br /&gt;
| [[bcchanger.com]] || Directory || Enables person to person purchases and sales via PayPal, MoneyBookers and other e-currency platforms ||&lt;br /&gt;
|-&lt;br /&gt;
| [[YouTipIt]] || Fixed Rate || USD&amp;lt;br /&amp;gt;EUR&amp;lt;br /&amp;gt;GBP || Purchase bitcoins to add to your balance with YouTipIt using credit card through ClickAndBuy.&lt;br /&gt;
|-&lt;br /&gt;
| [[Ubitex]] || In person exchange || Varies (person to person) ||&lt;br /&gt;
|-&lt;br /&gt;
| [[Bitcoil]] || Fixed Rate || ILS (bank transfer) ||&lt;br /&gt;
|- &lt;br /&gt;
|[[Accesscoin]] || Fixed Rate || USD (Google Checkout) || Requires Facebook account for second factor authentication ||&lt;br /&gt;
|-&lt;br /&gt;
|[[btcnow]] || Fixed Rate || USD (Google Checkout) ||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Other Financial Services==&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| Service || Type || Payment || Settled || Notes&lt;br /&gt;
|-&lt;br /&gt;
| [http://polimedia.us/bitcoin/options.php Derivatives] || Buy / Sell / Exercise CALLs / PUTs, American style.&amp;lt;br /&amp;gt;52 strikes offered (by .5), current month + 2.&amp;lt;br /&amp;gt; No shorting available yet.|| BTC || BTC || Transactions encoded via amt.&amp;lt;br /&amp;gt; Must use non-rounding client&amp;lt;br /&amp;gt;(0.3.24 or later)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Physical Bitcoins==&lt;br /&gt;
&lt;br /&gt;
Physical Bitcoins are bearer tokens that have an embedded redeemable digital bitcoin value if torn open.  While they are somewhat expensive if bought purely for the digital bitcoins, they are relatively easy to get, because they can be purchased with PayPal or credit card - payment methods not typically not accepted for pure digital bitcoin purchases.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| Service || Type || Payment || Notes&lt;br /&gt;
|-&lt;br /&gt;
| [http://www.memorydealers.com Memory Dealers] || Casascius Physical Bitcoins || USD (PayPal/Credit Card) || &lt;br /&gt;
|-&lt;br /&gt;
| [https://www.casascius.com Casascius.com] || Casascius Physical Bitcoins || BTC || &lt;br /&gt;
|-&lt;br /&gt;
| [http://www.bitbills.com Bitbills] || Bitbills cards || BTC || Not taking orders as of Nov 2011.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
&lt;br /&gt;
* [[:Category:Digital_currencies|Digital Currencies]]&lt;br /&gt;
* [[Selling bitcoins]]&lt;br /&gt;
* [[Secure Trading]]&lt;br /&gt;
* [[:Category:Local|Local]] exchanges&lt;br /&gt;
&lt;br /&gt;
[[Category:Exchanges]]&lt;br /&gt;
[[Category:Introduction]]&lt;br /&gt;
[[zh-cn:购买bitcoins]]&lt;/div&gt;</summary>
		<author><name>Pigeons</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Smart_card_wallet&amp;diff=18859</id>
		<title>Smart card wallet</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Smart_card_wallet&amp;diff=18859"/>
		<updated>2011-11-04T14:05:02Z</updated>

		<summary type="html">&lt;p&gt;Pigeons: grammar&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This pages gathers resources for the implementation of a Bitcoin wallet on a smart card.&lt;br /&gt;
&lt;br /&gt;
===Rationale===&lt;br /&gt;
&lt;br /&gt;
*Computers and smartphones are target for malware. The software on a smart card can be protected.&lt;br /&gt;
*Smart cards do not need a battery, nor internet connection, they are robust.&lt;br /&gt;
*Adoption: people are already used to paying with smart cards.&lt;br /&gt;
&lt;br /&gt;
===Desired features===&lt;br /&gt;
&lt;br /&gt;
*no blockchain, no node; the card contains only private keys, and an algorithm to sign a transaction&lt;br /&gt;
*the smart card should have its own keyboard (for pin code protection) and display (to show the transaction amount)&lt;br /&gt;
*the card should implement a deterministic wallet, so that funds can be recovered if the card is lost.&lt;br /&gt;
&lt;br /&gt;
===Usage scenario===&lt;br /&gt;
&lt;br /&gt;
* the reading device may belong to a merchant at a point of sale; it cannot be trusted with private keys. &lt;br /&gt;
* the reading device is connected to a full bitcoin node; it can be trusted for getting and sending blockchain information.&lt;br /&gt;
* the reading device sends to the card the current balance of its bitcoin addresses. This information can be cached in the card.&lt;br /&gt;
* the reading device sends a bitcoin receiving address and transaction amount to the card.&lt;br /&gt;
* the amount is displayed by the card ; the user confirms the transaction with his pin code.&lt;br /&gt;
* the smart card creates a signed transaction and sends it to the reading device&lt;br /&gt;
* the transaction is checked and broadcast by the bitcoin node.&lt;br /&gt;
&lt;br /&gt;
==Implementation steps==&lt;br /&gt;
&lt;br /&gt;
===1. write a bitcoin daemon that can talk to a lightweight wallet===&lt;br /&gt;
*this has been done already, see for example bitcoinjs: https://github.com/bitcoinjs/bitcoinjs-lib&lt;br /&gt;
*See also this pull request: [https://github.com/piotrnar/bitcoin/tree/importexporttx importexporttx] can be used to broadcast the transaction&lt;br /&gt;
* https://bitcointalk.org/index.php?topic=28278.msg383312#msg383312&lt;br /&gt;
&lt;br /&gt;
===2. write a lightweight wallet===&lt;br /&gt;
*wallet without blockchain, in order to test the daemon&lt;br /&gt;
*this lightweight wallet will be later implemented on the card &lt;br /&gt;
*use it to define the communication protocol between card and reading device.&lt;br /&gt;
&lt;br /&gt;
===3. implement wallet on a simple smart card===&lt;br /&gt;
&lt;br /&gt;
* http://www.opensc-project.org/opensc openSC : tools and libraries for smart cards. &lt;br /&gt;
* amadousarr.free.fr/crypto/ECDSAJAVACARD.pdf : A Software Implementation of ECDSA on a Java Smart Card&lt;br /&gt;
* http://www.acs.com.hk : cards, readers, development kits; no display, pincode needs to be typed on the reading device&lt;br /&gt;
&lt;br /&gt;
===4. implement wallet on a smart card with display and pincode ===&lt;br /&gt;
&lt;br /&gt;
list of vendors:&lt;br /&gt;
* http://www.nidsecurity.com/products/solution-enterprise.html (smart cards with LCD displays)&lt;br /&gt;
* http://www.avesodisplays.com/ (smard cards with flexible displays)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==references==&lt;br /&gt;
*https://bitcointalk.org/index.php?topic=7539.0 Bitcoin smartcard Point of Sale terminal&lt;br /&gt;
*https://bitcointalk.org/index.php?topic=20933.0 Bitcoin and Smart Cards &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[category:Developer]]&lt;br /&gt;
[[category:Technical]]&lt;br /&gt;
[[category:Wallets]]&lt;br /&gt;
[[Category:Mobile]]&lt;/div&gt;</summary>
		<author><name>Pigeons</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Bitcoind&amp;diff=18359</id>
		<title>Bitcoind</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Bitcoind&amp;diff=18359"/>
		<updated>2011-10-21T23:06:14Z</updated>

		<summary type="html">&lt;p&gt;Pigeons: Spelling&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Image:Bitcoin Original Client.png|thumb|350px|right|The bitcoin original client]]&lt;br /&gt;
&lt;br /&gt;
The &#039;&#039;&#039;Original Bitcoin client&#039;&#039;&#039; is the first [[bitcoin]] client in the network&#039;s history. It&#039;s available under the [http://www.opensource.org/licenses/mit-license.php MIT license] for Windows, 32 and 64-bit GNU/Linux-based OSes and Mac OS X.&lt;br /&gt;
&lt;br /&gt;
The client comes with two executables, a GUI and an command line interface (CLI).&lt;br /&gt;
&lt;br /&gt;
== Executables ==&lt;br /&gt;
See [[Running_Bitcoin|running bitcoin]] for more detail and an example of the configuration file.&lt;br /&gt;
=== Bitcoin (GUI) ===&lt;br /&gt;
&lt;br /&gt;
The bitcoin GUI provides an easy to use wxWidgets-based interface. It allows to send coins and to monitor:&lt;br /&gt;
* transactions from and to the opened wallet&lt;br /&gt;
* block creations&lt;br /&gt;
* confirmations of transactions&lt;br /&gt;
* balance of the wallet&lt;br /&gt;
&lt;br /&gt;
=== Bitcoind (CLI) ===&lt;br /&gt;
&lt;br /&gt;
Bitcoind is both a headless daemon and a client for the same daemon.  It also provides a JSON-RPC interface, allowing it to be controlled locally (via bitcoind or another CLI client) or remotely.  [[Original Bitcoin client/API Calls list|Various commands]] are made available by the API.&lt;br /&gt;
&lt;br /&gt;
To use locally, first start the program in daemon mode:&lt;br /&gt;
:bitcoind -daemon&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Then you can use the same program to execute [[Original Bitcoin client/API Calls list|API commands]], e.g.:&lt;br /&gt;
:bitcoind listreceivedbyaddress 0 true&lt;br /&gt;
:bitcoind getbalance&lt;br /&gt;
&lt;br /&gt;
To stop the bitcoin daemon, execute:&lt;br /&gt;
:bitcoind stop&lt;br /&gt;
&lt;br /&gt;
==History==&lt;br /&gt;
* Version 0.4.0 was released for all supported platforms on September 23th, 2011 &amp;lt;ref&amp;gt;[https://bitcointalk.org/index.php?topic=45410.0 Bitcoin version 0.4.0 released]&amp;lt;/ref&amp;gt;.&lt;br /&gt;
* Version 0.3.24 was released for all supported platforms on July 8th, 2011 &amp;lt;ref&amp;gt;[http://forum.bitcoin.org/index.php?topic=27187.0 Bitcoin version 0.3.24 released]&amp;lt;/ref&amp;gt;.&lt;br /&gt;
* Version 0.3.23 was released for all supported platforms on June 13th, 2011 &amp;lt;ref&amp;gt;[http://forum.bitcoin.org/index.php?topic=16553.0 Bitcoin version 0.3.23 released]&amp;lt;/ref&amp;gt;.&lt;br /&gt;
* Version 0.3.22 was released for all supported platforms on May 19th, 2011 &amp;lt;ref&amp;gt;[http://forum.bitcoin.org/index.php?topic=8894.0 Version 0.3.22]&amp;lt;/ref&amp;gt;.&lt;br /&gt;
* Version 0.3.20 was released for all supported platforms on February 21st, 2011&amp;lt;ref&amp;gt;[http://www.bitcoin.org/smf/index.php?topic=3704.0 Version 0.3.20]&amp;lt;/ref&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Theory of Operation==&lt;br /&gt;
&lt;br /&gt;
Satoshi&#039;s Original Bitcoin client is a multithreaded C++ program. It is designed to be portable across Windows, Mac, and Linux systems. The multithreaded aspect leads to some complexity and the use of certain code patterns to deal with concurrency that may be unfamiliar to many programmers. Also, the code is aggressive in the use of C++ constructs, so it will help to be fluent with map, multimap, set, string, vector, iostream, and templates. As is typical of a C++ program, a lot of code tends to end up in the header files so be sure to search both the .cpp and .h files when looking for a function.&lt;br /&gt;
&lt;br /&gt;
The client is oriented around several major operations, which are described in separate detailed articles and summarized in the following sections.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===[[Satoshi Client Initialization and Startup|Initialization and Startup]]===&lt;br /&gt;
Upon startup, the client performs various initialization routines including starting multiple threads to handle concurrent operations.&lt;br /&gt;
&lt;br /&gt;
===[[Satoshi Client Node Discovery|Node Discovery]]===&lt;br /&gt;
The client uses various techniques find out about other bitcoin nodes that may exist.&lt;br /&gt;
&lt;br /&gt;
===[[Satoshi Client Node Connectivity|Node Connectivity]]===&lt;br /&gt;
The client initiates and maintains connections to other nodes.&lt;br /&gt;
&lt;br /&gt;
===[[Satoshi Client Sockets and Messages|Sockets and Messages]]===&lt;br /&gt;
The client processes messages from other nodes and sends messages to other nodes using socket connections.&lt;br /&gt;
&lt;br /&gt;
===[[Satoshi Client Block Exchange|Block Exchange]]===&lt;br /&gt;
Nodes advertise their inventory of blocks to each other and exchange blocks to build block chains.&lt;br /&gt;
&lt;br /&gt;
===[[Satoshi Client Transaction Exchange|Transaction Exchange]]===&lt;br /&gt;
Nodes exchange and relay transactions with each other. The client associates transactions with bitcoin addresses in the local wallet.&lt;br /&gt;
&lt;br /&gt;
===Wallet Services===&lt;br /&gt;
The client can create transactions using the local wallet. The client associates transactions with bitcoin addresses in the local wallet. The client provides a service for managing the local wallet.&lt;br /&gt;
&lt;br /&gt;
===RPC Interface===&lt;br /&gt;
The client offers an JSON-RPC interface over HTTP over sockets to perform various operational functions and to manage the local wallet.&lt;br /&gt;
&lt;br /&gt;
===User Interface===&lt;br /&gt;
The user interface code is currently based on [http://www.wxwidgets.org wxWidgets] and is scheduled to be superseded by [[Bitcoin-qt]] in version 0.5.0. &lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
&lt;br /&gt;
* [[Original Bitcoin client/API calls list]]&lt;br /&gt;
* [[Protocol specification|Bitcoin network protocol]]&lt;br /&gt;
* [[Development process]]&lt;br /&gt;
* [[Changelog]]&lt;br /&gt;
&lt;br /&gt;
==External Links==&lt;br /&gt;
* [http://sourceforge.net/projects/bitcoin/ Bitcoin Client project on SourceForge]&lt;br /&gt;
* [https://github.com/bitcoin/bitcoin/ Bitcoin Client project on Github]&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&amp;lt;references /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Nodes]]&lt;br /&gt;
[[Category:Wallets]]&lt;br /&gt;
[[Category:User Interfaces]]&lt;br /&gt;
[[Category:Clients]]&lt;br /&gt;
[[Category:Developer]]&lt;br /&gt;
[[Category:Technical]]&lt;br /&gt;
[[Category:Free Software]]&lt;br /&gt;
[[Category:License/MIT-X11]]&lt;br /&gt;
[[Category:Open Source]]&lt;/div&gt;</summary>
		<author><name>Pigeons</name></author>
	</entry>
</feed>