<?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=ChupaChup</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=ChupaChup"/>
	<link rel="alternate" type="text/html" href="https://en.bitcoin.it/wiki/Special:Contributions/ChupaChup"/>
	<updated>2026-05-01T05:14:53Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.43.8</generator>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Difficulty&amp;diff=62503</id>
		<title>Difficulty</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Difficulty&amp;diff=62503"/>
		<updated>2017-04-12T08:56:33Z</updated>

		<summary type="html">&lt;p&gt;ChupaChup: Added 99Bitcoins&amp;#039; mining calculator to resources&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;See also: [[target]]&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
=== What is &amp;quot;difficulty&amp;quot;? ===&lt;br /&gt;
&lt;br /&gt;
Difficulty is a measure of how difficult it is to find a hash below a given target.&lt;br /&gt;
&lt;br /&gt;
The Bitcoin network has a global block difficulty. Valid blocks must have a hash below this target.&lt;br /&gt;
Mining pools also have a pool-specific share difficulty setting a lower limit for shares.&lt;br /&gt;
&lt;br /&gt;
=== How often does the network difficulty change? ===&lt;br /&gt;
&lt;br /&gt;
Every 2016 [[block|blocks]].&lt;br /&gt;
&lt;br /&gt;
=== What is the formula for difficulty? ===&lt;br /&gt;
&lt;br /&gt;
difficulty = difficulty_1_target / current_target &lt;br /&gt;
&lt;br /&gt;
(target is a 256 bit number)&lt;br /&gt;
&lt;br /&gt;
difficulty_1_target can be different for various ways to measure difficulty.&lt;br /&gt;
Traditionally, it represents a hash where the leading 32 bits are zero and the rest are one (this is known as &amp;quot;pool difficulty&amp;quot; or &amp;quot;pdiff&amp;quot;).&lt;br /&gt;
The Bitcoin protocol represents targets as a custom floating point type with limited precision; as a result, Bitcoin clients often approximate difficulty based on this (this is known as &amp;quot;bdiff&amp;quot;).&lt;br /&gt;
&lt;br /&gt;
===How is difficulty stored in blocks?===&lt;br /&gt;
&lt;br /&gt;
Each block stores a packed representation (called &amp;quot;Bits&amp;quot;) for its actual hexadecimal [[target]]. The target can be derived from it via a predefined formula. For example, if the packed target in the block is 0x1b0404cb, the hexadecimal target is&lt;br /&gt;
 0x0404cb * 2**(8*(0x1b - 3)) = 0x00000000000404CB000000000000000000000000000000000000000000000000&lt;br /&gt;
&lt;br /&gt;
Note that the 0x0404cb value is a signed value in this format. The largest legal value for this field is 0x7fffff. To make a larger value you must shift it down one full byte. Also 0x008000 is the smallest positive valid value.&lt;br /&gt;
&lt;br /&gt;
===How is difficulty calculated? What is the difference between bdiff and pdiff?===&lt;br /&gt;
&lt;br /&gt;
The highest possible target (difficulty 1) is defined as 0x1d00ffff, which gives us a hex target of&lt;br /&gt;
 0x00ffff * 2**(8*(0x1d - 3)) = 0x00000000FFFF0000000000000000000000000000000000000000000000000000&lt;br /&gt;
&lt;br /&gt;
It should be noted that pooled mining often uses non-truncated targets, which puts &amp;quot;pool difficulty 1&amp;quot; at&lt;br /&gt;
 0x00000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF&lt;br /&gt;
&lt;br /&gt;
So the difficulty at 0x1b0404cb is therefore:&lt;br /&gt;
 0x00000000FFFF0000000000000000000000000000000000000000000000000000 /&lt;br /&gt;
 0x00000000000404CB000000000000000000000000000000000000000000000000 &lt;br /&gt;
 = 16307.420938523983 (bdiff)&lt;br /&gt;
And:&lt;br /&gt;
 0x00000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF /&lt;br /&gt;
 0x00000000000404CB000000000000000000000000000000000000000000000000 &lt;br /&gt;
 = 16307.669773817162 (pdiff)&lt;br /&gt;
&lt;br /&gt;
Here&#039;s a fast way to calculate bitcoin difficulty. It uses a modified Taylor series for the logarithm (you can see tutorials on flipcode and wikipedia) and relies on logs to transform the difficulty calculation:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;cpp&amp;quot;&amp;gt;&lt;br /&gt;
#include &amp;lt;iostream&amp;gt;&lt;br /&gt;
#include &amp;lt;cmath&amp;gt;&lt;br /&gt;
&lt;br /&gt;
inline float fast_log(float val)&lt;br /&gt;
{&lt;br /&gt;
   int * const exp_ptr = reinterpret_cast &amp;lt;int *&amp;gt;(&amp;amp;val);&lt;br /&gt;
   int x = *exp_ptr;&lt;br /&gt;
   const int log_2 = ((x &amp;gt;&amp;gt; 23) &amp;amp; 255) - 128;&lt;br /&gt;
   x &amp;amp;= ~(255 &amp;lt;&amp;lt; 23);&lt;br /&gt;
   x += 127 &amp;lt;&amp;lt; 23;&lt;br /&gt;
   *exp_ptr = x;&lt;br /&gt;
&lt;br /&gt;
   val = ((-1.0f/3) * val + 2) * val - 2.0f/3;&lt;br /&gt;
   return ((val + log_2) * 0.69314718f);&lt;br /&gt;
} &lt;br /&gt;
&lt;br /&gt;
float difficulty(unsigned int bits)&lt;br /&gt;
{&lt;br /&gt;
    static double max_body = fast_log(0x00ffff), scaland = fast_log(256);&lt;br /&gt;
    return exp(max_body - fast_log(bits &amp;amp; 0x00ffffff) + scaland * (0x1d - ((bits &amp;amp; 0xff000000) &amp;gt;&amp;gt; 24)));&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
int main()&lt;br /&gt;
{&lt;br /&gt;
    std::cout &amp;lt;&amp;lt; difficulty(0x1b0404cb) &amp;lt;&amp;lt; std::endl;&lt;br /&gt;
    return 0;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To see the math to go from the normal difficulty calculations (which require large big ints bigger than the space in any normal integer) to the calculation above, here&#039;s some python:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
import decimal, math&lt;br /&gt;
l = math.log&lt;br /&gt;
e = math.e&lt;br /&gt;
&lt;br /&gt;
print 0x00ffff * 2**(8*(0x1d - 3)) / float(0x0404cb * 2**(8*(0x1b - 3)))&lt;br /&gt;
print l(0x00ffff * 2**(8*(0x1d - 3)) / float(0x0404cb * 2**(8*(0x1b - 3))))&lt;br /&gt;
print l(0x00ffff * 2**(8*(0x1d - 3))) - l(0x0404cb * 2**(8*(0x1b - 3)))&lt;br /&gt;
print l(0x00ffff) + l(2**(8*(0x1d - 3))) - l(0x0404cb) - l(2**(8*(0x1b - 3)))&lt;br /&gt;
print l(0x00ffff) + (8*(0x1d - 3))*l(2) - l(0x0404cb) - (8*(0x1b - 3))*l(2)&lt;br /&gt;
print l(0x00ffff / float(0x0404cb)) + (8*(0x1d - 3))*l(2) - (8*(0x1b - 3))*l(2)&lt;br /&gt;
print l(0x00ffff / float(0x0404cb)) + (0x1d - 0x1b)*l(2**8)&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== What is the current difficulty? ===&lt;br /&gt;
[http://blockexplorer.com/q/getdifficulty Current difficulty], as output by Bitcoin&#039;s getDifficulty.&lt;br /&gt;
&lt;br /&gt;
[http://bitcoin.sipa.be Graphs]&lt;br /&gt;
&lt;br /&gt;
=== What is the maximum difficulty? ===&lt;br /&gt;
&lt;br /&gt;
There is no minimum target. The maximum difficulty is roughly: maximum_target / 1 (since 0 would result in infinity), which is a ridiculously huge number (about 2^224).&lt;br /&gt;
&lt;br /&gt;
The actual maximum difficulty is when current_target=0, but we would not be able to calculate the difficulty if that happened. (fortunately it never will, so we&#039;re ok.)&lt;br /&gt;
&lt;br /&gt;
=== Can the network difficulty go down? ===&lt;br /&gt;
Yes it can. See discussion in [[target]].&lt;br /&gt;
&lt;br /&gt;
=== What is the minimum difficulty? ===&lt;br /&gt;
The minimum difficulty, when the target is at the maximum allowed value, is 1.&lt;br /&gt;
&lt;br /&gt;
=== What network hash rate results in a given difficulty? ===&lt;br /&gt;
The difficulty is adjusted every 2016 blocks based on the [[Block_timestamp|time]] it took to find the previous 2016 blocks.  At the desired rate of one block each 10 minutes, 2016 blocks would take exactly two weeks to find.  If the previous 2016 blocks took more than two weeks to find, the difficulty is reduced.  If they took less than two weeks, the difficulty is increased.  The change in difficulty is in proportion to the amount of time over or under two weeks the previous 2016 blocks took to find.&lt;br /&gt;
&lt;br /&gt;
To find a block, the hash must be less than the target.  The hash is effectively a random number between 0 and 2**256-1.  The offset for difficulty 1 is&lt;br /&gt;
 0xffff * 2**208&lt;br /&gt;
and for difficulty D is&lt;br /&gt;
 (0xffff * 2**208)/D&lt;br /&gt;
&lt;br /&gt;
The expected number of hashes we need to calculate to find a block with difficulty D is therefore&lt;br /&gt;
 D * 2**256 / (0xffff * 2**208)&lt;br /&gt;
or just&lt;br /&gt;
 D * 2**48 / 0xffff&lt;br /&gt;
&lt;br /&gt;
The difficulty is set such that the previous 2016 blocks would have been found at the rate of one every 10 minutes, so we were calculating (D * 2**48 / 0xffff) hashes in 600 seconds.  That means the hash rate of the network was&lt;br /&gt;
 D * 2**48 / 0xffff / 600&lt;br /&gt;
over the previous 2016 blocks.  Can be further simplified to&lt;br /&gt;
 D * 2**32 / 600&lt;br /&gt;
without much loss of accuracy.&lt;br /&gt;
&lt;br /&gt;
At difficulty 1, that is around 7 Mhashes per second.&lt;br /&gt;
&lt;br /&gt;
At the time of writing, the difficulty is 22012.4941572, which means that over the previous set of 2016 blocks found the average network hash rate was&lt;br /&gt;
 22012.4941572 * 2**32 / 600 = around 157 Ghashes per second.&lt;br /&gt;
&lt;br /&gt;
=== How soon might I expect to generate a block? ===&lt;br /&gt;
(The [https://www.bitcointalk.org/index.php?topic=1682.0 eternal question].)&lt;br /&gt;
&lt;br /&gt;
The average time to find a block can be approximated by calculating:&lt;br /&gt;
 time = difficulty * 2**32 / hashrate&lt;br /&gt;
where difficulty is the current difficulty, hashrate is the number of hashes your miner calculates per second, and time is the average in seconds between the blocks you find.&lt;br /&gt;
&lt;br /&gt;
For example, using Python we calculate the average time to generate a block using a 1Ghash/s mining rig when the difficulty is 20000:&lt;br /&gt;
 $ python -c &amp;quot;print 20000 * 2**32 / 10**9 / 60 / 60.0&amp;quot;&lt;br /&gt;
 23.85&lt;br /&gt;
and find that it takes just under 24 hours on average.&lt;br /&gt;
&lt;br /&gt;
* Any one grinding of the hash stands the same chance of &amp;quot;winning&amp;quot; as any other.  The numbers game is how many attempts your hardware can make per second.&lt;br /&gt;
* You need to know the difficulty (above) and your khash/sec rate (reported by the client).&lt;br /&gt;
** [[Mining Hardware Comparison]] has some stats that may help you predict what you could get.&lt;br /&gt;
* Visit a calculator or perform the maths yourself,&lt;br /&gt;
** http://www.alloscomp.com/bitcoin/calculator.php&lt;br /&gt;
** http://www.vnbitcoin.org/bitcoincalculator.php&lt;br /&gt;
** https://bitknock.com/calculator&lt;br /&gt;
**https://99bitcoins.com/bitcoin-mining-calculator&lt;br /&gt;
* Remember it&#039;s just probability!  There are no guarantees you will win every N days.&lt;br /&gt;
&lt;br /&gt;
==Related Links==&lt;br /&gt;
&lt;br /&gt;
* [https://docs.google.com/spreadsheet/ccc?key=0AiFMBvXvL2dtdEZkR2J4eU5rS3B4ei1iUmJxSWNlQ0E Bitcoin Difficulty History]&lt;br /&gt;
* [https://www.bitcoinmining.com/what-is-bitcoin-mining-difficulty/ What is Bitcoin Mining Difficulty?]&lt;br /&gt;
* See also: [[target]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Technical]]&lt;br /&gt;
[[Category:Vocabulary]]&lt;br /&gt;
&lt;br /&gt;
[[pl:Trudność]]&lt;/div&gt;</summary>
		<author><name>ChupaChup</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Buying_Bitcoins_(the_newbie_version)&amp;diff=44833</id>
		<title>Buying Bitcoins (the newbie version)</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Buying_Bitcoins_(the_newbie_version)&amp;diff=44833"/>
		<updated>2014-03-09T11:44:01Z</updated>

		<summary type="html">&lt;p&gt;ChupaChup: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page aims to be the best resource for new users to understand how to buy Bitcoins. The existing [[Buying bitcoins]] page is too complex.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;For a practical getting started guide check out [http://ofirbeigel.bitcoinse.hop.clickbank.net?page=risk-free Bitcoin Secrets]&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Read [https://en.bitcoin.it/wiki/How_To_Buy_Bitcoins_With_Your_Credit_Card How To Buy Bitcoins With Your Credit Card], for information about buying Bitcoins with a credit card.&lt;br /&gt;
&lt;br /&gt;
{{Counterparty-warning}}&lt;br /&gt;
&lt;br /&gt;
===PayPal===&lt;br /&gt;
 &lt;br /&gt;
[http://bitcoin.stackexchange.com/questions/2293/how-can-i-buy-bitcoin-via-a-credit-card-or-paypal You can&#039;t directly buy Bitcoins using PayPal], because it is risky for the seller, and therefore few sellers will offer this. There are basically 3 reasons for that:&lt;br /&gt;
 	&lt;br /&gt;
* The buyer of bitcoins can always perform a chargeback and there is no way for the seller to contest that&lt;br /&gt;
 	&lt;br /&gt;
* There are many hacked accounts and when PayPal realizes that such an account has been fraudulently used, they will also perform a chargeback&lt;br /&gt;
 	&lt;br /&gt;
* PayPal doesn&#039;t like bitcoin, as the bitcoin network is in direct competition to it. They will ban accounts that have anything to do with Bitcoins, and freeze their balance.&lt;br /&gt;
 	&lt;br /&gt;
Having said that there is a [http://99bitcoins.com/buying-bitcoins-with-paypal-a-practical-guide/ workaround] that can be done in order to use Paypal to buy Bitcoins but it holds within it higher transaction fees. Using the [http://VirrWox.com Virtual World Exchange] you can buy Second Life Lindens (SLL) with Paypal and then convert your SLL to Bitcoins. This process will charge you transaction fees of around 6% but will let you purchase Bitcoins pretty quickly as opposed to a wire transfer. The reason this method works is because you do not buy Bitcoins with Paypal directly, you only buy SLL with Paypal (which is acceptable by Paypal&#039;s TOS) and then exchange your SLL to Bitcoin.&lt;br /&gt;
 	&lt;br /&gt;
&#039;&#039;&#039;Note&#039;&#039;&#039;:  If you only want to take advantage of Bitcoin&#039;s price volatility You can trade CFDs on Bitcoin via Paypal on sites like [http://Ava-Trade.co.uk AvaTrade] or [http://99bitcoins.com/plus500 Plus500]. When trading online your capital may be at risk. Trading CFDs is suitable for more experienced traders.&lt;br /&gt;
&lt;br /&gt;
=== Via Bank Transfer (US) ===&lt;br /&gt;
[https://coinbase.com/ Coinbase] allows you to buy and sell bitcoin instantly by connecting any U.S. bank account. A credit card can also be optionally linked to your account. Ideal for newbies.&lt;br /&gt;
&lt;br /&gt;
[[File:BIPS.gif|20px|link=https://bips.me]] [https://bips.me BIPS] Please make sure you read up on how to validate your bank account.&lt;br /&gt;
&lt;br /&gt;
[https://www.bitbrothersllc.com BitBrothers LLC] allows customers and bitcoiners to purchase bitcoins by either sending in cash, money orders, cashiers checks, or MONEYGRAM to a designated location. Bitcoiners can also deposit money directly into one of the corporate business accounts increasing the transaction time to less than an hour. These methods of payments are available to ensure anonymity and protect the ideals bitcoins were founded on. For customers who wish to preform BANK TRANSFERS, the option will be available shortly. BitBrothers LLC guarantees that all customers will be satisfied with their exquisite customer service and overall experience that they are even offering discounts to select customers!&lt;br /&gt;
&lt;br /&gt;
[https://www.bitcoinbycc.com BBCC] allows you to buy bitcoins using a bank account located in any country. There is no account verification needed, and no records are kept of any transactions. We use AES-256 encryption for each and every communication, your anonymity is paramount.&lt;br /&gt;
&lt;br /&gt;
[https://kraken.com Kraken] allows verified users to buy and sell bitcoin using USD and EUR by depositing via wire transfer. Other national currencies can be converted to USD or EUR at transfer. Kraken is an exchange and the market is determined by orders.&lt;br /&gt;
&lt;br /&gt;
=== Via SEPA Bank Transfer (EU) ===&lt;br /&gt;
&lt;br /&gt;
[[File:BitQuickco.png|20px|link=https://www.bitquick.co]] [https://www.bitquick.co BitQuick.co] ([https://en.bitcoin.it/wiki/BitQuick.co info)] allows sellers to connect to buyers via cash deposit or SEPA transfer. You can buy bitcoin instantly by providing only your email address and bitcoin address. As soon as the deposit is received, the bitcoin are sent.&lt;br /&gt;
&lt;br /&gt;
[[File:BIPS.gif|20px|link=https://bips.me]] [https://bips.me BIPS] All we require is a simple verification process that usually takes less than 2 business days to complete.&lt;br /&gt;
&lt;br /&gt;
[[File:favicon_b4c.jpg|20px|link=https://bit4coin.net]] [https://bit4coin.net bit4coin.net] ([[bit4coin|info]]) Buy bitcoins with bit4coin gift vouchers. Easy to use online shop experience, and the vouchers will be delivered to your doorstep. [https://bit4coin.net bit4coin.net] guides you through the entire process of redeeming the voucher and getting your first bitcoins - and the voucher doubles up as a great gift, too!&lt;br /&gt;
&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
[https://kraken.com Kraken] allows verified users to deposit via SEPA transfer. Transfers can take as little as one business day to arrive in the account. Kraken is an exchange, and the market is specific to open orders on the site.&lt;br /&gt;
&lt;br /&gt;
[http://www.belgacoin.com Belgacoin] allows you to buy bitcoins via SEPA transfer. It is fast, secure and cheap. No registration needed. We do not charge anything for this service, for the time being.&lt;br /&gt;
&lt;br /&gt;
=== International Bank Transfer (International) ===&lt;br /&gt;
[[File:ANXIcon.png|20px|link=https://www.anxpro.com]] [https://www.anxpro.com Asia Nexgen (ANX)] ([https://en.bitcoin.it/wiki/Asia_Nexgen_Bitcoin_Exchange info)] allow their customers to buy Bitcoin by sending a wire transfer. They are legally registered and based in Hong Kong and hold a Money Services Operator license issued by the Hong Kong Customs and Excise Department. They support most popular cryto-currencies and all major fiat currencies (including USD, EUR, HKD, AUD, CAD, CHF, GBP, JPY, NZD and SGD). They are currently running a zero transaction fee promotion. &lt;br /&gt;
&lt;br /&gt;
=== Cash (US) ===&lt;br /&gt;
[http://localbitcoins.com Local Bitcoins] allows sellers and buyers who are located nearby to meet and exchange Bitcoins through various methods including cash, wire transfer, Money Bookers, Skrill and more. Local Bitcoins offers a [https://en.bitcoin.it/wiki/Bitcoin_Escrow_Service Bitcoin escrow] service that holds the funds until the transaction is complete, therefore reducing fraud.&lt;br /&gt;
&lt;br /&gt;
[[File:BitQuickco.png|20px|link=https://www.bitquick.co]] [https://www.bitquick.co BitQuick.co] ([https://en.bitcoin.it/wiki/BitQuick.co info)] allows sellers to connect to buyers via cash deposit or SEPA transfer. You can buy bitcoin instantly by providing only your email address and bitcoin address. As soon as the deposit is received, the bitcoin are sent.&lt;br /&gt;
&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
[https://www.bitbrothersllc.com BitBothers LLC] allows customers and bitcoiners to purchase bitcoins by either sending in cash, money orders, cashiers checks, or MONEYGRAM to a designated location. Bitcoiners can also deposit money directly into one of the corporate business accounts increasing the transaction time to less than an hour. These methods of payments are avaliable to ensure anonymity and protect the ideals bitcoins were founded on. For customers who wish to preform bank transfers, the option will be avaliable shortly. BitBrothers LLC gurantees that all customers will be satisfied with their exquisite customer service and overall experience that they are even offering discounts to select customers!&lt;br /&gt;
&lt;br /&gt;
=== Cash (International) ===&lt;br /&gt;
&lt;br /&gt;
[http://localbitcoins.com Local Bitcoins] allow seller and buyers who are located nearby to meet and exchange Bitcoins through various methods including cash, wire transfer, Money Bookers, Skrill  and more. Local Bitcoins offer a [https://en.bitcoin.it/wiki/Bitcoin_Escrow_Service Bitcoin escrow] services that holds the funds until the transaction is complete, therefore reducing fraud.&lt;br /&gt;
&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[File:BIPS.gif|20px|link=https://bips.me]] [https://bips.me BIPS] are able to accommodate most requests.&lt;br /&gt;
&lt;br /&gt;
[https://www.bitbrothersllc.com BitBrothersLLC] allows customers to either send cash, money orders, cashiers checks, or MONEYGRAM. Prompted by incredibly fast customer service and the most anonymity in the entire industry!&lt;br /&gt;
&lt;br /&gt;
[[File:BitQuickco.png|20px|link=https://www.bitquick.co]] [https://www.bitquick.co BitQuick.co] ([https://en.bitcoin.it/wiki/BitQuick.co info)] allows sellers to connect to buyers via cash deposit or SEPA transfer. You can buy bitcoin instantly by providing only your email address and bitcoin address. As soon as the deposit is received, the bitcoin are sent.&lt;br /&gt;
&lt;br /&gt;
[https://localbitcoins.com LocalBitcoins.com] offers person-to-person cash exchanging, cash deposits and cash by mail. Site reputation system protects you against fraud and scammers. Quick and easy for direct Cash Exchange. Beware of Online Exchange Scammers.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Cash (AU) ===&lt;br /&gt;
&lt;br /&gt;
[[File:ANXIcon.png|20px|link=https://www.anxpro.com]] [https://www.anxpro.com Asia Nexgen (ANX)] ([https://en.bitcoin.it/wiki/Asia_Nexgen_Bitcoin_Exchange info)] allow their customers to buy Bitcoin by depositing directly into their Australian bank account. They are legally registered and based in Hong Kong and hold a Money Services Operator license issued by the Hong Kong Customs and Excise Department. They support most popular cryto-currencies and all major fiat currencies (including USD, EUR, HKD, AUD, CAD, CHF, GBP, JPY, NZD and SGD). They are currently running a zero transaction fee promotion. &lt;br /&gt;
&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
[[File:BXlogoSM.jpeg|link=http://bitXoin.com]]  [http://bitXoin.com bitXoin] ([[bitXoin|info]]) Buy bitcoin via online ordering and bank deposit, cash over the counter at most banks throughout Australia.  Fast processing, low reference rate, low commissions.  &lt;br /&gt;
&lt;br /&gt;
[https://www.getbitcoin.com.au Bitcoin (Australia)] - pay by cash over the counter at local bank branches.&lt;br /&gt;
&lt;br /&gt;
=== Cash (HK) ===&lt;br /&gt;
&lt;br /&gt;
[[File:ANXIcon.png|20px|link=https://www.anxpro.com]] [https://www.anxpro.com Asia Nexgen (ANX)] ([https://en.bitcoin.it/wiki/Asia_Nexgen_Bitcoin_Exchange info)] allow their customers to buy Bitcoin by depositing directly into their corporate bank account and via ATM. They are legally registered and based in Hong Kong and hold a Money Services Operator license issued by the Hong Kong Customs and Excise Department. They support most popular cryto-currencies and all major fiat currencies (including USD, EUR, HKD, AUD, CAD, CHF, GBP, JPY, NZD and SGD). They are currently running a zero transaction fee promotion. The company also prepared to open Hong Kong&#039;s first physical bitcoin shop, in Sai Ying Pun in February 2014. Customers, who must supply an identity card and proof of address for anti-money laundering regulatory compliance, will be able to purchase bitcoins for cash.&lt;br /&gt;
&lt;br /&gt;
=== Via Gift Card (US) ===&lt;br /&gt;
[https://giftcarddrainer.com GiftCardDrainer.com] allows you to buy bitcoin with Visa, MasterCard, American Express or Discover gift cards. Uses the exchange rate provided by coinbase.com at the time that the customer&#039;s gift card is processed within 24 hours of card submission. Most cards are processed within a few hours of submission, however it can take up to 24 hours. Customer must provide a bank account number for identity verification.&lt;br /&gt;
&lt;br /&gt;
=== Via IDeal (NL) ===&lt;br /&gt;
[https://bitonic.nl Bitonic] allows you to buy bitcoins with IDEAL.&lt;br /&gt;
&lt;br /&gt;
[http://www.happycoins.nl HappyCoins] allows you to buy Bitcoins with iDEAL and SEPA bank transfer.&lt;br /&gt;
&lt;br /&gt;
=== Via Online Auction ===&lt;br /&gt;
[http://ccauction.net CryptoCoins Auction] is a free of charge auction platform only for Bitcoins and other crypto currencies. On [http://ebay.com/ eBay] or [http://ricardo.ch/ Ricardo Switzerland] you can also buy Bitcoins, usually via SEPA transfer or PayPal. Note that in some countries (e.g. Germany) this is not possible - due to legal reasons. &lt;br /&gt;
&lt;br /&gt;
=== Via mobile phone ===&lt;br /&gt;
[https://www.bitcoinbymobile.com/ BitcoinByMobile.com] allows you to buy small amounts of Bitcoin instantly by charging the purchase directly to your mobile phone bill (or from your prepaid balance). The service works in most of Europe (see: [http://www.bitcoinbymobile.com/where-it-works bitcoinbymobile.com/where-it-works]). Most purchases are completed with the Bitcoins delivered in under 90 seconds.&lt;br /&gt;
&lt;br /&gt;
=== Via MoneyGram (International) ===&lt;br /&gt;
[https://www.bitcoi.com/en/ Bitcoini.com] You can buy bitcoins with MoneyGram worldwide. Quick, easy and secure.&lt;br /&gt;
&lt;br /&gt;
[[File:BIPS.gif|20px|link=https://bips.me]] [https://bips.me BIPS] CVS, 7-11, Walmart, MoneyGram&lt;br /&gt;
&lt;br /&gt;
[https://www.bitbrothersllc.com BitBrothersLLC] Buy bitcoins with MoneyGram anywhere in the U.S.&lt;br /&gt;
&lt;br /&gt;
=== Via Money Transfer ===&lt;br /&gt;
[https://www.bitbrothersllc.com BitBothers LLC] allows customers and bitcoiners to purchase bitcoins by either sending in cash, money orders, cashiers checks, or MONEYGRAM to a designated location. Bitcoiners can also deposit money directly into one of the corporate business accounts increasing the transaction time to less than an hour. These methods of payments are avaliable to ensure anonymity and protect the ideals bitcoins were founded on. For customers who wish to preform bank transfers, the option will be avaliable shortly. BitBrothers LLC gurantees that all customers will be satisfied with their exquisite customer service and overall experience that they are even offering discounts to select customers!&lt;br /&gt;
&lt;br /&gt;
You can buy Bitcoins with a Western Union or MoneyGram money transfer via [http://www.coinmama.com/ coinmama.com].&lt;br /&gt;
&lt;br /&gt;
=== Finding a direct seller online ===&lt;br /&gt;
[https://www.bitbrothersllc.com BitBothers LLC] allows customers and bitcoiners to purchase bitcoins by either sending in cash, money orders, cashiers checks, or MONEYGRAM to a designated location. Bitcoiners can also deposit money directly into one of the corporate business accounts increasing the transaction time to less than an hour. These methods of payments are avaliable to ensure anonymity and protect the ideals bitcoins were founded on. For customers who wish to preform bank transfers, the option will be avaliable shortly. BitBrothers LLC gurantees that all customers will be satisfied with their exquisite customer service and overall experience that they are even offering discounts to select customers!&lt;br /&gt;
&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
If you can find another person that is willing to sell them to you, you can transfer him money via any payment method (including PayPal), and he&#039;ll send you the Bitcoins. The following websites can be used to find direct sellers online  [[Bitcoin OTC]], [https://www.bitcoinary.com/ Bitcoinary] or the [https://bitcointalk.org/index.php?board=53.0 Currency Exchange Forum Section]. Be extremely cautious of scammers when dealing over the counter. Ask an admin, moderator or a trusted person if you think someone is suspicious. Bitcoins are now also available at [http://www.amazon.com/gp/product/B00CPCHACM Amazon]. The seller only sells in low volumes so far, but it is a great way to turn amazon gift cards into bitcoin with no hassle, and probably one of the first ways to obtain bitcoin with a debit card or credit card.&lt;br /&gt;
&lt;br /&gt;
=== Physical Trading ===&lt;br /&gt;
[https://www.bitbrothersllc.com BitBothers LLC] LOCAL PURCHASES IN COLORADO. We also accept MONEYGRAM&lt;br /&gt;
&lt;br /&gt;
You might be able to find an individual with whom you can [https://localbitcoins.com Buy bitcoins locally].&lt;br /&gt;
Always choose somebody with many reviews.&lt;br /&gt;
&lt;br /&gt;
Starting in October of 2013, physical Bitcoin ATMs have been installed in Canada, Finland, Slovakia, Australia, Germany, and the UK. Use a [http://bitcoinatmexplorer.com/ Bitcoin ATM Locator] to find a machine near you.&lt;br /&gt;
&lt;br /&gt;
=== Anonymity ===&lt;br /&gt;
There is a huge demand for buying Bitcoins off the grid due to ever-increasing government regulations and private agency intrusions and discrimination against alternative currencies. &lt;br /&gt;
Due to the possibility of facial recognition cameras at banks and the paper trail involved with credit cards, there are very few options to have high levels of anonymity when buying Bitcoins those ways. DNA, Fingerprints, phone and internet records, audio and video records will not be discussed, but they all are possible tools which attackers could use to uncloak even the stealthiest Bitcoin buyer.&lt;br /&gt;
There are a couple known ways, depending on your location, to buy Bitcoins outside of the standard banking system with relatively high anonymity.&lt;br /&gt;
Buying locally with cash using a burner or payphone allows a high level of anonymity with the exchange being the weakest link.&lt;br /&gt;
Many sellers online will also trade Bitcoins for [[MoneyPak]] codes or other cash-like gift codes which can be bought at a local store with cash.&lt;br /&gt;
Another way to buy Bitcoins with a high level of anonymity is by sending cash in the mail.&lt;br /&gt;
&lt;br /&gt;
=== Exchanges ===&lt;br /&gt;
&lt;br /&gt;
For a list of other major exchanges, see [[Buying bitcoins#Market Exchanges|Market Exchanges]]&lt;br /&gt;
&lt;br /&gt;
== Avoiding Scams ==&lt;br /&gt;
Before using any service, it is a good idea to look for reviews and feedback from previous customers. This can be done by performing a Google search of the name of the website or company. The [https://bitcointalk.org Bitcoin forum] is also a good place to find discussions and reviews about services. &lt;br /&gt;
&lt;br /&gt;
== Links ==&lt;br /&gt;
* [[Buying bitcoins]]&lt;br /&gt;
* [http://howtobuybitcoins.info/ HowToBuyBitcoins.info]&lt;br /&gt;
* http://bitcoin.stackexchange.com/questions/91/how-do-you-obtain-bitcoins&lt;br /&gt;
* http://bitcoin.stackexchange.com/questions/4194/whats-the-best-way-to-buy-bitcoin-noob-friendly&lt;br /&gt;
* https://en.bitcoin.it/wiki/BitcoinByCC&lt;br /&gt;
* https://en.bitcoin.it/wiki/How_To_Buy_Bitcoins_With_Your_Credit_Card&lt;br /&gt;
&lt;br /&gt;
[[Category:Introduction]]&lt;/div&gt;</summary>
		<author><name>ChupaChup</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Earning_bitcoins&amp;diff=44587</id>
		<title>Earning bitcoins</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Earning_bitcoins&amp;diff=44587"/>
		<updated>2014-02-23T10:56:59Z</updated>

		<summary type="html">&lt;p&gt;ChupaChup: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The following page lists different Bitcoin affiliate programs and Bitcoin bonus programs. Bonus programs allow you to earn bitcoins by doing things like taking surveys, answering questions, trying apps, viewing advertisements, referring others to the website, and making purchases at other websites.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Affiliate Programs ==&lt;br /&gt;
&lt;br /&gt;
===Forex===&lt;br /&gt;
[http://www.affiliates.ava-trade.co.uk AvaTrade] – Forex trading for Bitcoins.  Payouts start at $100 CPA. Revenue share plans also available. Not available in the US.&lt;br /&gt;
&lt;br /&gt;
[http://affiliates.500plusforex.com Plus500] – Forex trading for Bitcoins and Litecoins. The highest CPA payouts in Bitcoin Forex. Can reach up to $500 per active user. Not available in the US.&lt;br /&gt;
&lt;br /&gt;
[http://affiliates.99bitcoins.com/etoropartners/ eToro] – Social trading platform for Bitcoin investments. Receive up to $200 CPA. Not available in the US.&lt;br /&gt;
&lt;br /&gt;
[http://affiliates.markets.com/?referrer=ofirbeigel1 Markets.com] – Forex trading and Binary Options for Bitcoins. CPA is calculated on a case by case basis – default CPA is $150. &lt;br /&gt;
&lt;br /&gt;
===Bitcoin exchanges===&lt;br /&gt;
[http://affiliates.virrwox.com VirWox] – Allows you to buy Bitcoins with Paypal or a credit card through the use of a simple workaround. Receive 20% of the commissions taken by VirWox.&lt;br /&gt;
&lt;br /&gt;
[http://affiliates.cavirtex.com/ Cavirtex] – Canada’s Bitcoin exchange. CaVirtex affiliates will earn 30% of Net Revenue from each trader they register in the trader’s first year of trading and 15% of Net Revenue in each succeeding year.&lt;br /&gt;
&lt;br /&gt;
[https://www.coins-e.com/affiliates/ Coins-e] - Refer users to Coins-E and earn 10% of the trade fee on every trade the user executes. Referral payments are made once every 3 days.&lt;br /&gt;
&lt;br /&gt;
[https://www.bitcoin.de/en/affiliate Bitcoin.de] – Germany’s leading Bitcoin market place. You get 10% provison of the marketplace fee, which is charged from the referred user.&lt;br /&gt;
&lt;br /&gt;
===Buy Bitcoins services===&lt;br /&gt;
[https://www.coinmama.com/coinmama-affiliate-program-earn-free-bitcoins/ Coinmama] – Buy bitcoins with a credit card or with Western Union. Receive 5% of the amount purchased by your referred customer.&lt;br /&gt;
&lt;br /&gt;
[https://localbitcoins.com/affiliate/ Local Bitcoins] – Buy Bitcoins from a person near your physical location. Earn 20% from the commissions taken form each user (up to 40%).&lt;br /&gt;
&lt;br /&gt;
[http://coinbase.com Coinbase] – The leading program for US residents seeking to buy Bitcoins. Receive $5 when your referred customer purchases $100 or more.&lt;br /&gt;
&lt;br /&gt;
[https://bitcoinera.net/ Bitcoinera.net] Bitcoin investments. Earn bitcoins by referring new investors to Bitcoinera.net, earn 2% monthly of the money your referrals deposit (1% and 0.5% for 2nd and 3rd tier referrals)&lt;br /&gt;
&lt;br /&gt;
[https://bitmillions.com/ BitMillions - Bitcoin Lottery] Earn bitcoins by sharing your custom affiliate betting address. Earn 20% of house fees for life. Our affiliate program uses a 60 days cookie. Affiliate earnings will be paid btw 1 and 5 blocks, expect real time winnings! Earning are sent without deducting any transaction fee! Banners provided for affiliates. More info at https://bitcointalk.org/index.php?topic=155027.0&lt;br /&gt;
&lt;br /&gt;
[http://www.royalbitcoin.com/ RoyalBitcoin] Earn bitcoins by sharing your custom affiliate betting address.  Affiliates earn 1% of the total volume of bets that are placed through their addresses.  Payments are made daily in BTC.  No minimums or maximums, 1% is paid regardless of whether players have won or lost.&lt;br /&gt;
&lt;br /&gt;
[https://btc-asia.com/ BTC-Asia - Secure Bitcoin Escrows] Earn bitcoins by sharing your affiliate links. Become an affiliate and share 30% of our escrow transaction fees for each completed transaction you refer to us. Banners provided for affiliates. More info at https://bitcointalk.org/index.php?topic=237121.0&lt;br /&gt;
&lt;br /&gt;
===Advertising===&lt;br /&gt;
[http://www.bitvisitor.com/affiliates.php BitVisitor] – Pay users to visit websites.  There’s a 50% revenue share lifetime model.&lt;br /&gt;
&lt;br /&gt;
[https://cpanova.com/ CPAnova] Earn bitcoins by monetizing your premium content, such as videos, pictures, blogs. One of the first fully-featured CPA affiliate network to offer bitcoin payouts. They currently only offer link-locking, but they plan to offer site-locking and virtual-currency tools in the near future. The referral programme offers permanent 5% commissions on affiliates who sign up from your referral link.&lt;br /&gt;
&lt;br /&gt;
===Gambling sites===&lt;br /&gt;
[https://sealswithclubs.eu/affiliates/‎ Seals With Clubs] – Play Bitcoin poker. Earn revenue share from house rake.	&lt;br /&gt;
&lt;br /&gt;
[https://satoshibet.com/affiliate Satoshi Bet] – Bitcoin casino. Earn 25% of house edge of all bets made.&lt;br /&gt;
&lt;br /&gt;
[http://satoshi36.com/affiliate Satoshi36 Bitcoin lottery] Get bitcoins by referring new people to Satoshi36. Enter your bitcoin adress to generate the unique url. You will get 50% of lottery profit from every winning player, who visits the site via your url.&lt;br /&gt;
&lt;br /&gt;
[https://strikesapphire.com/ StrikeSapphire Casino] StrikeSapphire offers professional affiliates up to 35% revenue shares. Affiliates are paid through their StrikeSapphire casino account. The program is only available outside the US. Affiliates are approved individually. To qualify, prospective affiliates must email help (at) StrikeSapphire.com.&lt;br /&gt;
&lt;br /&gt;
[http://satoshiaces.com/ Satoshi Aces Affiliates] Earn upto .045% of the total turnover of all bets from reffered players (25% of the 1.8% house edge). Real-time stats are available through the partner login in the footer link, allowing you to follow numbers of unique deposits, turnover and live earnings from your players.&lt;br /&gt;
&lt;br /&gt;
===Mining===&lt;br /&gt;
[https://cex.io/ref Cex.io] – The first commodity exchange, where you can trade mining facilities for a price set by supply and demand. Cex.io is the cutting edge market for Bitcoin priced and fully maintained GHashes. Receive 3% of your referred user’s GH/s balance.&lt;br /&gt;
&lt;br /&gt;
===Domain hosting===&lt;br /&gt;
[https://www.namecheap.com/affiliates.aspx NameCheap] – One of the leading domain registers which accepts Bitcoins. Earn 15% from a new customer’s purchase. Payout occur 30 days after purchase.&lt;br /&gt;
&lt;br /&gt;
===Consumer Goods===&lt;br /&gt;
[http://bitcoinwine.com Bitcoin Wine] - Premium California Wines for Bitcoin. Affiliates paid out at 10% next day, in Bitcoin. Shipping to US only.&lt;br /&gt;
&lt;br /&gt;
==Additional Affiliate Program Resources==&lt;br /&gt;
[http://affiliates.99bitcoins.com 99 Affiliates] - A blog about Bitcoin affiliate programs. Includes real live use cases and conversion data.&lt;br /&gt;
&lt;br /&gt;
== Bonus programs ==&lt;br /&gt;
&lt;br /&gt;
* [http://bonusbitcoin.weebly.com/ BonusBitcoin List] A list of bitcoin bonus offers. Updated almost every day.&lt;br /&gt;
&lt;br /&gt;
== Offer Programs ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [http://bitbucks.com/ BitBucks] Earn bitcoins by filling out surveys and participating in promotional offers. Roughly 2000+ offers available worldwide: most are free but some require minor deposits (however the bitcoin-payout is usually comparatively larger than the deposit). Some offers require Facebook authentication [no personal information is collected]. The referral system pays 10% commissions on all earnings made by users who use your referral-link. No account is needed and you can earn bitcoins from any computer, phone or tablet.&lt;br /&gt;
&lt;br /&gt;
* [http://www.bitcoinget.com BitcoinGet] Earn bitcoins for watching videos, completing tasks, and completing offers. No signup required. Just enter your Bitcoin address to start earning. No minimum payout. Payments are made daily to reduce transaction fees.&lt;br /&gt;
&lt;br /&gt;
* [http://www.freedigitalmoney.com/Bitcoins Free Digital Money] Earn bitcoins by participating in sponsored offers. There are approximately 1000 offers available. Some offers are free and some require a purchase. Bitcoins are sent to you immediately after you participate in each offer. No account is needed to participate in offers.&lt;br /&gt;
&lt;br /&gt;
* [http://www.iwantfreebitcoins.com iWantFreeBitCoins] Earn bitcoins by participating in sponsored offers. There are approximately 700 offers available. Some offers are free and some require a purchase. You receive a currency called BitPoints added to your balance immediately after you participate in each offer. Your BitPoints can be converted to bitcoins when you request a payout, which will be processed the following Wednesday or Sunday. The referral program pays 25% of everything earned by each user you refer. An account is needed to participate in offers.&lt;br /&gt;
&lt;br /&gt;
* [http://www.rugatu.com/ Rugatu Q&amp;amp;A] Get bitcoins by answering questions that other members have posted. A great way to do some freelancing job if you have an area of expertise and help support the bitcoin community. Sometimes higher value bounties are posted for programmers or media artists. You can login with your existing google, facebook, yahoo or openid account.&lt;br /&gt;
&lt;br /&gt;
* [https://www.trybtc.com/ TryBTC] Features interactive tutorials in which users are given a small amount of Bitcoin to send to charitable causes and share with friends. In the process they are taught about concepts such as wallets, addresses, transactions, and the Bitcoin Blockchain. You get to keep up to 5 cents in BTC at the end.&lt;br /&gt;
&lt;br /&gt;
* [http://btcnews.nl/_bonus/bonus_programmas.php BtcNews.nl] Similar to BitcoinGet. Earn bitcoins by filling out surveys and participating in promotional offers. Roughly 2000+ offers available worldwide: all are free. The referral system pays 10% commissions on all earnings made by users who use your referral-link. No account is needed and you can earn bitcoins from any computer, phone or tablet. At the moment the language is only in Dutch, but all worldwide users can participate when understanding the structure of the page.&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
&lt;br /&gt;
* [[Trade|Bitcoin Businesses]]&lt;/div&gt;</summary>
		<author><name>ChupaChup</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Is_bitcoin_mining_profitable&amp;diff=44488</id>
		<title>Is bitcoin mining profitable</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Is_bitcoin_mining_profitable&amp;diff=44488"/>
		<updated>2014-02-18T10:16:40Z</updated>

		<summary type="html">&lt;p&gt;ChupaChup: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page aims to give a beginners explanation to the question &amp;quot;Is Bitcoin Mining Profitable ?&amp;quot;&lt;br /&gt;
&lt;br /&gt;
===Profitability Variables===&lt;br /&gt;
&lt;br /&gt;
In order to determine the profitability of Bitcoin mining you need to take into account the following parameters:&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Network Hash Rate&#039;&#039;&#039; - What is the combined computing power of all of the network miners.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Network mining difficulty&#039;&#039;&#039; - As more miners join the network the network difficulty increases in order to mine a constant amount of Bitcoins in a given time period.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Electricity rate&#039;&#039;&#039; - How much money are you paying per per KW for running your miner.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Power consumption&#039;&#039;&#039; - How much power is your miner consuming. This is measured in Watts and can be found here.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Time frame&#039;&#039;&#039; - how long are you considering mining for.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Cost of mining hardware&#039;&#039;&#039; - as described.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;BTC conversion rate&#039;&#039;&#039; - this is only important if you want to exchange your BTC to a different currency. If you wish to only gain Bitcoins you can disregard this variable, but since most people want to profit in some other currency it usually is important.&lt;br /&gt;
&lt;br /&gt;
===The problem of profitability decline===&lt;br /&gt;
&lt;br /&gt;
The biggest variable that can not be predicted is how much will the difficulty increase throughout time. This will in turn cause a profitability decline. In order to take this variable into account, several mining profitability calculators have incorporated a &amp;quot;profitability decline&amp;quot; factor. This factor of course is an educated guess at the most.&lt;br /&gt;
&lt;br /&gt;
==The problem of variating BTC exchange rate==&lt;br /&gt;
&lt;br /&gt;
Much like the network&#039;s difficulty, the Bitcoin&#039;s exchange rate can also not be predicted. It may stay the same throughout your predicted time frame, increase or collapse completely. This also makes predictions of mining profitability inaccurate.&lt;br /&gt;
&lt;br /&gt;
===Mining profitability in 2014===&lt;br /&gt;
&lt;br /&gt;
Taking the above mentioned variables into account and considering the Bitcoin network&#039;s leap in difficulty at the end of 2013 it is currently not profitable to mine Bitcoins from your own home. Other alternatives can be mining through a could mining service or mining Altcoins and exchanging them to Bitcoin.&lt;br /&gt;
&lt;br /&gt;
==Bitcoin mining profitability calculators==&lt;br /&gt;
* [http://www.bitcoinx.com/profit/ BitcoinX mining calculator] &lt;br /&gt;
* [http://www.coinwarz.com/cryptocurrency CoinWarz mining calculator]&lt;br /&gt;
&lt;br /&gt;
== External References ==&lt;br /&gt;
* [https://blockchain.info/charts/difficulty Bitcoin difficulty chart]&lt;br /&gt;
* [https://blockchain.info/charts/hash-rate Bitcoin hash rate chart]&lt;br /&gt;
* [http://99bitcoins.com/bitcoin-mining-profitable-beginners-explanation/ Is Bitcoin Mining Profitable - A beginners&#039; explanation]&lt;/div&gt;</summary>
		<author><name>ChupaChup</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Is_bitcoin_mining_profitable&amp;diff=44487</id>
		<title>Is bitcoin mining profitable</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Is_bitcoin_mining_profitable&amp;diff=44487"/>
		<updated>2014-02-18T10:14:28Z</updated>

		<summary type="html">&lt;p&gt;ChupaChup: Create page&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page aims to give a beginners explanation to the question &amp;quot;Is Bitcoin Mining Profitable ?&amp;quot;&lt;br /&gt;
&lt;br /&gt;
===Profitability Variables===&lt;br /&gt;
&lt;br /&gt;
In order to determine the profitability of Bitcoin mining you need to take into account the following parameters:&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Network Hash Rate&#039;&#039;&#039; - What is the combined computing power of all of the network miners.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Network mining difficulty&#039;&#039;&#039; - As more miners join the network the network difficulty increases in order to mine a constant amount of Bitcoins in a given time period.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Electricity rate&#039;&#039;&#039; - How much money are you paying per per KW for running your miner.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Power consumption&#039;&#039;&#039; - How much power is your miner consuming. This is measured in Watts and can be found here.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Time frame&#039;&#039;&#039; - how long are you considering mining for.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Cost of mining hardware&#039;&#039;&#039; - as described.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;BTC conversion rate&#039;&#039;&#039; - this is only important if you want to exchange your BTC to a different currency. If you wish to only gain Bitcoins you can disregard this variable, but since most people want to profit in some other currency it usually is important.&lt;br /&gt;
&lt;br /&gt;
===The problem of profitability decline===&lt;br /&gt;
&lt;br /&gt;
The biggest variable that can not be predicted is how much will the difficulty increase throughout time. This will in turn cause a profitability decline. In order to take this variable into account, several mining profitability calculators have incorporated a &amp;quot;profitability decline&amp;quot; factor. This factor of course is an educated guess at the most.&lt;br /&gt;
&lt;br /&gt;
===Mining profitability in 2014===&lt;br /&gt;
&lt;br /&gt;
Taking the above mentioned variables into account and considering the Bitcoin network&#039;s leap in difficulty at the end of 2013 it is currently not profitable to mine Bitcoins from your own home. Other alternatives can be mining through a could mining service or mining Altcoins and exchanging them to Bitcoin.&lt;br /&gt;
&lt;br /&gt;
==Bitcoin mining profitability calculators==&lt;br /&gt;
* [http://www.bitcoinx.com/profit/ BitcoinX mining calculator] &lt;br /&gt;
* [http://www.coinwarz.com/cryptocurrency CoinWarz mining calculator]&lt;br /&gt;
&lt;br /&gt;
== External References ==&lt;br /&gt;
* [https://blockchain.info/charts/difficulty Bitcoin difficulty chart]&lt;br /&gt;
* [https://blockchain.info/charts/hash-rate Bitcoin hash rate chart]&lt;br /&gt;
* [http://99bitcoins.com/bitcoin-mining-profitable-beginners-explanation/ Is Bitcoin Mining Profitable - A beginners&#039; explanation]&lt;/div&gt;</summary>
		<author><name>ChupaChup</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Buying_Bitcoins_(the_newbie_version)&amp;diff=43526</id>
		<title>Buying Bitcoins (the newbie version)</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Buying_Bitcoins_(the_newbie_version)&amp;diff=43526"/>
		<updated>2013-12-31T10:25:45Z</updated>

		<summary type="html">&lt;p&gt;ChupaChup: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page aims to be the best resource for new users to understand how to buy Bitcoins.&lt;br /&gt;
The existing [[Buying bitcoins]] page is too complex, and not transparent enough for new investors.&lt;br /&gt;
Be extremely careful when buying bitcoins from not accredited websites or individuals. Like in the real world there are many scammers around.&lt;br /&gt;
&lt;br /&gt;
For more information on buying bitcoins with your credit card, please see the wikipedia page, [https://en.bitcoin.it/wiki/How_To_Buy_Bitcoins_With_Your_Credit_Card How To Buy Bitcoins With Your Credit Card], which is dedicated to that payment method.&lt;br /&gt;
&lt;br /&gt;
{{Counterparty-warning}}&lt;br /&gt;
&lt;br /&gt;
===Local Bitcoins===&lt;br /&gt;
 &lt;br /&gt;
[http://localbtc.com Local Bitcoins] allow seller and buyers who are located nearby to meet and exchange Bitcoins through various methods including cash, wire transfer, Money Bookers, Skrill  and more. Local Bitcoins offer a [https://en.bitcoin.it/wiki/Bitcoin_Escrow_Service Bitcoin escrow] services that holds the funds until the transaction is complete, therefore reducing fraud.&lt;br /&gt;
&lt;br /&gt;
=== Cash (US) ===&lt;br /&gt;
[[File:BitQuickco.png|20px|link=https://www.bitquick.co]] [https://www.bitquick.co BitQuick.co] ([https://en.bitcoin.it/wiki/BitQuick.co info)] allows sellers to connect to buyers via cash deposit or SEPA transfer. You can buy bitcoin instantly by providing only your email address and bitcoin address. As soon as the deposit is received, the bitcoin are sent.&lt;br /&gt;
&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
[https://www.bitbrothersllc.com BitBothers LLC] allows customers and bitcoiners to purchase bitcoins by either sending in cash, money orders, cashiers checks, or MONEYGRAM to a designated location. Bitcoiners can also deposit money directly into one of the corporate business accounts increasing the transaction time to less than an hour. These methods of payments are avaliable to ensure anonymity and protect the ideals bitcoins were founded on. For customers who wish to preform bank transfers, the option will be avaliable shortly. BitBrothers LLC gurantees that all customers will be satisfied with their exquisite customer service and overall experience that they are even offering discounts to select customers!&lt;br /&gt;
&lt;br /&gt;
=== Cash (International) ===&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[File:BIPS.gif|20px|link=https://bips.me]] [https://bips.me BIPS] are able to accommodate most request.&lt;br /&gt;
&lt;br /&gt;
[https://www.bitbrothersllc.com BitBrothersLLC] allows customers to either send cash, money orders, cashiers checks, or MONEYGRAM. Prompted by incredibly fast customer service and the most anonymity in the entire industry!&lt;br /&gt;
&lt;br /&gt;
[[File:BitQuickco.png|20px|link=https://www.bitquick.co]] [https://www.bitquick.co BitQuick.co] ([https://en.bitcoin.it/wiki/BitQuick.co info)] allows sellers to connect to buyers via cash deposit or SEPA transfer. You can buy bitcoin instantly by providing only your email address and bitcoin address. As soon as the deposit is received, the bitcoin are sent.&lt;br /&gt;
&lt;br /&gt;
[https://localbitcoins.com LocalBitcoins.com] offers person-to-person cash exchanging, cash deposits and cash by mail. Site reputation system protects you against fraud and scammers. Quick and easy for direct Cash Exchange, beware of Online Exchange Scammers.&lt;br /&gt;
&lt;br /&gt;
=== Cash (AU) ===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
[[File:BXlogoSM.jpeg|link=http://bitXoin.com]]  [http://bitXoin.com bitXoin] ([[bitXoin|info]]) Buy bitcoin via online ordering and bank deposit, cash over the counter at most banks throughout Australia.  Fast processing, low reference rate, low commissions.  &lt;br /&gt;
&lt;br /&gt;
[https://www.getbitcoin.com.au Bitcoin (Australia)] - pay by cash over the counter at local bank branches.&lt;br /&gt;
&lt;br /&gt;
=== Via Bank Transfer (US) ===&lt;br /&gt;
[https://coinbase.com/?r=514b6eb6a18f2fdde50000db&amp;amp;utm_campaign=user-referral&amp;amp;src=referral-link Coinbase] allows you to buy and sell bitcoin by connecting any U.S. bank account. You can start buying right away if you choose instant account verification.&lt;br /&gt;
&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
[[File:BIPS.gif|20px|link=https://bips.me]] [https://bips.me BIPS] Please make sure you read up, on how to validate your bank account.&lt;br /&gt;
&lt;br /&gt;
[https://www.bitbrothersllc.com BitBothers LLC] allows customers and bitcoiners to purchase bitcoins by either sending in cash, money orders, cashiers checks, or MONEYGRAM to a designated location. Bitcoiners can also deposit money directly into one of the corporate business accounts increasing the transaction time to less than an hour. These methods of payments are available to ensure anonymity and protect the ideals bitcoins were founded on. For customers who wish to preform BANK TRANSFERS, the option will be available shortly. BitBrothers LLC guarantees that all customers will be satisfied with their exquisite customer service and overall experience that they are even offering discounts to select customers!&lt;br /&gt;
&lt;br /&gt;
[https://www.bitcoinbycc.com BBCC] allows you to buy bitcoins using a bank account located in any country. There is no account verification needed, and no records are kept of any transactions. We use AES-256 encryption for each and every communication, your anonymity is paramount.&lt;br /&gt;
&lt;br /&gt;
[https://kraken.com Kraken] allows verified users to buy and sell bitcoin using USD and EUR by depositing via wire transfer. Other national currencies can be converted to USD or EUR at transfer. Kraken is an exchange and the market is determined by orders.&lt;br /&gt;
&lt;br /&gt;
=== Via Gift Card (US) ===&lt;br /&gt;
[https://giftcarddrainer.com GiftCardDrainer.com] allows you to buy bitcoin with Visa, MasterCard, American Express or Discover gift cards. Uses the exchange rate provided by coinbase.com at the time that the customer&#039;s gift card is processed within 24 hours of card submission. Most cards are processed within a few hours of submission, however it can take up to 24 hours. Customer must provide a bank account number for identity verification.&lt;br /&gt;
&lt;br /&gt;
=== Via SEPA Bank Transfer (EU) ===&lt;br /&gt;
&lt;br /&gt;
[[File:BitQuickco.png|20px|link=https://www.bitquick.co]] [https://www.bitquick.co BitQuick.co] ([https://en.bitcoin.it/wiki/BitQuick.co info)] allows sellers to connect to buyers via cash deposit or SEPA transfer. You can buy bitcoin instantly by providing only your email address and bitcoin address. As soon as the deposit is received, the bitcoin are sent.&lt;br /&gt;
&lt;br /&gt;
[[File:BIPS.gif|20px|link=https://bips.me]] [https://bips.me BIPS] All we require is a simple verification process that usually takes less than 2 business days to complete.&lt;br /&gt;
&lt;br /&gt;
[[File:favicon_b4c.jpg|20px|link=https://bit4coin.net]] [https://bit4coin.net bit4coin.net] ([[bit4coin|info]]) Buy bitcoins with bit4coin gift vouchers. Easy to use online shop experience, and the vouchers will be delivered to your doorstep. [https://bit4coin.net bit4coin.net] guides you through the entire process of redeeming the voucher and getting your first bitcoins - and the voucher doubles up as a great gift, too!&lt;br /&gt;
&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
[https://kraken.com Kraken] allows verified users to deposit via SEPA transfer. Transfers can take as little as one business day to arrive in the account. Kraken is an exchange, and the market is specific to open orders on the site.&lt;br /&gt;
&lt;br /&gt;
[http://www.belgacoin.com Belgacoin] allows you to buy bitcoins via SEPA transfer. It is fast, secure and cheap. No registration needed. We do not charge anything for this service, for the time being.&lt;br /&gt;
&lt;br /&gt;
=== Via IDeal (NL) ===&lt;br /&gt;
[https://bitonic.nl Bitonic] allows you to buy bitcoins with IDEAL.&lt;br /&gt;
&lt;br /&gt;
[http://www.happycoins.nl HappyCoins] allows you to buy Bitcoins with iDEAL and SEPA bank transfer.&lt;br /&gt;
&lt;br /&gt;
=== Via mobile phone ===&lt;br /&gt;
[https://www.bitcoinbymobile.com/ BitcoinByMobile.com] allows you to buy small amounts of Bitcoin instantly by charging the purchase directly to your mobile phone bill (or from your prepaid balance). The service works in most of Europe (see: [http://www.bitcoinbymobile.com/where-it-works bitcoinbymobile.com/where-it-works]). Most purchases are completed with the Bitcoins delivered in under 90 seconds.&lt;br /&gt;
&lt;br /&gt;
=== Via MoneyGram (International) ===&lt;br /&gt;
[https://www.bitcoi.com/en/ Bitcoini.com] You can buy bitcoins with MoneyGram worldwide. Quick, easy and secure.&lt;br /&gt;
&lt;br /&gt;
[[File:BIPS.gif|20px|link=https://bips.me]] [https://bips.me BIPS] CVS, 7-11, Walmart, MoneyGram&lt;br /&gt;
&lt;br /&gt;
[https://www.bitbrothersllc.com BitBrothersLLC] Buy bitcoins with MoneyGram anywhere in the U.S.&lt;br /&gt;
&lt;br /&gt;
=== Via Money Transfer ===&lt;br /&gt;
[https://www.bitbrothersllc.com BitBothers LLC] allows customers and bitcoiners to purchase bitcoins by either sending in cash, money orders, cashiers checks, or MONEYGRAM to a designated location. Bitcoiners can also deposit money directly into one of the corporate business accounts increasing the transaction time to less than an hour. These methods of payments are avaliable to ensure anonymity and protect the ideals bitcoins were founded on. For customers who wish to preform bank transfers, the option will be avaliable shortly. BitBrothers LLC gurantees that all customers will be satisfied with their exquisite customer service and overall experience that they are even offering discounts to select customers!&lt;br /&gt;
&lt;br /&gt;
You can buy Bitcoins with a Western Union or MoneyGram money transfer via [http://www.coinmama.com/ coinmama.com].&lt;br /&gt;
&lt;br /&gt;
=== Finding a direct seller online ===&lt;br /&gt;
[https://www.bitbrothersllc.com BitBothers LLC] allows customers and bitcoiners to purchase bitcoins by either sending in cash, money orders, cashiers checks, or MONEYGRAM to a designated location. Bitcoiners can also deposit money directly into one of the corporate business accounts increasing the transaction time to less than an hour. These methods of payments are avaliable to ensure anonymity and protect the ideals bitcoins were founded on. For customers who wish to preform bank transfers, the option will be avaliable shortly. BitBrothers LLC gurantees that all customers will be satisfied with their exquisite customer service and overall experience that they are even offering discounts to select customers!&lt;br /&gt;
&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
If you can find another person that is willing to sell them to you, you can transfer him money via whatever method (including PayPal), and he&#039;ll send you the Bitcoins. The following websites can be used to find direct sellers online  [[Bitcoin OTC]], [https://www.bitcoinary.com/ Bitcoinary] or the [https://bitcointalk.org/index.php?board=53.0 Currency Exchange Forum Section]. Be extremely cautious when using those methods, the best way is to ask an admin, moderator or a trusted person. Bitcoins are now also available at [http://www.amazon.com/gp/product/B00CPCHACM Amazon]. The seller only sells in low volumes so far, but it is a great way to turn amazon gift cards into bitcoin with no hassle, and probably one of the first ways to obtain bitcoin with a debit card or credit card.&lt;br /&gt;
&lt;br /&gt;
=== Physical Trading ===&lt;br /&gt;
[https://www.bitbrothersllc.com BitBothers LLC] LOCAL PURCHASES IN COLORADO. We also accept MONEYGRAM&lt;br /&gt;
&lt;br /&gt;
You might be able to find an individual you can [https://localbitcoins.com Buy bitcoins locally].&lt;br /&gt;
Always choose somebody with many reviews.&lt;br /&gt;
&lt;br /&gt;
=== Anonymity ===&lt;br /&gt;
There is a HUGE demand for buying Bitcoins off the grid due to ever-increasing government regulations and private agency intrusions and discrimination against alternative currencies. &lt;br /&gt;
Due to the possibility of facial recognition cameras at banks and the paper trail involved with credit cards, there are very few options to have high levels of anonymity when buying Bitcoins those ways. DNA, Fingerprints, phone and internet records, audio and video records will not be discussed, but they all are possible tools which attackers could use to uncloak even the stealthiest Bitcoin buyer.&lt;br /&gt;
There are a couple known ways, depending on your location, to buy Bitcoins outside of the standard banking system with relatively high anonymity.&lt;br /&gt;
Buying locally with cash using a burner or payphone allows a high level of anonymity with the exchange being the weakest link.&lt;br /&gt;
Many sellers online will also trade Bitcoins for [[MoneyPak]] codes or other cash-like gift codes which can be bought at a local store with cash.&lt;br /&gt;
Another way to buy Bitcoins with a high level of anonymity is by sending cash in the mail.&lt;br /&gt;
&lt;br /&gt;
=== Bitinstant ===&lt;br /&gt;
Extremely unreliable service. Taken down indefinitely as of 12:25 AM GMT 07/15/13.&lt;br /&gt;
&lt;br /&gt;
=== Exchanges ===&lt;br /&gt;
&lt;br /&gt;
The largest and most trusted exchange is [[MtGox]]. For a list of other major exchanges see [[Buying_bitcoins#Major_Exchanges|Major Exchanges]]&lt;br /&gt;
&lt;br /&gt;
== Avoiding Scams ==&lt;br /&gt;
Before using any service it is a good idea to look for reviews and feedback from previous customers. This can be done by simply googling the name of the website or company. The bitcointalk forums are also a good place to find discussions and reviews about services. &lt;br /&gt;
&lt;br /&gt;
==Exchange Directories==&lt;br /&gt;
* [http://howtobuybitcoins.com/ HowToBuyBitcoins.com] &lt;br /&gt;
* [http://howtobuybitcoins.info/ HowToBuyBitcoins.info]&lt;br /&gt;
&lt;br /&gt;
== Links ==&lt;br /&gt;
* http://bitcoin.stackexchange.com/questions/91/how-do-you-obtain-bitcoins&lt;br /&gt;
* http://bitcoin.stackexchange.com/questions/4194/whats-the-best-way-to-buy-bitcoin-noob-friendly&lt;br /&gt;
* [[Buying bitcoins]]&lt;br /&gt;
* http://www.reddit.com/r/Bitcoin/comments/nzg4o/the_canonical_newbie_guide_to_bitcoin/c3d5tmc&lt;br /&gt;
* https://en.bitcoin.it/wiki/BitcoinByCC&lt;br /&gt;
* https://en.bitcoin.it/wiki/How_To_Buy_Bitcoins_With_Your_Credit_Card&lt;br /&gt;
&lt;br /&gt;
[[Category:Introduction]]&lt;/div&gt;</summary>
		<author><name>ChupaChup</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Buying_Bitcoins_(the_newbie_version)&amp;diff=42968</id>
		<title>Buying Bitcoins (the newbie version)</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Buying_Bitcoins_(the_newbie_version)&amp;diff=42968"/>
		<updated>2013-12-08T20:47:23Z</updated>

		<summary type="html">&lt;p&gt;ChupaChup: /* Local Bitcoins */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page aims to be the best resource for new users to understand how to buy Bitcoins.&lt;br /&gt;
The existing [[Buying bitcoins]] page is too complex, and not transparent enough for new investors.&lt;br /&gt;
Be extremely careful when buying bitcoins from not accredited websites or individuals. Like in the real world there are many scammers around.&lt;br /&gt;
&lt;br /&gt;
For more information on buying bitcoins with your credit card, please see the wikipedia page, [https://en.bitcoin.it/wiki/How_To_Buy_Bitcoins_With_Your_Credit_Card How To Buy Bitcoins With Your Credit Card], which is dedicated to that payment method.&lt;br /&gt;
&lt;br /&gt;
{{Counterparty-warning}}&lt;br /&gt;
&lt;br /&gt;
===PayPal===&lt;br /&gt;
[http://bitcoin.stackexchange.com/questions/2293/how-can-i-buy-bitcoin-via-a-credit-card-or-paypal You can&#039;t directly buy Bitcoins using PayPal], because it is risky for the seller, and therefore few sellers will offer this. There are basically 3 reasons for that:&lt;br /&gt;
* The buyer of bitcoins can always perform a chargeback and there is no way for the seller to contest that&lt;br /&gt;
* There are many hacked accounts and when PayPal realizes that such an account has been fraudulently used, they will also perform a chargeback&lt;br /&gt;
* PayPal doesn&#039;t like bitcoin, as the bitcoin network is in direct competition to it? . They will ban accounts that have anything to do with Bitcoins, and freeze their balance.&lt;br /&gt;
&lt;br /&gt;
Having said that there is a [http://bitcoinwithpaypal.com workaround] that can be done in order to use Paypal to buy Bitcoins but it holds within it higher transaction fees. Using the [http://VirrWox.com Virtual World Exchange] you can buy Second Life Lindens (SLL) with Paypal and then convert your SLL to Bitcoins. This process will charge you transaction fees of around 6% but will let you purchase Bitcoins pretty quickly as opposed to a wire transfer. The reason this method works is because you do not buy Bitcoins with Paypal directly, you only buy SLL with Paypal (which is acceptable by Paypal&#039;s TOS) and then exchange your SLL to Bitcoin.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Note:&#039;&#039;&#039; If you only want to take advantage of Bitcoin&#039;s price volatility You can trade CFDs on Bitcoin via Paypal on sites like [http://Ava-Trade.co.uk AvaTrade] or [http://bitcoinwithpaypal.com/plus500 Plus500]. When trading online your capital may be at risk. Trading CFDs is suitable for more experienced traders.&lt;br /&gt;
&lt;br /&gt;
===Local Bitcoins===&lt;br /&gt;
[http://local-btc.com Local Bitcoins] allow seller and buyers who are located nearby to meet and exchange Bitcoins through various methods including cash, wire transfer, Money Bookers, Skrill  and more. Local Bitcoins offer a [https://en.bitcoin.it/wiki/Bitcoin_Escrow_Service Bitcoin escrow] services that holds the funds until the transaction is complete, therefore reducing fraud.&lt;br /&gt;
&lt;br /&gt;
=== Cash (US) ===&lt;br /&gt;
[[File:BitQuickco.png|20px|link=https://www.bitquick.co]] [https://www.bitquick.co BitQuick.co] ([https://en.bitcoin.it/wiki/BitQuick.co info)] allows sellers to connect to buyers via cash deposit or SEPA transfer. You can buy bitcoin instantly by providing only your email address and bitcoin address. As soon as the deposit is received, the bitcoin are sent.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
[https://www.bitbrothersllc.com BitBothers LLC] allows customers and bitcoiners to purchase bitcoins by either sending in cash, money orders, cashiers checks, or MONEYGRAM to a designated location. Bitcoiners can also deposit money directly into one of the corporate business accounts increasing the transaction time to less than an hour. These methods of payments are avaliable to ensure anonymity and protect the ideals bitcoins were founded on. For customers who wish to preform bank transfers, the option will be avaliable shortly. BitBrothers LLC gurantees that all customers will be satisfied with their exquisite customer service and overall experience that they are even offering discounts to select customers!&lt;br /&gt;
&lt;br /&gt;
=== Cash (International) ===&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
[[File:BIPS.gif|20px|link=https://bips.me]] [https://bips.me BIPS] are able to accommodate most request.&lt;br /&gt;
&lt;br /&gt;
[https://www.bitbrothersllc.com BitBrothersLLC] allows customers to either send cash, money orders, cashiers checks, or MONEYGRAM. Prompted by incredibly fast customer service and the most anonymity in the entire industry!&lt;br /&gt;
&lt;br /&gt;
[[File:BitQuickco.png|20px|link=https://www.bitquick.co]] [https://www.bitquick.co BitQuick.co] ([https://en.bitcoin.it/wiki/BitQuick.co info)] allows sellers to connect to buyers via cash deposit or SEPA transfer. You can buy bitcoin instantly by providing only your email address and bitcoin address. As soon as the deposit is received, the bitcoin are sent.&lt;br /&gt;
&lt;br /&gt;
[https://localbitcoins.com LocalBitcoins.com] offers person-to-person cash exchanging, cash deposits and cash by mail. Site reputation system protects you against fraud and scammers. Quick and easy for direct Cash Exchange, beware of Online Exchange Scammers.&lt;br /&gt;
&lt;br /&gt;
=== Cash (AU) ===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
[[File:BXlogoSM.jpeg|link=http://bitXoin.com]]  [http://bitXoin.com bitXoin] ([[bitXoin|info]]) Buy bitcoin via online ordering and bank deposit, cash over the counter at most banks throughout Australia.  Fast processing, low reference rate, low commissions.  &lt;br /&gt;
&lt;br /&gt;
[https://www.getbitcoin.com.au Bitcoin (Australia)] - pay by cash over the counter at local bank branches.&lt;br /&gt;
&lt;br /&gt;
=== Via Bank Transfer (US) ===&lt;br /&gt;
[https://coinbase.com/?r=514b6eb6a18f2fdde50000db&amp;amp;utm_campaign=user-referral&amp;amp;src=referral-link Coinbase] allows you to buy and sell bitcoin by connecting any U.S. bank account. You can start buying right away if you choose instant account verification.&lt;br /&gt;
&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
[[File:BIPS.gif|20px|link=https://bips.me]] [https://bips.me BIPS] Please make sure you read up, on how to validate your bank account.&lt;br /&gt;
&lt;br /&gt;
[https://www.bitbrothersllc.com BitBothers LLC] allows customers and bitcoiners to purchase bitcoins by either sending in cash, money orders, cashiers checks, or MONEYGRAM to a designated location. Bitcoiners can also deposit money directly into one of the corporate business accounts increasing the transaction time to less than an hour. These methods of payments are available to ensure anonymity and protect the ideals bitcoins were founded on. For customers who wish to preform BANK TRANSFERS, the option will be available shortly. BitBrothers LLC guarantees that all customers will be satisfied with their exquisite customer service and overall experience that they are even offering discounts to select customers!&lt;br /&gt;
&lt;br /&gt;
[https://www.bitcoinbycc.com BBCC] allows you to buy bitcoins using a bank account located in any country. There is no account verification needed, and no records are kept of any transactions. We use AES-256 encryption for each and every communication, your anonymity is paramount.&lt;br /&gt;
&lt;br /&gt;
[https://kraken.com Kraken] allows verified users to buy and sell bitcoin using USD and EUR by depositing via wire transfer. Other national currencies can be converted to USD or EUR at transfer. Kraken is an exchange and the market is determined by orders.&lt;br /&gt;
&lt;br /&gt;
=== Via Gift Card (US) ===&lt;br /&gt;
[https://giftcarddrainer.com GiftCardDrainer.com] allows you to buy bitcoin with Visa, MasterCard, American Express or Discover gift cards. Uses the exchange rate provided by coinbase.com at the time that the customer&#039;s gift card is processed within 24 hours of card submission. Most cards are processed within a few hours of submission, however it can take up to 24 hours. Customer must provide a bank account number for identity verification.&lt;br /&gt;
&lt;br /&gt;
=== Via SEPA Bank Transfer (EU) ===&lt;br /&gt;
&lt;br /&gt;
[[File:BitQuickco.png|20px|link=https://www.bitquick.co]] [https://www.bitquick.co BitQuick.co] ([https://en.bitcoin.it/wiki/BitQuick.co info)] allows sellers to connect to buyers via cash deposit or SEPA transfer. You can buy bitcoin instantly by providing only your email address and bitcoin address. As soon as the deposit is received, the bitcoin are sent.&lt;br /&gt;
&lt;br /&gt;
[[File:BIPS.gif|20px|link=https://bips.me]] [https://bips.me BIPS] All we require is a simple verification process that usually takes less than 2 business days to complete.&lt;br /&gt;
&lt;br /&gt;
[[File:favicon_b4c.jpg|20px|link=https://bit4coin.net]] [https://bit4coin.net bit4coin.net] ([[bit4coin|info]]) Buy bitcoins with bit4coin gift vouchers. Easy to use online shop experience, and the vouchers will be delivered to your doorstep. [https://bit4coin.net bit4coin.net] guides you through the entire process of redeeming the voucher and getting your first bitcoins - and the voucher doubles up as a great gift, too!&lt;br /&gt;
&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
[https://kraken.com Kraken] allows verified users to deposit via SEPA transfer. Transfers can take as little as one business day to arrive in the account. Kraken is an exchange, and the market is specific to open orders on the site.&lt;br /&gt;
&lt;br /&gt;
=== Via IDeal (NL) ===&lt;br /&gt;
[https://bitonic.nl Bitonic] allows you to buy bitcoins with IDEAL.&lt;br /&gt;
&lt;br /&gt;
[http://www.happycoins.nl HappyCoins] allows you to buy Bitcoins with iDEAL and SEPA bank transfer.&lt;br /&gt;
&lt;br /&gt;
=== Via mobile phone ===&lt;br /&gt;
[https://www.bitcoinbymobile.com/ BitcoinByMobile.com] allows you to buy small amounts of Bitcoin instantly by charging the purchase directly to your mobile phone bill (or from your prepaid balance). The service works in most of Europe (see: [http://www.bitcoinbymobile.com/where-it-works bitcoinbymobile.com/where-it-works]). Most purchases are completed with the Bitcoins delivered in under 90 seconds.&lt;br /&gt;
&lt;br /&gt;
=== Via MoneyGram (International) ===&lt;br /&gt;
[https://www.bitcoi.com/en/ Bitcoini.com] You can buy bitcoins with MoneyGram worldwide. Quick, easy and secure.&lt;br /&gt;
&lt;br /&gt;
[[File:BIPS.gif|20px|link=https://bips.me]] [https://bips.me BIPS] CVS, 7-11, Walmart, MoneyGram&lt;br /&gt;
&lt;br /&gt;
[https://www.bitbrothersllc.com BitBrothersLLC] Buy bitcoins with MoneyGram anywhere in the U.S.&lt;br /&gt;
&lt;br /&gt;
=== Via Money Transfer ===&lt;br /&gt;
[https://www.bitbrothersllc.com BitBothers LLC] allows customers and bitcoiners to purchase bitcoins by either sending in cash, money orders, cashiers checks, or MONEYGRAM to a designated location. Bitcoiners can also deposit money directly into one of the corporate business accounts increasing the transaction time to less than an hour. These methods of payments are avaliable to ensure anonymity and protect the ideals bitcoins were founded on. For customers who wish to preform bank transfers, the option will be avaliable shortly. BitBrothers LLC gurantees that all customers will be satisfied with their exquisite customer service and overall experience that they are even offering discounts to select customers!&lt;br /&gt;
&lt;br /&gt;
You can buy Bitcoins with a Western Union or MoneyGram money transfer via [http://www.coinmama.com/ coinmama.com].&lt;br /&gt;
&lt;br /&gt;
=== Finding a direct seller online ===&lt;br /&gt;
[https://www.bitbrothersllc.com BitBothers LLC] allows customers and bitcoiners to purchase bitcoins by either sending in cash, money orders, cashiers checks, or MONEYGRAM to a designated location. Bitcoiners can also deposit money directly into one of the corporate business accounts increasing the transaction time to less than an hour. These methods of payments are avaliable to ensure anonymity and protect the ideals bitcoins were founded on. For customers who wish to preform bank transfers, the option will be avaliable shortly. BitBrothers LLC gurantees that all customers will be satisfied with their exquisite customer service and overall experience that they are even offering discounts to select customers!&lt;br /&gt;
&lt;br /&gt;
[https://www.Cryptxchange.com Cryptxchange] allows you to buy bitcoins by depositing cash at a local bank, or by sending a wire transfer. Low rates, fast customer service, no account verification or creation needed. Average transaction time of 30 minutes depending on the time of the day. We recently automated every step of the process, with our record transaction standing at three minutes. In the future we hope to get our average transaction time down to five minutes.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
If you can find another person that is willing to sell them to you, you can transfer him money via whatever method (including PayPal), and he&#039;ll send you the Bitcoins. The following websites can be used to find direct sellers online  [[Bitcoin OTC]], [https://www.bitcoinary.com/ Bitcoinary] or the [https://bitcointalk.org/index.php?board=53.0 Currency Exchange Forum Section]. Be extremely cautious when using those methods, the best way is to ask an admin, moderator or a trusted person. Bitcoins are now also available at [http://www.amazon.com/gp/product/B00CPCHACM Amazon]. The seller only sells in low volumes so far, but it is a great way to turn amazon gift cards into bitcoin with no hassle, and probably one of the first ways to obtain bitcoin with a debit card or credit card.&lt;br /&gt;
&lt;br /&gt;
=== Physical Trading ===&lt;br /&gt;
[https://www.bitbrothersllc.com BitBothers LLC] LOCAL PURCHASES IN COLORADO. We also accept MONEYGRAM&lt;br /&gt;
&lt;br /&gt;
You might be able to find an individual you can [https://localbitcoins.com Buy bitcoins locally].&lt;br /&gt;
Always choose somebody with many reviews.&lt;br /&gt;
&lt;br /&gt;
=== Anonymity ===&lt;br /&gt;
There is a HUGE demand for buying Bitcoins off the grid due to ever-increasing government regulations and private agency intrusions and discrimination against alternative currencies. &lt;br /&gt;
Due to the possibility of facial recognition cameras at banks and the paper trail involved with credit cards, there are very few options to have high levels of anonymity when buying Bitcoins those ways. DNA, Fingerprints, phone and internet records, audio and video records will not be discussed, but they all are possible tools which attackers could use to uncloak even the stealthiest Bitcoin buyer.&lt;br /&gt;
There are a couple known ways, depending on your location, to buy Bitcoins outside of the standard banking system with relatively high anonymity.&lt;br /&gt;
Buying locally with cash using a burner or payphone allows a high level of anonymity with the exchange being the weakest link.&lt;br /&gt;
Many sellers online will also trade Bitcoins for [[MoneyPak]] codes or other cash-like gift codes which can be bought at a local store with cash.&lt;br /&gt;
Another way to buy Bitcoins with a high level of anonymity is by sending cash in the mail.&lt;br /&gt;
&lt;br /&gt;
=== Bitinstant ===&lt;br /&gt;
Extremely unreliable service. Taken down indefinitely as of 12:25 AM GMT 07/15/13.&lt;br /&gt;
&lt;br /&gt;
=== Exchanges ===&lt;br /&gt;
&lt;br /&gt;
The largest and most trusted exchange is [[MtGox]]. For a list of other major exchanges see [[Buying_bitcoins#Major_Exchanges|Major Exchanges]]&lt;br /&gt;
&lt;br /&gt;
== Avoiding Scams ==&lt;br /&gt;
Before using any service it is a good idea to look for reviews and feedback from previous customers. This can be done by simply googling the name of the website or company. The bitcointalk forums are also a good place to find discussions and reviews about services. &lt;br /&gt;
&lt;br /&gt;
==Exchange Directories==&lt;br /&gt;
* [http://howtobuybitcoins.com/ HowToBuyBitcoins.com] &lt;br /&gt;
* [http://howtobuybitcoins.info/ HowToBuyBitcoins.info]&lt;br /&gt;
&lt;br /&gt;
== Links ==&lt;br /&gt;
* http://bitcoin.stackexchange.com/questions/91/how-do-you-obtain-bitcoins&lt;br /&gt;
* http://bitcoin.stackexchange.com/questions/4194/whats-the-best-way-to-buy-bitcoin-noob-friendly&lt;br /&gt;
* [[Buying bitcoins]]&lt;br /&gt;
* http://www.reddit.com/r/Bitcoin/comments/nzg4o/the_canonical_newbie_guide_to_bitcoin/c3d5tmc&lt;br /&gt;
* https://en.bitcoin.it/wiki/BitcoinByCC&lt;br /&gt;
* https://en.bitcoin.it/wiki/How_To_Buy_Bitcoins_With_Your_Credit_Card&lt;br /&gt;
&lt;br /&gt;
[[Category:Introduction]]&lt;/div&gt;</summary>
		<author><name>ChupaChup</name></author>
	</entry>
</feed>