By Moshe Luna
Currency - a medium of exchange, nothing more
If the day gold died, in what later became known as the Nixon Shock, hasn't stopped the financial world from spinning, why would currency going digital send shockwaves throughout the global economy? Since the beginning of its existence, money has continually transformed and evolved, but at its core it always remained a medium of exchange. Economists see currency as widely accepted legal tender issued by a government and circulating within an economy of a country. But what would happen if "government" and "country" were taken out of the definition? Up until not long ago, that was technologically impractical and scientifically impossible.
And then a mysterious new technology emerged
Seemingly out of nowhere, but actually the result of a few decades of research and development by many unknown computer science scientists around the world. In fact, the first digital currencies, or at least the concept, existed as early as the mid 90s, around the time the Internet was fully commercialized. Essentially, they all suffered from one major drawback that led to their inevitable demise. They all required a central, trusted third party to administer the issuance of new units and reconcile payments at the end of the day.
So how is Bitcoin so different?
Bitcoin emerged in 2009 as the creation of a person under the pseudonym Satoshi Nakamoto. It became the world's first fully operational, decentralized, peer-to-peer, digital currency system. Being decentralized, intrinsically means being self-organizing, a phenomena in which local individuals achieve global goals without central planning or influence. Although decentralized systems can be found in nature, the concept is not easy to grasp in its monetary context, as we are so used to the voice of central governments and financial institutions orchestrating our economic lives.
Computer networks and the Byzantine Empire
From a computer science perspective, establishing trust between unrelated parties over an untrusted network (like the Internet), is part of a set of problems known as the Byzantine Generals Problem. The Byzantine army was chosen to illustrate the problem because it had suffered recurrent treacheries among the high ranks of its military command. Imagine several divisions of the Byzantine army camped around an enemy city, each division is led by its own general. Due to geographic obstacles, the generals can communicate with each other only through messengers. In order to achieve victory, the generals must decide upon a common strategy unanimously. However, some of the generals may be traitors and will try to prevent the loyal generals from reaching consensus. If the traitors succeed the attack is doomed to fail.
Fast-forwarding 561 years to the time of this article
So how did Bitcoin manage to build a trust component that will avert unfair dealing in a decentralized, peer-to-peer network? The simple answer is by successfully implementing and combining two mechanisms known as 'digital signature' and 'proof of work'. The former proves the authenticity of each transaction, so to spend money, you first have to prove you are the rightful owner of the money. The latter manages the issuances of new Bitcoin units (aka "mining") and reconciles all transactions over a fixed period of time (aka "blockchain").
The concepts that lie behind Bitcoin - simplified
1.Bitcoin address in its most abstract form is the parallel to a bank account. It is identified by a long sequence of letter and numbers, similar to your bank account number. Each Bitcoin address has its own balance of Bitcoins. But remember, since we're dealing with a decentralized network, there are no centralized entities such as banks in the picture.
2.Bitcoin wallet is a piece of software that runs on your computer, mobile device or hosted online. The wallet grants you access to your set of Bitcoin addresses. In a similar way to email addresses, you can use your wallet to "open" as many "accounts" as you wish at no cost. In fact, it doesn't even require an Internet connection to create a new Bitcoin address, as the number of available addresses is almost as high as the number of atoms in the entire world. So the chance someone else already taken your address is nearly zero.
3.Ledger balance. At this point you must wonder, if there's no central entity in the picture, who keeps track of the accounts and their corresponding balances? Well, a copy of the ledger is maintained on each and every wallet that forms part of the Bitcoin network. Differently than your bank account, where you have access only to your transactions, your Bitcoin wallet stores all the Bitcoin transactions ever made since it all began in 2009.
4.Bitcoin transactions. In order for you to send X units of Bitcoin from your address to a recipient address, all your wallet has to do is broadcast the network that X units should be subtracted from your address and respectively added to the recipient address. Wallets, or "nodes" in the Bitcoin network, will apply that transaction to their copy of the ledger, then pass on the transaction to other nodes, until all nodes in the network are updated.
5.Et voilà - this is all there is to it.
The concepts that lie behind Bitcoin - less simplified
Digital signatures 101
As mentioned earlier, in order to spend Bitcoin funds, a sender has to prove his authenticity (rightful ownership of the funds) by adding a digital signature to his transactions. The authenticity mechanism is achieved by implementing a mathematical model called "public-key cryptography." Here's how it works:
1.Hash function is a mathematical function that takes an input message of arbitrary length (transaction, in our context) and transforms it into a fixed length output called 'hash'.
2.Encryption scheme is the process of turning a readable plain text message into an unreadable ciphered text, using an encryption key that specifies how the message is to be encoded.
3.Public key and private key is a mathematically related key pair that possesses an interesting mathematical property; a private key signature can only be verified by its matching public key.
4.Bitcoin address (revised) is actually a key pair. The private key is known only to its proprietor and is used to digitally sign transactions. The public address is shared with the network and is used by its members to verify the authenticity of a transaction.
5.Alice, Bob and Eve are the three archetypal characters in the field of cryptography. They represent party A trying to send a message to party B while a malicious Eavesdropper attempts to tamper with their message. Below is a breakdown of how math achieves authentication:
•Alice wishes to send one Bitcoin to Bob.
•Alice's wallet calculates the hash for the transaction.
•The hash is encrypted using Alice's private key to create the digital signature.
•The hash and its digital signature are broadcasted to the network as one packet.
•All other wallets on the network decrypt the digital signature using Alice's public key.
•The hash from the received broadcast is compared with the now decrypted hash.
•If the hashes are identical, the transaction has not been tampered with.
• If the hashes differ, the integrity of the transaction has been compromised by Eve.
Transaction validation 101
After verifying the authenticity of a sender, the network must verify that he has sufficient funds in his account to carry out the payment. Remember, there is no central entity that can decide upon this. Here's how the Bitcoin network validates transactions:
1.Account Reconciliation is an accounting process that compares two sets of records, the cash inflow and the cash outflow. The account balance is the net cash flow. Yet, wallets in the Bitcoin network never maintain this figure. So how can they all tell whether Alice has sufficient funds to pay Bob?
2.Bitcoin transaction (revised) is comprised of two columns, an input column and an output column. The input column contains information about the origins of the Bitcoins in a transaction, while the output column contains information about where to send the Bitcoins of a transaction. The input column of a transaction actually reference the output columns of previous transactions.
3.Ledger balance (revised). The validity of a given transaction is dependent on the validity of its previous transactions and on and on until all transactions ever made are validated. So the Bitcoin "ledger" actually consists of a linked list of all the transactions ever made rather than account balances.
4.Unspent output is an output of a transaction which has yet to be the input of another transaction. Simply put, it's Bitcoins that have not been spent.
5.Transaction validation. To find out whether Alice has sufficient funds to pay Bob, Bitcoin nodes are required to iterate through all the transactions ever made and add up all of Alice's unspent outputs. But remember, all the transactions ever made reside on each and every wallet in the network, in any case.
Proof of work (mining) 101
Now that we know that each transaction depends on its previous transactions, you might be wondering how Bitcoins got into the systems in the first place? The answer in short: by rewarding its members with newly issued Bitcoins in return for solving a complex mathematical problem. However, it is not for the sake of a challenge. The solution for the mathematical problem allows the Bitcoin network to address a serious security loophole associated with transaction order - a problem typically related to decentralized networks.
1.Transaction Order. As explained previously, transactions are broadcasted to the network and pass from one node to the other until they reach the entire network. However, there is no guarantee that the different nodes will receive the transactions in the same order as they were created. Again, there's no central entity that can decide upon an agreed order, and it's up to a network to reach that agreement. Failure to do so would inevitably lead to frauds. This is where the Byzantine Generals Problem comes in.
2.Double Spending. Imagine Alice has an unspent output of 1 Bitcoin. She sends a transaction to Bob, paying him that 1 Bitcoin. Immediately after this, she sends a second transaction. This time it's to Charlie, paying Charlie with the same 1 Bitcoin. Due to different network capacities at different nodes, it is not unlikely that some nodes would receive the second "double-spending" transaction to Charlie before they receive the one to Bob. Because there is no way to prove which transaction was issued first, the network would reach disagreement on whether it is Bob or Charlie that is the rightful owner of the money.
3.Blocks and blockchain are the data structures Bitcoin uses to organize transactions. Transactions that happen at the same time span are grouped together in a block. Each block has a reference to its previous block. The linked blocks are called 'blockchain'. Transactions not yet in any block are called unordered (i.e. not confirmed yet).
4.The next block. Any node in the network can choose to opt in and participate in the process of creating the next block in the blockchain. The process is called "mining." What's to be done? Group a set of unordered transactions into a block, and broadcast it to the network as a suggestion for the next block. There will likely be several options to choose from, so the entire network must find a way to decide unanimously which block will be next.
5.Mathematical problem. The Bitcoin network will ask its members to find the answer to a special mathematical problem. The block that will contain the answer will be chosen as the next block in the blockchain. The mathematical problem is special due to three vital properties it possesses:
• It lacks an efficient way to solve it and therefore a "brute force" approach has to be used, i.e. trying random values until the answer is found. Statistically, this will take a very high number of attempts.
• It is very easy to verify. Think of Sudoku, hard to solve, but trivial to verify if a given solution is correct.
•The solution for the current block is based on the solution of the previous block.
6.Proof of work proves that a node participated in the total network effort of finding a solution to the mathematical problem. On average, it will take a single node several years of computing power to solve a block on its own. Since it is statistically improbable for a node to solve a block on its own, it's unlikely that a node which solved a block would be an adversary node.
7.Solved blocks. The entire network achieves consensus by accepting the first solved block to be the next in the blockchain, thus verifying all its transactions. Since the solution for the current block is built upon the solution of the previous block, agreement on the current block actually strengthens the agreement for the previous block as well, and so agreement is built upon as the blockchain continues to grow.
8.Mining (Bitcoin issuance). The process of solving a block is rewarded by issuance of new coins into the system and granting them to the block-solving node. This is why it is called "mining". The mining process addresses two central aspects of the system:
•It verifies transactions and safeguards the financial integrity of the system.
•It gradually issues and randomly distributes new coin units. The process is equivalent to a central bank's monetary policy of regulating money supply.
9.Block chain branches. Sporadically, more than one block is solved at the same time span, therefore the network has different blockchain branches to choose from. When this happens the network reaches agreement by immediately accepting the longest valid branch. Why? Because block solving is built upon previous block solving. The longer the block branch, the harder it is to solve all its elements, and subsequently the less likely a malicious node will archive it.
10.Transaction Order (final). Within the Bitcoin network, the "real" order of transactions is recorded within the blockchain.
So what is the mathematical problem the network is asked to solve?
If you truly dislike math skip this section, curiosity is more important!
1.Hash function (revised) is, as explained above, a function that takes an input of arbitrary length and produces a fixed size length output called hash. A fascinating mathematical property of hash functions is that even the slightest change to the input will result in a totally non-predictable drastic change to the output, though the length will remain fixed in size.
2.SHA-256 is a cryptographic hash function developed by the U.S. National Security Agency (yes, the one who's on the news quite often recently) which Bitcoin utilizes for solving blocks.
3.Cryptographic nonce is nothing but an arbitrary number used to slightly modify the input of a hash function, which will result in an unpredictable hash value as output.
4.The mathematical problem all miners in the network are asked to solve is as follow:
•Input = previous hash value + current block + nonce
•SHA-256(SHA-256(Input))? hash value with X number of leading zeros
5.The mathematical problem (simplified to words) look for the nonce that when hashed twice with SHA-256 will result in a number that begins with X number of zeros.
6.The X number of leading zeros sets the difficulty of the problem. The required computational power to solve the problem increases exponentially as the number of leading zeros is set higher and decreases exponentially as the number of leading zeros is set lower.
7.Bitcoin heartbeat. The X number of leading zeros is set by the network, in such a way that it will always take the entire network exactly 10 minutes to solve a problem. If there are more computers in the network, the problem will get harder, if there are less computers in the network the problem will get easier, but it will always take 10 minutes. Therefore the "heart" of the Bitcoin network beats 6 times per hour.
8.Hacking the system. On average, a skilled hacker would need a computing power greater than the total computing power of the entire network to be able to solve a block before anyone else does. In capital terms, today it is estimated at USD 500 million for one block.
Economic truths and untruths - deflationary currency
How generous is the Bitcoin network in rewarding newly issued coins to its miners, and subsequently, to its total economy? Bitcoin is based on a predictable issuance rate of 50 Bitcoins for each solved block (that's every 10 minutes). Every four years that issuance rate gets reduced by half.
In 2012 the issuance rate went down to 25 Bitcoins for each solved block. In 2016 it will be further reduced to 12.5 Bitcoins and so on until 2140, when all 21 million Bitcoins are projected to be issued. Up until the time of this article around 12 million Bitcoins are in circulation and roughly 250,000 blocks have been solved. This growth model approximates the growth pattern at which commodities like gold are mined.
If you're concerned that the low number of issued Bitcoins would limit its usability, keep in mind its almost infinite divisibility. One Bitcoin is divisible down to 1/100 millionth of a Bitcoin. That equates to one Bitcoin being 100,000,000 Satoshis, the smallest fraction of a Bitcoin. At present, the number of Satoshis in circulation is 10-fold higher than that of US cents in circulation.
Bitcoin by definition is a deflationary currency. Assuming Bitcoin continues to do well, the demand will grow faster than its fixed rate supply. Each unit of its currency will then have to encompass a bigger portion of its economy, thus propagating further the persistent deliberate deflationary effect. Moreover, if Bitcoin, like other fiat currencies, would turn to have its M0, M1, M2, etc., then the value of Bitcoin would be much greater than the number in circulation.
We are taught to fear deflation more than inflation, believing it depresses economic growth. Does MV still equal PQ? Perhaps it is easier to perceive Bitcoin as gold or other type of commodity, with its scarcity and a worldwide free market determining its value. Differently than fiat currencies, Bitcoin is not tied to any country's GDP, government debt, debt-to-GDP, and the likes. It might even be better than gold, a sort of a virtual gold, as any Satoshi of it can be sent to the other side of the planet in a second, person to person, with no financial intermediaries.
By the time of this article, around 100 alternative digital crypto currencies (aka Altcoins) have emerged, all inspired by and technically identical to Bitcoin. All will be judged by their ability to achieve the aims they set out to accomplish. Unlike fiat currency exchange rate, which is influenced by a country's economic performance and political stability, crypto currencies compete directly against each other for market share based solely on their fitness function.
The road that lays ahead of Bitcoin
In a world of accelerated technological changes, it would be unwise to predict what tomorrow may bring. There are many factors that may come into play in the evolution of Bitcoin. If it will run into severe obstacles, it will rapidly be displaced by another crypto currency that will overcome the obstacles. In the contrary case, the network effect will carry Bitcoin to dominance. Whether or not it's Bitcoin, crypto currencies are here to stay as an intriguing concept and a groundbreaking technology.
Statutory and regulatory frameworks in some countries are stacking against Bitcoin, yet there is no evidence so far to think that Bitcoin could not coexist alongside other fiat monetary systems. In fact, they may address different market needs and even complement each other synergistically, like the coexistence of commodity money and fiat money.
Another factor that mustn't be disregarded is that Bitcoin is an early stage technology, where millions of dollars constantly exchange hands, making it a dream target for faceless international hackers, hostile intelligence services, or just about any group of hippie coders.
What history has taught us - the music industry
In 1999 Napster was among the first networks that facilitated file distribution across the Internet, namely MP3 music files. The technology was based on a central server and proprietary software and a legal structure of a registered corporation. Within the first six months of its operation, the Recording Industry Association of America filed a lawsuit against Napster over copyright infringement, leading to the their demise.
The next generation of file sharing was KaZaA. Unlike Napster, this time it was a decentralized peer-to-peer network. Nonetheless, the legal structure was still of a centralized registered corporation. A similar fate awaited them, as the Motion Picture Association of America filed a lawsuit for copyright infringement, leading to their shutdown.
Then Gnutella appeared. The initial protocol was developed by a small company acquired by AOL. It was erroneously released to the internet for just one day, before AOL discontinued its availability due to legal concerns. One day was all it took. In less than a week, the protocol had been reverse engineered and released for download as a free open source software under the Gnutella name.
At that point, there were no legal entities to sue, so the music industry started suing individuals. The action proved to be not very viable and casted a negative image on the music industry. The end result was that, the more governments and the music industry fought it, the more they cultivated its use.
Eventually, the music industry took a new approach to the situation. It started to commercialize file sharing technologies, charging reasonable amounts via services like Spotify and the new edition of Napster.
Shattering a myth or two
Criminal activity and money laundering. There have been claims that Bitcoin is a safe haven for criminals and terrorists to transfer money anonymously. As explained previously, every transaction in the Bitcoin network is permanently logged and available for all to see. As a result, it is considerably easy for law enforcement bodies to trace down any sort of allegedly illegal financial activity.
Bitcoin is a Ponzi scheme. Bitcoin is occasionally accused of being a Ponzi scheme, a scam where money from new investors is used to pay off early investors until it all goes bust. Bitcoin's protocol is open source available for anyone to investigate, a transparency that dispels this myth. However, there is one alarming aspect, if interest continues to grow steadily, those who invested very early in Bitcoin could become the world's first trillionaires. If, despite all, Bitcoin proves to be an ultra sophisticated fraud, it will be marked in history as the most spectacular scheme, without a shadow of a doubt.
Thoughts of liberty and freedom
With the ever greater flows of information across the globe and now a wiser world currency, political idealists might start dreaming openly about a different kind of sovereignty for the whole of humanity. Perhaps a withdrawal from the nation-state actuality towards a larger democratic order for all. While it is undeniably captivating to contemplate money independent of governments, corporations, and other corrupting influences, it is sadly not even foreseeable in the faraway future. Still, it's pretty good material for political romanticism.
Article Source: http://EzineArticles.com/?expert=Moshe_Luna
Article Source: http://EzineArticles.com/8341713
Wednesday, January 21, 2015
Bitcoin: What Is It, and Is It Right for Your Business?
By E Speidel
OK, so what's Bitcoin?
It's not an actual coin, it's "cryptocurrency," a digital form of payment that is produced ("mined") by lots of people worldwide. It allows peer-to-peer transactions instantly, worldwide, for free or at very low cost. Bitcoin was invented after decades of research into cryptography by software developer, Satoshi Nakamoto (believed to be a pseudonym), who designed the algorithm and introduced it in 2009. His true identity remains a mystery.
This currency is not backed by a tangible commodity (such as gold or silver); bitcoins are traded online which makes them a commodity in themselves. Bitcoin is an open-source product, accessible by anyone who is a user. All you need is an email address, Internet access, and money to get started.
Where does it come from?
Bitcoin is mined on a distributed computer network of users running specialized software; the network solves certain mathematical proofs, and searches for a particular data sequence ("block") that produces a particular pattern when the BTC algorithm is applied to it. A match produces a bitcoin. It's complex and time- and energy-consuming. Only 21 million bitcoins are ever to be mined (about 11 million are currently in circulation). The math problems the network computers solve get progressively more difficult to keep the mining operations and supply in check. This network also validates all the transactions through cryptography.
How does Bitcoin work?
Internet users transfer digital assets (bits) to each other on a network. There is no online bank; rather, Bitcoin has been described as an Internet-wide distributed ledger. Users buy Bitcoin with cash or by selling a product or service for Bitcoin. Bitcoin wallets store and use this digital currency. Users may sell out of this virtual ledger by trading their Bitcoin to someone else who wants in. Anyone can do this, anywhere in the world. There are smartphone apps for conducting mobile Bitcoin transactions and Bitcoin exchanges are populating the Internet.
How is Bitcoin valued?
Bitcoin is not held or controlled by a financial institution; it is completely decentralized. Unlike real-world money it cannot be devalued by governments or banks. Instead, Bitcoin's value lies simply in its acceptance between users as a form of payment and because its supply is finite. Its global currency values fluctuate according to supply and demand and market speculation; as more people create wallets and hold and spend bitcoins, and more businesses accept it, Bitcoin's value will rise. Banks are now trying to value Bitcoin and some investment websites predict the price of a bitcoin will be several thousand dollars in 2014.
What are its benefits?
There are benefits to consumers and merchants that want to use this payment option. 1. Fast transactions - Bitcoin is transferred instantly over the Internet. 2. No fees/low fees -- Unlike credit cards, Bitcoin can be used for free or very low fees. Without the centralized institution as middle man, there are no authorizations (and fees) required. This improves profit margins sales. 3. Eliminates fraud risk -Only the Bitcoin owner can send payment to the intended recipient, who is the only one who can receive it. The network knows the transfer has occurred and transactions are validated; they cannot be challenged or taken back. This is big for online merchants who are often subject to credit card processors' assessments of whether or not a transaction is fraudulent, or businesses that pay the high price of credit card chargebacks. 4. Data is secure -- As we have seen with recent hacks on national retailers' payment processing systems, the Internet is not always a secure place for private data. With Bitcoin, users do not give up private information. a. They have two keys - a public key that serves as the bitcoin address and a private key with personal data. b. Transactions are "signed" digitally by combining the public and private keys; a mathematical function is applied and a certificate is generated proving the user initiated the transaction. Digital signatures are unique to each transaction and cannot be re-used. c. The merchant/recipient never sees your secret information (name, number, physical address) so it's somewhat anonymous but it is traceable (to the bitcoin address on the public key). 5. Convenient payment system -- Merchants can use Bitcoin entirely as a payment system; they do not have to hold any Bitcoin currency since Bitcoin can be converted to dollars. Consumers or merchants can trade in and out of Bitcoin and other currencies at any time. 6. International payments - Bitcoin is used around the world; e-commerce merchants and service providers can easily accept international payments, which open up new potential marketplaces for them. 7. Easy to track -- The network tracks and permanently logs every transaction in the Bitcoin block chain (the database). In the case of possible wrongdoing, it is easier for law enforcement officials to trace these transactions. 8. Micropayments are possible - Bitcoins can be divided down to one one-hundred-millionth, so running small payments of a dollar or less becomes a free or near-free transaction. This could be a real boon for convenience stores, coffee shops, and subscription-based websites (videos, publications).
Still a little confused? Here are a few examples of transactions: Bitcoin in the retail environment
At checkout, the payer uses a smartphone app to scan a QR code with all the transaction information needed to transfer the bitcoin to the retailer. Tapping the "Confirm" button completes the transaction. If the user doesn't own any Bitcoin, the network converts dollars in his account into the digital currency. The retailer can convert that Bitcoin into dollars if it wants to, there were no or very low processing fees (instead of 2 to 3 percent), no hackers can steal personal consumer information, and there is no risk of fraud. Very slick.
Bitcoins in hospitality
Hotels can accept Bitcoin for room and dining payments on the premises for guests who wish to pay by Bitcoin using their mobile wallets, or PC-to-website to pay for a reservation online. A third-party BTC merchant processor can assist in handling the transactions which it clears over the Bitcoin network. These processing clients are installed on tablets at the establishments' front desk or in the restaurants for users with BTC smartphone apps. (These payment processors are also available for desktops, in retail POS systems, and integrated into foodservice POS systems.) No credit cards or money need to change hands. These cashless transactions are fast and the processor can convert bitcoins into currency and make a daily direct deposit into the establishment's bank account. It was announced in January 2014 that two Las Vegas hotel-casinos will accept Bitcoin payments at the front desk, in their restaurants, and in the gift shop.
It sounds good - so what's the catch?
Business owners should consider issues of participation, security and cost.
• A relatively small number of ordinary consumers and merchants currently use or understand Bitcoin. However, adoption is increasing globally and tools and technologies are being developed to make participation easier. • It's the Internet, so hackers are threats to the exchanges. The Economist reported that a Bitcoin exchange was hacked in September 2013 and $250,000 in bitcoins was stolen from users' online vaults. Bitcoins can be stolen like other currency, so vigilant network, server and database security is paramount. • Users must carefully safeguard their bitcoin wallets which contain their private keys. Secure backups or printouts are crucial. • Bitcoin is not regulated or insured by the US government so there is no insurance for your account if the exchange goes out of business or is robbed by hackers. • Bitcoins are relatively expensive. Current rates and selling prices are available on the online exchanges. The virtual currency is not yet universal but it is gaining market awareness and acceptance. A business may decide to try Bitcoin to save on credit card and bank fees, as a customer convenience, or to see if it helps or hinders sales and profitability. Are you thinking about accepting Bitcoin? Do you already use it? Share your thoughts and experiences with us. You can learn all about bitcoin mining, block chains (the database), miner pools, wallets, and transactions at https://bitcoin.org/en/ or http://www.coindesk.com as well as YouTube videos. Article Source: http://EzineArticles.com/?expert=E_Speidel Article Source: http://EzineArticles.com/8408097
OK, so what's Bitcoin?
It's not an actual coin, it's "cryptocurrency," a digital form of payment that is produced ("mined") by lots of people worldwide. It allows peer-to-peer transactions instantly, worldwide, for free or at very low cost. Bitcoin was invented after decades of research into cryptography by software developer, Satoshi Nakamoto (believed to be a pseudonym), who designed the algorithm and introduced it in 2009. His true identity remains a mystery.
This currency is not backed by a tangible commodity (such as gold or silver); bitcoins are traded online which makes them a commodity in themselves. Bitcoin is an open-source product, accessible by anyone who is a user. All you need is an email address, Internet access, and money to get started.
Where does it come from?
Bitcoin is mined on a distributed computer network of users running specialized software; the network solves certain mathematical proofs, and searches for a particular data sequence ("block") that produces a particular pattern when the BTC algorithm is applied to it. A match produces a bitcoin. It's complex and time- and energy-consuming. Only 21 million bitcoins are ever to be mined (about 11 million are currently in circulation). The math problems the network computers solve get progressively more difficult to keep the mining operations and supply in check. This network also validates all the transactions through cryptography.
How does Bitcoin work?
Internet users transfer digital assets (bits) to each other on a network. There is no online bank; rather, Bitcoin has been described as an Internet-wide distributed ledger. Users buy Bitcoin with cash or by selling a product or service for Bitcoin. Bitcoin wallets store and use this digital currency. Users may sell out of this virtual ledger by trading their Bitcoin to someone else who wants in. Anyone can do this, anywhere in the world. There are smartphone apps for conducting mobile Bitcoin transactions and Bitcoin exchanges are populating the Internet.
How is Bitcoin valued?
Bitcoin is not held or controlled by a financial institution; it is completely decentralized. Unlike real-world money it cannot be devalued by governments or banks. Instead, Bitcoin's value lies simply in its acceptance between users as a form of payment and because its supply is finite. Its global currency values fluctuate according to supply and demand and market speculation; as more people create wallets and hold and spend bitcoins, and more businesses accept it, Bitcoin's value will rise. Banks are now trying to value Bitcoin and some investment websites predict the price of a bitcoin will be several thousand dollars in 2014.
What are its benefits?
There are benefits to consumers and merchants that want to use this payment option. 1. Fast transactions - Bitcoin is transferred instantly over the Internet. 2. No fees/low fees -- Unlike credit cards, Bitcoin can be used for free or very low fees. Without the centralized institution as middle man, there are no authorizations (and fees) required. This improves profit margins sales. 3. Eliminates fraud risk -Only the Bitcoin owner can send payment to the intended recipient, who is the only one who can receive it. The network knows the transfer has occurred and transactions are validated; they cannot be challenged or taken back. This is big for online merchants who are often subject to credit card processors' assessments of whether or not a transaction is fraudulent, or businesses that pay the high price of credit card chargebacks. 4. Data is secure -- As we have seen with recent hacks on national retailers' payment processing systems, the Internet is not always a secure place for private data. With Bitcoin, users do not give up private information. a. They have two keys - a public key that serves as the bitcoin address and a private key with personal data. b. Transactions are "signed" digitally by combining the public and private keys; a mathematical function is applied and a certificate is generated proving the user initiated the transaction. Digital signatures are unique to each transaction and cannot be re-used. c. The merchant/recipient never sees your secret information (name, number, physical address) so it's somewhat anonymous but it is traceable (to the bitcoin address on the public key). 5. Convenient payment system -- Merchants can use Bitcoin entirely as a payment system; they do not have to hold any Bitcoin currency since Bitcoin can be converted to dollars. Consumers or merchants can trade in and out of Bitcoin and other currencies at any time. 6. International payments - Bitcoin is used around the world; e-commerce merchants and service providers can easily accept international payments, which open up new potential marketplaces for them. 7. Easy to track -- The network tracks and permanently logs every transaction in the Bitcoin block chain (the database). In the case of possible wrongdoing, it is easier for law enforcement officials to trace these transactions. 8. Micropayments are possible - Bitcoins can be divided down to one one-hundred-millionth, so running small payments of a dollar or less becomes a free or near-free transaction. This could be a real boon for convenience stores, coffee shops, and subscription-based websites (videos, publications).
Still a little confused? Here are a few examples of transactions: Bitcoin in the retail environment
At checkout, the payer uses a smartphone app to scan a QR code with all the transaction information needed to transfer the bitcoin to the retailer. Tapping the "Confirm" button completes the transaction. If the user doesn't own any Bitcoin, the network converts dollars in his account into the digital currency. The retailer can convert that Bitcoin into dollars if it wants to, there were no or very low processing fees (instead of 2 to 3 percent), no hackers can steal personal consumer information, and there is no risk of fraud. Very slick.
Bitcoins in hospitality
Hotels can accept Bitcoin for room and dining payments on the premises for guests who wish to pay by Bitcoin using their mobile wallets, or PC-to-website to pay for a reservation online. A third-party BTC merchant processor can assist in handling the transactions which it clears over the Bitcoin network. These processing clients are installed on tablets at the establishments' front desk or in the restaurants for users with BTC smartphone apps. (These payment processors are also available for desktops, in retail POS systems, and integrated into foodservice POS systems.) No credit cards or money need to change hands. These cashless transactions are fast and the processor can convert bitcoins into currency and make a daily direct deposit into the establishment's bank account. It was announced in January 2014 that two Las Vegas hotel-casinos will accept Bitcoin payments at the front desk, in their restaurants, and in the gift shop.
It sounds good - so what's the catch?
Business owners should consider issues of participation, security and cost.
• A relatively small number of ordinary consumers and merchants currently use or understand Bitcoin. However, adoption is increasing globally and tools and technologies are being developed to make participation easier. • It's the Internet, so hackers are threats to the exchanges. The Economist reported that a Bitcoin exchange was hacked in September 2013 and $250,000 in bitcoins was stolen from users' online vaults. Bitcoins can be stolen like other currency, so vigilant network, server and database security is paramount. • Users must carefully safeguard their bitcoin wallets which contain their private keys. Secure backups or printouts are crucial. • Bitcoin is not regulated or insured by the US government so there is no insurance for your account if the exchange goes out of business or is robbed by hackers. • Bitcoins are relatively expensive. Current rates and selling prices are available on the online exchanges. The virtual currency is not yet universal but it is gaining market awareness and acceptance. A business may decide to try Bitcoin to save on credit card and bank fees, as a customer convenience, or to see if it helps or hinders sales and profitability. Are you thinking about accepting Bitcoin? Do you already use it? Share your thoughts and experiences with us. You can learn all about bitcoin mining, block chains (the database), miner pools, wallets, and transactions at https://bitcoin.org/en/ or http://www.coindesk.com as well as YouTube videos. Article Source: http://EzineArticles.com/?expert=E_Speidel Article Source: http://EzineArticles.com/8408097
Introduction to Bitcoin
By Aaron David Brown
Bitcoin has been in the news the last couple of weeks, but a lot of people are still unaware of them. Could Bitcoin be the future of online currency? This is just one of the questions, frequently asked about Bitcoin. How Does Bitcoin Work? Bitcoin is a type of electronic currency (CryptoCurrency) that is autonomous from traditional banking and came into circulation in 2009. According to some of the top online traders, Bitcoin is considered as the best known digital currency that relies on computer networks to solve complex mathematical problems, in order to verify and record the details of each transaction made.
The Bitcoin exchange rate does not depend on the central bank and there is no single authority that governs the supply of CryptoCurrency. However, the Bitcoin price depends on the level of confidence its users have, as the more major companies accept Bitcoin as a method of payment, the more successful Bitcoin will become.
Benefits and Risks of Bitcoin
One of the benefits of Bitcoin is its low inflation risk. Traditional currencies suffer from inflation and they tend to lose their purchasing power each year, as governments continue to use quantative easing to stimulate the economy.
Bitcoin doesn't suffer from low inflation, because Bitcoin mining is limited to just 21 million units. That means the release of new Bitcoins is slowing down and the full amount will be mined out within the next couple of decades. Experts have predicted that the last Bitcoin will be mined by 2050.
Bitcoin has a low risk of collapse unlike traditional currencies that rely on governments. When currencies collapse, it leads to hyperinflation or the wipeout of one's savings in an instant. Bitcoin exchange rate is not regulated by any government and is a digital currency available worldwide. Bitcoin is easy to carry. A billion dollars in the Bitcoin can be stored on a memory stick and placed in one's pocket. It is that easy to transport Bitcoins compared to paper money. One disadvantage of Bitcoin is its untraceable nature, as Governments and other organisations cannot trace the source of your funds and as such can attract some unscrupulous individuals.
How to Make Money with Bitcoin
Unlike other currencies, there are three ways to make money with Bitcoin, saving, trading and mining. Bitcoin can be traded on open markets, which means you can buy Bitcoin low and sell them high.
Volatility of Bitcoin
The value of Bitcoin dropped in recent weeks because of the abrupt stoppage of trading in Mt. Gox, which is the largest Bitcoin exchange in the world. According to unverified sources, trading was stopped due to malleability-related theft that was said to be worth more than 744,000. The incident has affected the confidence of the investors to the virtual currency. According to Bitcoin chart, the Bitcoin exchange rate went up to more than $1,100 last December. That was when more people became aware about the digital currency, then the incident with Mt. Gox happened and it dropped to around $530. In 2014, We expect exponential growth in the popularity of bitcoin around the world with both merchants and consumers, Stephen Pair, BitPay's co-founder and CTO, âand anticipate seeing the biggest growth in China, India, Russia and South America. India has already been cited as the next likely popular market that Bitcoin could move into. Africa could also benefit hugely from using BTC as a currency-of-exchange to get around not having a functioning central bank system or any other country that relies heavily on mobile payments. Bitcoin's expansion in 2014 will be led by Bitcoin ATMs, mobile apps and tools.
World Experiences Bitcoin
More people have accepted the use of Bitcoin and supporters hope that one day, the digital currency will be used by consumers for their online shopping and other electronic deals. Major companies have already accepted payments using the virtual currency. Some of the large firms include Fiverr, TigerDirect and Zynga, among others.
The Future of Bitcoin
Bitcoin works, but critics have said that the digital currency is not ready to be used by the mainstream because of its volatility. They also point to the hacking of the Bitcoin exchange in the past that has resulted in the loss of several millions of dollars. Supporters of digital currencies have said that there are newer exchanges that are supervised by financial experts and venture capitalists. Experts added that there is still hope for the virtual currency system and the predicted growth is huge. I hope this article has helped you all gain a much more clear understanding of Bitcoin, the potential, does Bitcoin work and how Bitcoins work. For more articles about Bitcoin, weekly trends, information and updates, subscribe to our blog post. This Article was written by Aaron Brown CEO/Founder of Synergetic Society Media Group LLC Http://www.synergeticsociety.com Article Source: http://EzineArticles.com/?expert=Aaron_David_Brown Article Source: http://EzineArticles.com/8395320
Bitcoin has been in the news the last couple of weeks, but a lot of people are still unaware of them. Could Bitcoin be the future of online currency? This is just one of the questions, frequently asked about Bitcoin. How Does Bitcoin Work? Bitcoin is a type of electronic currency (CryptoCurrency) that is autonomous from traditional banking and came into circulation in 2009. According to some of the top online traders, Bitcoin is considered as the best known digital currency that relies on computer networks to solve complex mathematical problems, in order to verify and record the details of each transaction made.
The Bitcoin exchange rate does not depend on the central bank and there is no single authority that governs the supply of CryptoCurrency. However, the Bitcoin price depends on the level of confidence its users have, as the more major companies accept Bitcoin as a method of payment, the more successful Bitcoin will become.
Benefits and Risks of Bitcoin
One of the benefits of Bitcoin is its low inflation risk. Traditional currencies suffer from inflation and they tend to lose their purchasing power each year, as governments continue to use quantative easing to stimulate the economy.
Bitcoin doesn't suffer from low inflation, because Bitcoin mining is limited to just 21 million units. That means the release of new Bitcoins is slowing down and the full amount will be mined out within the next couple of decades. Experts have predicted that the last Bitcoin will be mined by 2050.
Bitcoin has a low risk of collapse unlike traditional currencies that rely on governments. When currencies collapse, it leads to hyperinflation or the wipeout of one's savings in an instant. Bitcoin exchange rate is not regulated by any government and is a digital currency available worldwide. Bitcoin is easy to carry. A billion dollars in the Bitcoin can be stored on a memory stick and placed in one's pocket. It is that easy to transport Bitcoins compared to paper money. One disadvantage of Bitcoin is its untraceable nature, as Governments and other organisations cannot trace the source of your funds and as such can attract some unscrupulous individuals.
How to Make Money with Bitcoin
Unlike other currencies, there are three ways to make money with Bitcoin, saving, trading and mining. Bitcoin can be traded on open markets, which means you can buy Bitcoin low and sell them high.
Volatility of Bitcoin
The value of Bitcoin dropped in recent weeks because of the abrupt stoppage of trading in Mt. Gox, which is the largest Bitcoin exchange in the world. According to unverified sources, trading was stopped due to malleability-related theft that was said to be worth more than 744,000. The incident has affected the confidence of the investors to the virtual currency. According to Bitcoin chart, the Bitcoin exchange rate went up to more than $1,100 last December. That was when more people became aware about the digital currency, then the incident with Mt. Gox happened and it dropped to around $530. In 2014, We expect exponential growth in the popularity of bitcoin around the world with both merchants and consumers, Stephen Pair, BitPay's co-founder and CTO, âand anticipate seeing the biggest growth in China, India, Russia and South America. India has already been cited as the next likely popular market that Bitcoin could move into. Africa could also benefit hugely from using BTC as a currency-of-exchange to get around not having a functioning central bank system or any other country that relies heavily on mobile payments. Bitcoin's expansion in 2014 will be led by Bitcoin ATMs, mobile apps and tools.
World Experiences Bitcoin
More people have accepted the use of Bitcoin and supporters hope that one day, the digital currency will be used by consumers for their online shopping and other electronic deals. Major companies have already accepted payments using the virtual currency. Some of the large firms include Fiverr, TigerDirect and Zynga, among others.
The Future of Bitcoin
Bitcoin works, but critics have said that the digital currency is not ready to be used by the mainstream because of its volatility. They also point to the hacking of the Bitcoin exchange in the past that has resulted in the loss of several millions of dollars. Supporters of digital currencies have said that there are newer exchanges that are supervised by financial experts and venture capitalists. Experts added that there is still hope for the virtual currency system and the predicted growth is huge. I hope this article has helped you all gain a much more clear understanding of Bitcoin, the potential, does Bitcoin work and how Bitcoins work. For more articles about Bitcoin, weekly trends, information and updates, subscribe to our blog post. This Article was written by Aaron Brown CEO/Founder of Synergetic Society Media Group LLC Http://www.synergeticsociety.com Article Source: http://EzineArticles.com/?expert=Aaron_David_Brown Article Source: http://EzineArticles.com/8395320
Tuesday, January 20, 2015
Friday, January 16, 2015
BitCoin The Beginning
Shortly after the housing, banking and credit crisis of 2008 it's no secret that people all over the world feared what would happen to the financial system. That's when the underground banking system began to gather steam. One of the most interesting things is that unlike traditional banking we've come to accept- this system isn't tied to one particular government
The Secret Undergound Banking System
As you can imagine Wall Street, The Fed and Congress are freaking out at the benefit this is offering people. Not only are people getting unprencendented level of privacy and security while many who have stuck with it had the opportunity to make as much as 5,000% on their investmen.
The New Swiss Bank Account Has Arrived
An entirely new way to bank is exploding around the world. It's completely independent of the government and the Central Banking system. Best of all is being run by ordinary people just like you. Say hello to Bitcoin
Subscribe to:
Posts (Atom)