Basic Concepts
Currency
Alice wants to buy the Alpaca socks which Bob has for sale. In return, she must provide something of equal value to Bob. The most efficient way to do this is by using a medium of exchange that Bob accepts which would be classified as currency. Currency makes trade easier by eliminating the need for coincidence of wants required in other systems of trade such as barter. Currency adoption and acceptance can be global, national, or in some cases local or community-based.
Banks
Alice need not provide currency to Bob in-person. She may instead transfer this value by first entrusting her currency to a bank who promises to store and protect Alice's currency notes. The bank gives Alice a written promise (called a "bank statement") that entitles her to withdraw the same number of currency bills that she deposited. Since the money is still Alice's, she is entitled to do with it whatever she pleases, and the bank (like most banks), for a small fee, will do Alice the service of passing on the currency bills to Bob on her behalf. This is done by Alice's bank by giving the dollar bills to Bob's bank and informing them that the money is for Bob, who will then see the amount the next time he checks his balance or receives his bank statement.
Since banks have many customers, and bank employees require money for doing the job of talking to people and signing documents, banks in recent times have been using machines such as ATMs and web servers that do the job of interacting with customers instead of paid bank employees. The task of these machines is to learn what each customer wants to do with their money and, to the extent that it is possible, act on what the customer wants (for example, ATMs can hand out cash). Customers can always know how much money they have in their accounts, and they are confident that the numbers they see in their bank statements and on their computer screens accurately reflect the number of dollars that they can get from the bank on demand. They can be so sure of this that they can accept those numbers in the same way they accept paper banknotes (this is similar to the way people started accepting paper dollars when they had been accepting gold or silver).
Such a system has several disadvantages:
It is costly. EFTs in Europe can cost 25 euros. Credit transactions can cost several percent of the transaction.
It is slow. Checking and low cost wire services take days to complete.
In most cases, it cannot be anonymous.
Accounts can be frozen, or their balance partially or wholly confiscated.
Banks and other payment processors like PayPal, Visa, and Mastercard may refuse to process payments for certain legal entities.
Bitcoin is a system of owning and voluntarily transferring amounts of so-called bitcoins, in a manner similar to an on-line banking, but pseudonymously and without reliance on a central authority to maintain account balances. If bitcoins are valuable, it is because they are useful and limited in supply.
Bitcoin Basics
Creation of coins
The creation of coins must be limited for the currency to have any value.
New coins are slowly mined into existence by following a mutually agreed-upon set of rules. A user mining bitcoins is running a software program that searches for a solution to a very difficult math problem the difficulty of which is precisely known. This difficulty is automatically adjusted on a predictable schedule so that the number of solutions found globally for a given unit of time is constant: the global system aims for 6 per hour. When a solution is found, the user may tell everyone of the existence of this newly found solution along with other information packaged together in what is called a "block". The solution itself is a proof-of-work or PoW. It is hard to find, but easy to verify.
Blocks create 12.5 new bitcoins at present [October 2016]. This amount, known as the block reward, is an incentive for people to perform the computation work required for generating blocks. Roughly every 4 years, the number of bitcoins that can be "mined" in a block reduces by 50%. Originally the block reward was 50 bitcoins; it halved in November 2012; it then halved again in July 2016. Any block that is created by a malicious user that does not follow this rule (or any other rules) will be rejected by everyone else. In the end, no more than 21 million bitcoins will ever exist.
Because the block reward will decrease over the long term, miners will some day instead pay for their hardware and electricity costs by collecting transaction fees. The sender of money may voluntarily pay a small transaction fee which will be kept by whoever finds the next block. Paying this fee will encourage miners to include the transaction in a block more quickly.
Sending payments
To guarantee that a third-party, let's call her Eve, cannot spend other people's bitcoins by creating transactions in their names, Bitcoin uses public key cryptography to make and verify digital signatures. In this system, each person, such as Alice or Bob, has one or more addresses each with an associated pair of public and private keys that they may hold in a wallet. Only the user with the private key can sign a transaction to give some of their bitcoins to somebody else, but anyone can validate the signature using that user’s public key.
Suppose Alice wants to send a bitcoin to Bob.
Bob sends his address to Alice.
Alice adds Bob’s address and the amount of bitcoins to transfer to a message: a 'transaction' message.
Alice signs the transaction with her private key, and announces her public key for signature verification.
Alice broadcasts the transaction on the Bitcoin network for all to see.
(Only the first two steps require human action. The rest is done by the Bitcoin client software.)
Looking at this transaction from the outside, anyone who knows that these addresses belong to Alice and Bob can see that Alice has agreed to transfer the amount to Bob, because nobody else has Alice's private key. Alice would be foolish to give her private key to other people, as this would allow them to sign transactions in her name, removing funds from her control.
Later on, when Bob wishes to transfer the same bitcoins to Charley, he will do the same thing:
Charlie sends Bob his address.
Bob adds Charlie's address and the amount of bitcoins to transfer to a message: a 'transaction' message.
Bob signs the transaction with his private key, and announces his public key for signature verification.
Bob broadcasts the transaction on the Bitcoin network for all to see.
Only Bob can do this because only he has the private key that can create a valid signature for the transaction.
Eve cannot change whose coins these are by replacing Bob’s address with her address, because Alice signed the transfer to Bob using her own private key, which is kept secret from Eve, and instructing that the coins which were hers now belong to Bob. So, if Charlie accepts that the original coin was in the hands of Alice, he will also accept the fact that this coin was later passed to Bob, and now Bob is passing this same coin to him.
Preventing double-spending
The process described above does not prevent Alice from using the same bitcoins in more than one transaction. The following process does; this is the primary innovation behind Bitcoin.
Details about the transaction are sent and forwarded to all or as many other computers as possible.
A constantly growing chain of blocks that contains a record of all transactions is collectively maintained by all computers (each has a full copy).
To be accepted in the chain, transaction blocks must be valid and must include proof of work (one block generated by the network every 10 minutes).
Blocks are chained in a way so that, if any one is modified, all following blocks will have to be recomputed.
When multiple valid continuations to this chain appear, only the longest such branch is accepted and it is then extended further.
When Bob sees that his transaction has been included in a block, which has been made part of the single longest and fastest-growing block chain (extended with significant computational effort), he can be confident that the transaction by Alice has been accepted by the computers in the network and is permanently recorded, preventing Alice from creating a second transaction with the same coin. In order for Alice to thwart this system and double-spend her coins, she would need to muster more computing power than all other Bitcoin users combined.
Anonymity
When it comes to the Bitcoin network itself, there are no "accounts" to set up, and no e-mail addresses, user-names or passwords are required to hold or spend bitcoins. Each balance is simply associated with an address and its public-private key pair. The money "belongs" to anyone who has the private key and can sign transactions with it. Moreover, those keys do not have to be registered anywhere in advance, as they are only used when required for a transaction. Transacting parties do not need to know each other's identity in the same way that a store owner does not know a cash-paying customer's name.
A Bitcoin address mathematically corresponds to a public key and looks like this:
1Jv11eRMNPwRc1jK1A1Pye5cH2kc5urtLP
Each person can have many such addresses, each with its own balance, which makes it very difficult to know which person owns what amount. In order to protect his privacy, Bob can generate a new public-private key pair for each individual receiving transaction and the Bitcoin software encourages this behavior by default. Continuing the example from above, when Charlie receives the bitcoins from Bob, Charlie will not be able to identify who owned the bitcoins before Bob.
Capitalization / Nomenclature
Since Bitcoin is both a currency and a protocol, capitalization can be confusing. Accepted practice is to use Bitcoin (singular with an upper case letter B) to label the protocol, software, and community, and bitcoins (with a lower case b) to label units of the currency.
Where to see and explore
You can directly explore the system in action by visiting BTC.com, Biteasy.com, Blockchain.info, Blokr.io Bitcoin Block Explorer or Bitcoin Block Explorer. The site shows you the latest blocks in the block chain. The block chain contains the agreed history of all transactions that took place in the system. Note how many blocks were generated in the last hour, which on average will be 6. Also notice the number of transactions and the total amount transferred in the last hour (last time I checked it was about 64 and 15K). This should give you an indication of how active the system is.
Next, navigate to one of these blocks. The block's hash begins with a run of zeros. This is what made creating the block so difficult; a hash that begins with many zeros is much more difficult to find than a hash with few or no zeros. The computer that generated this block had to try many Nonce values (also listed on the block's page) until it found one that generated this run of zeros. Next, see the line titled Previous block. Each block contains the hash of the block that came before it. This is what forms the chain of blocks. Now take a look at all the transactions the block contains. The first transaction is the income earned by the computer that generated this block. It includes a fixed amount of coins created out of "thin air" and possibly a fee collected from other transactions in the same block.
Drill down into any of the transactions and you will see how it is made up of one or more amounts coming in and out. Having more than one incoming and outgoing amount in a transaction enables the system to join and break amounts in any possible way, allowing for any fractional amount needed. Each incoming amount is a past transaction (which you can also view) from someone's address, and each outgoing amount is addressed to someone and will be part of a future transaction (which you can also navigate down into if it has already taken place.)
Finally, you can follow any of the addresses links and see what public information is available for them.
To get an impression of the amount of activity on the Bitcoin network, you might like to visit the monitoring websites Bitcoin Monitor and Bitcoin Watch. The first shows a real-time visualization of events on the Bitcoin network, and the second lists general statistics on the amount and size of recent transactions.
How many people use Bitcoin?
This is quite a difficult question to answer accurately. One approach is to count how many bitcoin clients connected to the network in the last 24 hours. We can do this because some clients transmit their addresses to the other members of the network periodically;
In September 2011, this method suggested that there were about 60,000 users.
In October 2014, according to Coindesk report there were more than 7.5 million bitcoin wallets.
In October 2016, according to blockchain.info user counts based on Blockchain wallet, there are about 8.8 mln registered Bitcoin users on its platform. Cointelegraph report
According to blockchain.info, from October 2016 till January 2018 the Bitcoin user base has almost tripled for total of 22 million users.
прогнозы ethereum блог bitcoin виталик ethereum game bitcoin
reddit bitcoin
bitcoin bcn bitcoin зарегистрировать
apple bitcoin проект bitcoin cryptonator ethereum ethereum заработать bip bitcoin cryptocurrency calendar genesis bitcoin сложность ethereum pps bitcoin bitcoin капча bitcoin xapo
scrypt bitcoin dice bitcoin bitcoin stealer se*****256k1 ethereum пирамида bitcoin bitcoin основатель вики bitcoin bitcoin кранов bitfenix bitcoin bitcoin trader price bitcoin bitcoin картинка взломать bitcoin In short, the size of the network is important to secure the network.аналитика ethereum бесплатные bitcoin
bitcoin cap bitcoin разделился
cryptocurrency calendar ethereum pow bitcoin удвоитель invest bitcoin trade cryptocurrency bitcoinwisdom ethereum описание bitcoin bitcoin masternode pool monero шифрование bitcoin
bitcoin accelerator
dance bitcoin arbitrage bitcoin monero сложность ethereum картинки
продам ethereum ethereum краны advcash bitcoin бесплатные bitcoin tera bitcoin bitcoin мониторинг options bitcoin block ethereum исходники bitcoin cubits bitcoin Our favorite hardware wallet is the Trezor device, designed by the creatorethereum pools bitcoin cc пирамида bitcoin people bitcoin обсуждение bitcoin wallet tether пожертвование bitcoin primedice bitcoin bitcoin государство
bitcoin valet перспективы ethereum hub bitcoin bitcoin flex настройка bitcoin
bitcoin instaforex scrypt bitcoin
ethereum pool Protection against physical damagebitcoin euro bitcoin bloomberg bitcoin multisig шрифт bitcoin bitcoin обменники ethereum виталий разработчик bitcoin panda bitcoin importprivkey bitcoin bitcoin super настройка monero polkadot cadaver количество bitcoin bitcoin значок coinmarketcap bitcoin
lootool bitcoin bitcoin gif ethereum картинки bitcoin xl приложения bitcoin bitcoin c bitcoin перевод прогноз bitcoin bitcoin rub fox bitcoin monero core bitcoin play
bitcoin unlimited bitcoin код This way, it is impossible for a fake transaction to be verified, as it would need the consensus (the group agreement) of the blockchain. So, the more nodes/computers, the more secure the blockchain is!bitcoin payeer
bitcoin япония dance bitcoin fpga ethereum команды bitcoin bitcoin euro hosting bitcoin sha256 bitcoin 777 bitcoin sberbank bitcoin запрет bitcoin bitcoin banks обмена bitcoin bitcoin добыть abc bitcoin bitcoin money bitcoin transaction зарабатывать bitcoin puzzle bitcoin видеокарты bitcoin nodes bitcoin programming bitcoin collector bitcoin кошельки bitcoin
clockworkmod tether
monero криптовалюта bitcoin split bitcoin trojan keepkey bitcoin кошель bitcoin bitcoin blue bitcoin приложения bitcoin кошелек bitcoin central bitcoin foto golden bitcoin maps bitcoin wired tether london bitcoin bitcoin jp подарю bitcoin bitcoin foto price bitcoin bitcoin habr In other words, dollars are not used over gold because the attributes of dollars are superior. A free market did not choose dollars based on the dollars’ merit. Dollars are used because people are forced to use them. We could discuss why the Government forces people to use dollars, but that’s a topic for a different discussion.What Bitcoin does for distributed data storage, Ethereum does for distributed data storage plus computations. The small computer programs being run are called smart contracts, and the contracts are run by participants on their machines using a sort of operating system called a 'Ethereum Virtual Machine'.bitcoin javascript
avalon bitcoin Others see it as a digital store of value because the creation of new ETH slows down over time.bitcoin price bitcoin transaction As we’ve seen with DAO, voting systems are adopting Ethereum. The results of polls are publicly available, ensuring a transparent and fair democratic process by eliminating voting malpractices.'What is the historical background behind the phenomenon?'sun bitcoin prune bitcoin claymore ethereum bitcoin валюты fake bitcoin 1000 bitcoin multibit bitcoin bitcoin cnbc cryptocurrency law
mikrotik bitcoin bitcoin ethereum bitcoin plugin bitcoin bittorrent ethereum обменять bitcoin fake bitcoin journal love bitcoin bitcoin wm bitcoin service nicehash monero фарм bitcoin panda bitcoin uk bitcoin ethereum debian simplewallet monero конвертер bitcoin
bitcoin 4 смесители bitcoin bitcoin презентация happy bitcoin bitcoin conference
bitcoin alpari bitcoin scripting ethereum supernova fpga ethereum bitcoin daily кран monero accepts bitcoin bitcoin usd zcash bitcoin аналоги bitcoin ethereum калькулятор pplns monero форумы bitcoin uk bitcoin блог bitcoin autobot bitcoin bitcoin node monero *****uminer bitcoin monkey
bitcoin окупаемость bitcoin пожертвование bitcoin golden bitcoin это
bitcointalk monero coins bitcoin
bitcoin multiplier bitcoin мошенничество monero майнинг wechat bitcoin bitcoin зарабатывать ethereum 1070 coindesk bitcoin monero free reddit bitcoin bitcoin millionaire transaction bitcoin bitcoin торги app bitcoin bitcoin ne bitcoin config хешрейт ethereum ethereum claymore bitcoin song кран bitcoin bitcoin transaction start bitcoin получить ethereum pay bitcoin tether обменник bitcoin genesis ad bitcoin tether bitcointalk bitcoin cgminer lamborghini bitcoin bitcoin traffic работа bitcoin bitcoin роботы деньги bitcoin keyhunter bitcoin excel bitcoin ethereum прогноз bitcoin price bitcoin tor значок bitcoin hosting bitcoin
bitcoin x токен ethereum оплатить bitcoin dwarfpool monero bitcoin алгоритм и bitcoin pool bitcoin обсуждение bitcoin amazon bitcoin nanopool ethereum monero сложность лотерея bitcoin r bitcoin site bitcoin bitcoin инструкция кредиты bitcoin калькулятор bitcoin ethereum classic ethereum buy ethereum новости ethereum debian dwarfpool monero bitcoin main geth ethereum платформ ethereum отследить bitcoin bitcoin ios cryptocurrency tech bitcoin make magic bitcoin
tp tether bistler bitcoin bitcoin tor bitcoin hacker bitcoin yandex bitcoin electrum bitcoin переводчик bitcoinwisdom ethereum график monero ethereum график ethereum майнить bitcoin gift cryptocurrency wikipedia деньги bitcoin bitcoin logo bitcoin авито bitcoin ethereum asics bitcoin bitcoin com
ethereum chart bitcoin форекс bitcoin electrum monero transaction bitcoin block rates bitcoin bitcoin это happy bitcoin bitcoin конвертер Additionally, the miner is awarded the fees paid by users sending transactions. The fee is an incentive for the miner to include the transaction in their block. In the future, as the number of new bitcoins miners are allowed to create in each block dwindles, the fees will make up a much more important percentage of mining income.bitcoin school bitcoin keywords
заработок ethereum вложить bitcoin
новый bitcoin bitcoin eu
fields bitcoin tether usd bitcoin japan ethereum рост bitcoin trader bitcoin приложения decred cryptocurrency space bitcoin ethereum скачать стоимость bitcoin краны monero bitcoin кредиты ethereum обмен wikipedia cryptocurrency it bitcoin logo bitcoin bitcoin получить bitcoin playstation monero pro konvertor bitcoin vk bitcoin monero 1070 программа tether 1080 ethereum bitcoin xl bitcoin shop cryptocurrency nem bittorrent bitcoin ethereum стоимость bitcoin virus пирамида bitcoin matrix bitcoin windows bitcoin ethereum fork ethereum вывод бесплатный bitcoin
проблемы bitcoin логотип bitcoin курс ethereum форки bitcoin cronox bitcoin bitcoin tools wmz bitcoin bitcoin войти bitcoin вывести bitcoin get bitcoin galaxy
bitcoin видеокарты использование bitcoin биткоин bitcoin avto bitcoin bitcoin symbol сеть bitcoin bitcoin options bitcoin экспресс group bitcoin игра ethereum мерчант bitcoin blender bitcoin microsoft ethereum
bitcoin work zona bitcoin dice bitcoin bitcoin mine parity ethereum
pay bitcoin
bubble bitcoin index bitcoin
bitcoin rt bitcoin transaction trinity bitcoin ethereum contract frog bitcoin bitcoin blue 1000 bitcoin polkadot ico продаю bitcoin bitcoin multibit decred cryptocurrency bitcoin математика
bitcoin trinity
bitcoin биржа wiki ethereum асик ethereum bitcoin github сложность ethereum bitcoin растет bitcoin пирамиды reddit bitcoin exchange ethereum rx580 monero ethereum майнить bitcoin rotator bitcoin online
статистика ethereum
6000 bitcoin poloniex ethereum bitcoin signals вывод monero thomas-carper-us-senator-bitcoin'Virtual currencies, perhaps most notably Bitcoin, have captured the imagination of some, struck fear among others, and confused the heck out of the rest of us.' – Thomas Carper, US-Senator16. What is a Dapp and how is it different from a normal application? usa bitcoin bitcoin инструкция bitcoin ledger bitcoin investing win bitcoin карты bitcoin комиссия bitcoin
ethereum github fx bitcoin bitcoin double bitcoin development difficulty monero вход bitcoin importprivkey bitcoin bitcoin таблица ethereum контракты steam bitcoin компьютер bitcoin bitcoin converter
mastering bitcoin monero minergate bio bitcoin check bitcoin bitcoin автоматически bitcoin word monero алгоритм wallpaper bitcoin система bitcoin adc bitcoin zebra bitcoin fox bitcoin bonus bitcoin иконка bitcoin криптовалюта tether ann monero Let’s start with smart contracts, because they’re kind of the whole point of Ethereum.kupit bitcoin kong bitcoin виталик ethereum india bitcoin tether bootstrap investment bitcoin bitcoin ethereum buy
bitcoin traffic
bitcoin tails
символ bitcoin суть bitcoin bitcoin команды ethereum сбербанк вклады bitcoin bitcoin block visa bitcoin bitcoin майнер покер bitcoin mercado bitcoin l bitcoin bitcoin 2 A Blockchain distributed ledger is highly transparent as compared to a traditional ledger.tether coin polkadot bitcoin видео bitcoin de locate bitcoin total cryptocurrency bitcoin автомат bitcoin вебмани short bitcoin ethereum torrent all cryptocurrency
bitcoin avalon bitcoin ubuntu bitcoin book blocks bitcoin bitcoin 0 bitcoin валюты пример bitcoin ethereum casino
bitcoin minergate настройка bitcoin reverse tether bitcoin pro bitcoin fire bitcoin завести bitcoin mining взлом bitcoin bitcoin virus ethereum vk bitcoin конвертер bitcoin redex bcc bitcoin bitcoin get bitcoin регистрация сервисы bitcoin stealer bitcoin poloniex monero tether майнинг bitcoin sec ethereum статистика simplewallet monero лучшие bitcoin stealer bitcoin monero алгоритм ethereum news ethereum эфириум monero hardware
bitcoin сервисы криптовалюту monero Imagine that you want to send a payment to someone in another country. Without the help of blockchain technology, you would normally need to pay expensive fees (to the banks) and the transaction may take 3-10 days to be processed.Formal definitionbitcoin софт Organizational inertia:bitcoin markets ethereum виталий bitcoin symbol bitcoin окупаемость code bitcoin
avatrade bitcoin
bitcoin отзывы
ethereum виталий bitcoin ukraine
магазин bitcoin reddit cryptocurrency
blockstream bitcoin ставки bitcoin tp tether bitcoin capitalization monero обмен ethereum прибыльность bitcoin блокчейн
Getting your ICO verified with a professional audit will help promote your cryptocurrency project. It promotes the fact that your project is following industry standards and data protection policies — adds extra value to your project. It’s a crucial step!доходность ethereum ethereum swarm bitcoin playstation p2pool bitcoin
excel bitcoin bitcoin india bitcoin drip принимаем bitcoin bitcoin book bot bitcoin ethereum пул bitcoin store bitcoin пожертвование ethereum хешрейт
bitcoin word
nanopool monero
алгоритмы bitcoin заработок bitcoin nicehash bitcoin ethereum пулы xbt bitcoin calc bitcoin dice bitcoin bitcoin программа site bitcoin buy tether bitcoin investment *****a bitcoin key bitcoin mine ethereum transactions bitcoin genesis bitcoin maps bitcoin hd7850 monero bitcoin rate bitcoin solo book bitcoin jpmorgan bitcoin flappy bitcoin
bitcoin развод ethereum coins monero windows testnet ethereum bitcoin сайты
генератор bitcoin ethereum пул bitcoin hype
bitcoin казино bitcoin 1000 bitcoin хабрахабр bitcoin cny bitcoin zebra bitcoin keys продать monero
кредиты bitcoin autobot bitcoin кошель bitcoin buy tether key bitcoin claim bitcoin bitcoin background aliexpress bitcoin bitcoin инструкция bitcoin nodes bitcoin brokers monero hardfork технология bitcoin loans bitcoin bitcoin zona bitcoin best bitcoin sberbank bitcoin pay
the ethereum casper ethereum ethereum настройка connect bitcoin xmr monero bitcoin аккаунт This article has multiple issues. Please help improve it or discuss these issues on the talk page. (Learn how and when to remove these template messages)reddit bitcoin bitcoin покупка polkadot cadaver sell ethereum cryptocurrency charts calculator ethereum bitcoin ethereum abi ethereum exchange bitcoin эфир bitcoin love bitcoin bitcoin super ethereum course bitcoin zone puzzle bitcoin dark bitcoin сайте bitcoin half bitcoin bitcoin мерчант ютуб bitcoin bitcoin air ltd bitcoin проекта ethereum bitcoin loans bitcoin виджет bitcoin lion planet bitcoin добыча bitcoin bitcoin mine ethereum описание кости bitcoin bitcoin conf bitcoin баланс
bitcoin nodes курс bitcoin
cryptocurrency arbitrage bitcoin it
hashrate bitcoin майн bitcoin bitcoin prominer abi ethereum bitcoin q mining bitcoin bitcoin prune tether usd 600 bitcoin sgminer monero pirates bitcoin facebook bitcoin nvidia bitcoin
bitcoin security ethereum casper cryptocurrency faucet monero пул unconfirmed bitcoin ethereum programming bitcoin synchronization invest bitcoin скрипт bitcoin
bitcoin вебмани vps bitcoin
gadget bitcoin
bitcoin up bitcoin мастернода This can impact prices in two ways. First, it provides bitcoin access to investors who cannot afford to purchase an actual bitcoin, thus increasing demand. Second, it can reduce price volatility by allowing institutional investors who believe bitcoin futures are overvalued or undervalued, to use their substantial resources to make bets that bitcoin’s price will move in the opposite direction.trezor bitcoin bitcoin деньги monero minergate monero benchmark ethereum complexity status bitcoin форк ethereum аналоги bitcoin автомат bitcoin bitcoin antminer
gif bitcoin отзыв bitcoin автомат bitcoin bitcoin фермы виталий ethereum global bitcoin форк bitcoin