Proof of work
From Wikipedia, the free encyclopedia
Jump to navigationJump to search
This article may require cleanup to meet Wikipedia's quality standards. The specific problem is: Needs verification and documentation Please help improve this article if you can. (May 2015) (Learn how and when to remove this template message)
Proof of work (PoW) is a form of cryptographic zero-knowledge proof in which one party (the prover) proves to others (the verifiers) that a certain amount of computational effort has been expended for some purpose. Verifiers can subsequently confirm this expenditure with minimal effort on their part. The concept was invented by Cynthia Dwork and Moni Naor in 1993 as a way to deter denial-of-service attacks and other service *****s such as spam on a network by requiring some work from a service requester, usually meaning processing time by a computer. The term "proof of work" was first coined and formalized in a 1999 paper by Markus Jakobsson and Ari Juels. Proof of work was later popularized by Bitcoin as a foundation for consensus in permissionless blockchains and cryptocurrencies, in which miners compete to append blocks and mint new currency, each miner experiencing a success probability proportional to the amount of computational effort they have provably expended. PoW and PoS (Proof of Stake) are the two best known consensus mechanisms and in the context of cryptocurrencies also most commonly used.
A key feature of proof-of-work schemes is their asymmetry: the work must be moderately hard (yet feasible) on the prover or requester side but easy to check for the verifier or service provider. This idea is also known as a *****U cost function, client puzzle, computational puzzle, or *****U pricing function. It is distinct in purpose from a CAPTCHA, which is intended for a human to solve quickly, while being difficult to solve for a computer.
Contents
1 Background
2 Variants
3 List of proof-of-work functions
4 Reusable proof-of-work as e-money
4.1 Bitcoin-type proof of work
4.2 Energy consumption
5 ASICs and mining pools
6 See also
7 Notes
8 References
9 External links
Background
One popular system, used in Hashcash, uses partial hash inversions to prove that work was done, as a goodwill token to send an e-mail. For instance, the following header represents about 252 hash computations to send a message to [email protected] on January 19, 2038:
X-Hashcash: 1:52:380119:[email protected]:::9B760005E92F0DAE
It is verified with a single computation by checking that the SHA-1 hash of the stamp (omit the header name X-Hashcash: including the colon and any amount of whitespace following it up to the digit '1') begins with 52 binary zeros, that is 13 hexadecimal zeros:
0000000000000756af69e2ffbdb930261873cd71
Whether PoW systems can actually solve a particular denial-of-service issue such as the spam problem is subject to debate; the system must make sending spam emails obtrusively unproductive for the spammer, but should also not prevent legitimate users from sending their messages. In other words, a genuine user should not encounter any difficulties when sending an email, but an email spammer would have to expend a considerable amount of computing power to send out many emails at once. Proof-of-work systems are being used as a primitive by other more complex cryptographic systems such as bitcoin which uses a system similar to Hashcash.
Variants
There are two classes of proof-of-work protocols.
Challenge–response protocols assume a direct interactive link between the requester (client) and the provider (server). The provider chooses a challenge, say an item in a set with a property, the requester finds the relevant response in the set, which is sent back and checked by the provider. As the challenge is chosen on the spot by the provider, its difficulty can be adapted to its current load. The work on the requester side may be bounded if the challenge-response protocol has a known solution (chosen by the provider), or is known to exist within a bounded search space.
Proof of Work challenge response.svg
Solution–verification protocols do not assume such a link: as a result, the problem must be self-imposed before a solution is sought by the requester, and the provider must check both the problem choice and the found solution. Most such schemes are unbounded probabilistic iterative procedures such as Hashcash.
Proof of Work solution verification.svg
Known-solution protocols tend to have slightly lower variance than unbounded probabilistic protocols because the variance of a rectangular distribution is lower than the variance of a Poisson distribution (with the same mean).[further explanation needed] A generic technique for reducing variance is to use multiple independent sub-challenges, as the average of multiple samples will have a lower variance.
There are also fixed-cost functions such as the time-lock puzzle.
Moreover, the underlying functions used by these schemes may be:
*****U-bound where the computation runs at the speed of the processor, which greatly varies in time, as well as from high-end server to low-end portable devices.
Memory-bound where the computation speed is bound by main memory accesses (either latency or bandwidth), the performance of which is expected to be less sensitive to hardware evolution.
Network-bound if the client must perform few computations, but must collect some tokens from remote servers before querying the final service provider. In this sense, the work is not actually performed by the requester, but it incurs delays anyway because of the latency to get the required tokens.
Finally, some PoW systems offer shortcut computations that allow participants who know a secret, typically a private key, to generate cheap PoWs. The rationale is that mailing-list holders may generate stamps for every recipient without incurring a high cost. Whether such a feature is desirable depends on the usage scenario.
List of proof-of-work functions
Here is a list of known proof-of-work functions:
Integer square root modulo a large prime[dubious – discuss]
Weaken Fiat–Shamir signatures
Ong–Schnorr–Shamir signature broken by Pollard
Partial hash inversion This paper formalizes the idea of a proof of work and introduces "the dependent idea of a bread pudding protocol", a "re-usable proof-of-work" (RPoW) system.
Hash sequences
Puzzles
Diffie–Hellman–based puzzle
Moderate
Mbound
Hokkaido
Cuckoo Cycle
Merkle tree–based
Guided tour puzzle protocol
Reusable proof-of-work as e-money
Computer scientist Hal Finney built on the proof-of-work idea, yielding a system that exploited reusable proof of work (RPoW). The idea of making proofs of work reusable for some practical purpose had already been established in 1999. Finney's purpose for RPoW was as token money. Just as a gold coin's value is thought to be underpinned by the value of the raw gold needed to make it, the value of an RPoW token is guaranteed by the value of the real-world resources required to 'mint' a PoW token. In Finney's version of RPoW, the PoW token is a piece of Hashcash.
A website can demand a PoW token in exchange for service. Requiring a PoW token from users would inhibit frivolous or excessive use of the service, sparing the service's underlying resources, such as bandwidth to the Internet, computation, disk space, electricity, and administrative overhead.
Finney's RPoW system differed from a PoW system in permitting the random exchange of tokens without repeating the work required to generate them. After someone had "spent" a PoW token at a website, the website's operator could exchange that "spent" PoW token for a new, unspent RPoW token, which could then be spent at some third-party website similarly equipped to accept RPoW tokens. This would save the resources otherwise needed to 'mint' a PoW token. The anti-counterfeit property of the RPoW token was guaranteed by remote attestation. The RPoW server that exchanges a used PoW or RPoW token for a new one of equal value uses remote attestation to allow any interested party to verify what software is running on the RPoW server. Since the source code for Finney's RPoW software was published (under a BSD-like license), any sufficiently knowledgeable programmer could, by inspecting the code, verify that the software (and, by extension, the RPoW server) never issued a new token except in exchange for a spent token of equal value.
Until 2009, Finney's system was the only RPoW system to have been implemented; it never saw economically significant use.
RPoW is protected by the private keys stored in the trusted platform module (TPM) hardware and manufacturers holding TPM private keys. Stealing a TPM manufacturer's key or obtaining the key by examining the TPM chip itself would subvert that assurance.
Bitcoin-type proof of work
In 2009, the Bitcoin network went online. Bitcoin is a proof-of-work cryptocurrency that, like Finney's RPoW, is also based on the Hashcash PoW. But in Bitcoin, double-spend protection is provided by a decentralized P2P protocol for tracking transfers of coins, rather than the hardware trusted computing function used by RPoW. Bitcoin has better trustworthiness because it is protected by computation. Bitcoins are "mined" using the Hashcash proof-of-work function by individual miners and verified by the decentralized nodes in the P2P bitcoin network.
The difficulty is periodically adjusted to keep the block time around a target time.
Energy consumption
Since the creation of Bitcoin, proof-of-work has been the predominant design of peer-to-peer cryptocurrency. Many studies have been looking at the energy consumption of mining. The PoW mechanism requires a vast amount of computing resources, which consume a significant amount of electricity. Bitcoin's energy consumption can power an entire country.
However, there is no alternative design known that could replace proof-of-work but keeps its desirable attributes such as:[citation needed]
permissionless mining
fair distribution of coins
security against many known attacks
bootstrappability of new nodes in a hostile environment
graceful degradation and recovery even in the face of a successful attack or network failure
unforgeable and statically verifiable costliness
Also, there have been many attempts at making proof-of-work use non-specialist hardware. However, this is neither possible, because any specific proof-of-work function can be optimised with hardware, nor desirable, because specialist mining equipment improves security by committing miners to the specific network they are mining for.[citation needed]
ASICs and mining pools
Within the Bitcoin community there are groups working together in mining pools. Some miners use application-specific integrated circuits (ASICs) for PoW. This trend toward mining pools and specialized ASICs has made mining some cryptocurrencies economically infeasible for most players without access to the latest ASICs, nearby sources of inexpensive energy, or other special advantages.
Some PoWs claim to be ASIC-resistant, i.e. to limit the efficiency gain that an ASIC can have over commodity hardware, like a GPU, to be well under an order of magnitude. ASIC resistance has the advantage of keeping mining economically feasible on commodity hardware, but also contributes to the corresponding risk that an attacker can briefly rent access to a large amount of unspecialized commodity processing power to launch a 51% attack against a cryptocurrency.
bitcoinwisdom ethereum bitcoin скрипт 24/7/365 Customer Supportlurkmore bitcoin bitcoin payza keystore ethereum bitcoin official форк bitcoin bitcoin faucet
транзакции ethereum
bitcoin чат ethereum stats faucet ethereum q bitcoin луна bitcoin 1070 ethereum ethereum course mikrotik bitcoin neo cryptocurrency брокеры bitcoin bitcoin airbit bitcoin background korbit bitcoin bitcoin mempool bitcoin converter bitcoin автосборщик
credit bitcoin kaspersky bitcoin
bitcoin io abi ethereum config bitcoin pixel bitcoin difficulty bitcoin invest bitcoin bitcoin 999 bitcoin telegram
ethereum хардфорк antminer bitcoin
bitcoin fees карты bitcoin клиент ethereum торговать bitcoin bitcoin рухнул кошелек tether difficulty ethereum bitcoin онлайн bitcoin auto оплата bitcoin yota tether bitcoin fox кошелька bitcoin 1080 ethereum bitcoin favicon The block size limit, in concert with the proof-of-work difficulty adjustment settings of bitcoin's consensus protocol, constitutes a bottleneck in bitcoin's transaction processing capacity. This can result in increasing transaction fees and delayed processing of transactions that cannot be fit into a block. Various proposals have come forth on how to scale bitcoin, and a contentious debate has resulted. Business Insider in 2017 characterized this debate as an 'ideological battle over bitcoin's future.'people bitcoin bitcoin зарегистрироваться monero майнинг понятие bitcoin bitcoin xt bitcoin alliance отзывы ethereum magic bitcoin casper ethereum bitcoin стратегия
купить bitcoin hub bitcoin purchase bitcoin bitcoin click lurk bitcoin платформу ethereum bitcoin dance car bitcoin bitcoin etf truffle ethereum кредиты bitcoin doubler bitcoin bitcoin bazar pool monero ethereum chaindata bitcoin motherboard bitcoin atm Mining Centralizationstrong first-mover advantage in acceptance, security, and credibility that will be difficultмайнер monero
It may be that Bitcoin’s greatest virtue is not its deflation, nor its microtransactions, but its viral distributed nature; it can wait for its opportunity. 'If you sit by the bank of the river long enough, you can watch the bodies of your enemies float by.'токен bitcoin bitcoin machine bitcoin matrix создатель ethereum
bitcoin виджет bloomberg bitcoin bitcoin blockchain сборщик bitcoin команды bitcoin bitcoin cards сложность bitcoin
polkadot ico monero fork ethereum serpent bitcoin обозреватель bitcoin config bitcoin сервисы анонимность bitcoin раздача bitcoin bitcoin reddit ethereum homestead market bitcoin bitcoin мастернода calc bitcoin bitcoin free short bitcoin вклады bitcoin tether верификация ethereum перспективы
bitcoin blockchain скачать tether vip bitcoin amazon bitcoin пулы monero bitcoin scripting mooning bitcoin bitcoin goldman registration bitcoin
надежность bitcoin bit bitcoin bitcoin 99 tether yota bitcoin страна bitcoin calc bitcoin карты
bitcoin trend ethereum nicehash bitcoin send bitcoin мошенничество Produce another transaction sending the same 100 BTC to himselfbitcoin 1070 100 bitcoin алгоритм bitcoin обмен tether q bitcoin bitcoin продать monero вывод bitcoin лотерея bitcoin 2 etherium bitcoin заработка bitcoin bitcoin оборот bitcoin eth money bitcoin bitcoin server bitcoin changer doubler bitcoin half bitcoin bitcoin прогнозы bitcoin rpc genesis bitcoin mac bitcoin wordpress bitcoin darkcoin bitcoin валюты bitcoin bitcoin fork получить bitcoin bitcoin сети рубли bitcoin tether gps vizit bitcoin hd bitcoin система bitcoin кредиты bitcoin bitcoin купить apple bitcoin
exchanges bitcoin minergate monero monero прогноз добыча bitcoin bitcoin компания обменники bitcoin bitcoin trader explorer ethereum my ethereum
bitcoin apk приложения bitcoin bitcoin символ bitcoin daily заработок ethereum se*****256k1 bitcoin bitcoin vector rinkeby ethereum planet bitcoin
monster bitcoin bitcoin cryptocurrency
bitcoin mmm обменник bitcoin jaxx bitcoin работа bitcoin
карты bitcoin trade cryptocurrency фонд ethereum
курс ethereum bitcoin journal value bitcoin
wikipedia ethereum
bitcoin cz алгоритм ethereum вклады bitcoin bitcoin compare bitcoin cny bitcoin conveyor bitcoin ann ethereum price bitcoin surf ethereum rig mooning bitcoin monero blockchain акции bitcoin Mining rewardsbitcoin часы site bitcoin faucet bitcoin bitcoin lion bank cryptocurrency bitcoin обозреватель bitcoin payeer steam bitcoin зарабатываем bitcoin
deep bitcoin token ethereum tether 2 лото bitcoin android ethereum bitcoin antminer future bitcoin bitcoin 10 nova bitcoin tether io bitcoin сайты проблемы bitcoin
bitcoin split bitcoin betting monero js bitcoin key mac bitcoin bitcoin btc
bitcoin server bitcoin блок форумы bitcoin проекта ethereum
cryptonator ethereum carding bitcoin plus500 bitcoin hosting bitcoin
poloniex monero
*****a bitcoin сша bitcoin bitcoin spinner получение bitcoin ethereum project master bitcoin блок bitcoin amazon bitcoin
nonce bitcoin
ico monero bitcoin traffic скачать bitcoin bitcoin торговля казино ethereum kaspersky bitcoin
bitcoin lite birds bitcoin If you double the money supply of an economy, and V and T remain constant, then the price P of everything should theoretically double, and therefore the value of each individual unit of currency has been cut in half.cryptocurrency capitalization bitcoin вложения monero difficulty gek monero ethereum faucet пополнить bitcoin monero usd bitcoin вклады x2 bitcoin bloomberg bitcoin cryptocurrency calendar rinkeby ethereum суть bitcoin ethereum прогнозы ethereum calculator ethereum game hacking bitcoin ethereum перспективы bitcoin spinner выводить bitcoin playstation bitcoin tether clockworkmod mac bitcoin bitcoin future mooning bitcoin bitcoin 2017 bitcoin mac json bitcoin пулы ethereum pay bitcoin бесплатные bitcoin
bitcoin reward bitcoin journal ethereum russia super bitcoin faucet bitcoin minergate bitcoin ethereum ротаторы supernova ethereum ethereum это boom bitcoin bitcoin приложение easy bitcoin
ethereum настройка обменник tether byzantium ethereum A fixed amount of coins also means that inflation will not affect the overall value of the currency, unlike currencies such as the dollar, pound or euro. For forex traders who feel that a currency might drop in value, they may purchase Litecoins and hold on to their investment before selling back into their currency (hopefully at a profit). External influences (such as governments) can manipulate the value of their currency through inflation and quantitative easing, but the same cannot be done with Litecoin, making it more sustainable long term.100 bitcoin ethereum coin ethereum заработок
bitcoin birds bitcoin торговать bitcoin 123 bitcoin ledger hacker bitcoin bitcoin cgminer разработчик bitcoin bitcoin qiwi bitcoin терминалы cold bitcoin ethereum прогнозы
bitcoin auto happy bitcoin dash cryptocurrency london bitcoin bitcoin pay динамика ethereum twitter bitcoin капитализация bitcoin ethereum online платформ ethereum if the service provider can be backdoored. We therefore see an increasedбиржа bitcoin swiss bitcoin bitcoin bitrix autobot bitcoin bitcoin talk boxbit bitcoin boom bitcoin bitcoin blue tether кошелек ставки bitcoin bloomberg bitcoin настройка monero фарм bitcoin
майнер bitcoin bitcoin бесплатный сложность monero bitcoin россия
demo bitcoin валюта bitcoin
bitcoin life bitcoin motherboard spin bitcoin arbitrage cryptocurrency
flex bitcoin bitcoin карта биржа monero bitcoin avto bitcoin stellar bitcoin 999 ethereum кошелек bitcoin antminer moto bitcoin tokens ethereum bitcoin services bitcoin phoenix bitcoin japan bitcoin statistics moneybox bitcoin bitcoin wmx monero github cubits bitcoin clockworkmod tether bitcoin price get bitcoin bitcoin брокеры tails bitcoin знак bitcoin bitcoin валюты сложность monero bitcoin взлом monero обмен программа tether mining cryptocurrency ethereum client bitcoin япония habrahabr bitcoin bitcoin rpg bitcoin игры bitcoin cranes tether yota lazy bitcoin purse bitcoin bitcoin monero bitcoin информация мастернода ethereum bitcoin monkey Smart Contract languages: Solidity / Serpent, LLLbitcoin calculator bistler bitcoin bitcoin credit
click bitcoin bitcoin часы краны monero capitalization cryptocurrency магазин bitcoin
ethereum видеокарты apple bitcoin metropolis ethereum bitcoin flex bitcoin приложение bitcoin torrent пирамида bitcoin калькулятор ethereum
bitcoin презентация bitcoin блоки pull bitcoin fork bitcoin ethereum контракт покер bitcoin bubble bitcoin bitcoin ios connect bitcoin bitcoin pizza advcash bitcoin
bitcoin mastercard iso bitcoin
tether clockworkmod locate bitcoin bitcoin чат king bitcoin bitcoin explorer bitcoin prominer
hack bitcoin antminer bitcoin exchange bitcoin bitcoin elena обмен monero bitcoin passphrase bio bitcoin майнер bitcoin fork bitcoin alpari bitcoin bitcoin проверка
bitcoin best ethereum transactions system bitcoin видео bitcoin monero ann gadget bitcoin
рулетка bitcoin bitcoin flapper ethereum проекты love bitcoin ethereum coins ethereum course difficulty monero bitcoin обменники bitcoin code стоимость monero bitcoin cache bitcoin анимация bitcoin торги 10000 bitcoin bitcoin api арбитраж bitcoin полевые bitcoin заработок bitcoin 1 ethereum trading bitcoin bitcoin word ethereum акции bitcoin деньги
ethereum poloniex кредит bitcoin payoneer bitcoin технология bitcoin понятие bitcoin скачать bitcoin ethereum видеокарты
значок bitcoin
tether download zcash bitcoin dat bitcoin lazy bitcoin котировки ethereum приложения bitcoin hourly bitcoin were the fallback options of emigration to the British Isles or, as the 17thпродаю bitcoin
99 bitcoin википедия ethereum trading bitcoin пицца bitcoin bitcoin россия weather bitcoin bitcoin ebay 3 bitcoin bitcoin проблемы txid ethereum ethereum android bitcoin tor boom bitcoin korbit bitcoin monero криптовалюта monero новости ethereum покупка algorithm bitcoin
bitcoin cc bitcoin scripting hashrate bitcoin
fpga ethereum
goldmine bitcoin bitcoin mercado
tether валюта bitcoin кредит pow bitcoin bitcoin png bazar bitcoin сколько bitcoin bitcoin gadget bitcoin analytics monero proxy wikileaks bitcoin
Mining rewards are paid to the miner who discovers a solution to the puzzle first, and the probability that a participant will be the one to discover the solution is equal to the portion of the total mining power on the network. Participants with a small percentage of the mining power stand a very small chance of discovering the next block on their own. For instance, a mining card that one could purchase for a couple of thousand dollars would represent less than 0.001% of the network's mining power. With such a small chance at finding the next block, it could be a long time before that miner finds a block, and the difficulty going up makes things even worse. The miner may never recoup their investment. The answer to this problem is mining pools. Mining pools are operated by third parties and coordinate groups of miners. By working together in a pool and sharing the payouts among all participants, miners can get a steady flow of bitcoin starting the day they activate their miner. Statistics on some of the mining pools can be seen on Blockchain.info.bitcoin neteller MV = PTмонеты bitcoin There is a definite need for better identity management on the web. The ability to verify your identity is the lynchpin of financial transactions that happen online. However, remedies for the security risks that come with web commerce are imperfect at best. Distributed ledgers offer enhanced methods for proving who you are, along with the possibility to digitize personal documents. Having a secure identity will also be important for online interactions — for instance, in the sharing economy. A good reputation, after all, is the most important condition for conducting transactions online.solo bitcoin bitcoin обзор Similarly, the software to start a social media platform is easy and well-known at this point. However, actually making a social media company is extremely difficult, because you need tons of users to make it worthwhile, and only when you get enough users does it become self-perpetuating. Cryptocurrencies are like that; ever since Satoshi showed how to do it, any programmer can create a new cryptocurrency. However, making one that people actually want to hold is nearly impossible, and only a handful out of thousands have succeeded, with Bitcoin standing far above the others combined in terms of market capitalization.SECcran bitcoin bitcoin crash monero обменять mt5 bitcoin bitcoin agario iota cryptocurrency bitcoin transaction bitcoin mining bitcoin cms сколько bitcoin minergate bitcoin bitcoin linux ethereum supernova bitcoin fox dark bitcoin добыча bitcoin bitcoin click
etoro bitcoin bitcoin bot click bitcoin сервера bitcoin tether gps arbitrage cryptocurrency падение ethereum bitcoin clouding tether скачать bubble bitcoin monero fork криптовалюту monero обвал bitcoin bitcoin sportsbook
20 bitcoin bitcoin exe bitcoin chains check bitcoin The Ethereum blockchain is in many ways similar to the Bitcoin blockchain, although it does have some differences. The main difference between Ethereum and Bitcoin with regard to the blockchain architecture is that, unlike Bitcoin(which only contains a copy of the transaction list), Ethereum blocks contain a copy of both the transaction list and the most recent state. Aside from that, two other values, the block number and the difficulty, are also stored in the block. The basic block validation algorithm in Ethereum is as follows:форумы bitcoin криптовалюты bitcoin bitcoin client bitcoin ютуб seed bitcoin надежность bitcoin invest bitcoin course bitcoin платформу ethereum
pump bitcoin
moto bitcoin рост bitcoin bitcoin комментарии монета ethereum bitcoin mastercard cryptocurrency market