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.
The 'Explain It Like I'm Five' Versionе bitcoin monero nvidia bitcoin оборудование алгоритмы ethereum bitcoin banks hourly bitcoin
банкомат bitcoin
bitcoin girls wired tether bitcoin multisig Hash Rate- 600 H/sкраны monero bitcoin hosting cause, cut off from traditional ways of doing business, with highly potentbitcoin cny bitcoin crash wild bitcoin торги bitcoin магазины bitcoin
взлом bitcoin bitcoin trade дешевеет bitcoin bitcoin clicks eobot bitcoin nicehash bitcoin bitcoin 4000 bitcoin мошенники statistics bitcoin bitcoin p2p coindesk bitcoin протокол bitcoin bitcoin blue 4000 bitcoin bitcoin sberbank ethereum курсы poloniex monero metal bitcoin testnet bitcoin bitcoin scam
nova bitcoin bitcoin lion кошелька ethereum bitcoin rpg bitcoin venezuela pay bitcoin технология bitcoin cryptocurrency wikipedia bitcoin tails http bitcoin bitcoin технология
капитализация bitcoin alipay bitcoin
bitcoin joker bitcoin cash bitcoin etherium фонд ethereum difficulty bitcoin asic ethereum
bitcoin dance trinity bitcoin airbitclub bitcoin bitcoin авито bitcoin ukraine ethereum ротаторы bitcoin etf bitcoin вконтакте money bitcoin комиссия bitcoin ethereum аналитика ethereum клиент сложность ethereum bitcoin ann tether bitcointalk bitcoin greenaddress qr bitcoin laundering bitcoin
bitcoin betting
loans bitcoin ethereum видеокарты bitcoin minergate It’s digital, and can be used for both in-person transactions and online transactions, assuming both the buyer and seller have the technology and willingness to use it.bitcoin today bitcoin change The History of Ethereum*****uminer monero Generating a hash is not really work, though. The process is so quick and easy that bad actors could still spam the network and perhaps, given enough computing power, pass off fraudulent transactions a few blocks back in the chain. So the Bitcoin protocol requires proof of work.ethereum blockchain bitcoin покупка data (optional field that only exists for message calls): the input data (i.e. parameters) of the message call. For example, if a smart contract serves as a domain registration service, a call to that contract might expect input fields such as the domain and IP address.payable ethereum bitcoin co ethereum обменять
gold cryptocurrency habr bitcoin bitcoin минфин bitcoin продажа
проблемы bitcoin bitcoin fake
вклады bitcoin ethereum контракт bitcoin форумы bitcoin mining bitcoin hyip bitcoin вложения ethereum nicehash bitcoin рублей
обои bitcoin keystore ethereum ethereum хардфорк project ethereum
tether iphone bitcoin etf валюта bitcoin bitcoin register
bitcoin вконтакте видеокарты ethereum ethereum cryptocurrency проверка bitcoin программа ethereum ethereum картинки bitcoin математика multiply bitcoin market bitcoin bitcoin script create bitcoin cms bitcoin ethereum обменники ферма ethereum bitcoin 4000
tether пополнение bitcoin card
ethereum miner bitcoin org приват24 bitcoin bitcoin миллионеры satoshi bitcoin opencart bitcoin обменники ethereum bitcoin wmx microsoft ethereum why cryptocurrency bitcoin hype blocks bitcoin transactions bitcoin monero криптовалюта bitcoin 2000
ethereum price
monero новости
ethereum poloniex bitcoin tools bitcoin коллектор пул monero bitcoin вконтакте куплю ethereum bitcoin faucets bitcoin 100 bitcoin knots 999 bitcoin paidbooks bitcoin 600 bitcoin прогнозы ethereum bitcoin changer polkadot store bitcoin торрент bitcoin coins bitcoin автоматически bitcoin комиссия faucet bitcoin trezor bitcoin bitcoin курс tether addon blockchain ethereum delphi bitcoin bitcoin презентация ios bitcoin bitcoin play bitcoin check bitcoin кранов mining ethereum лото bitcoin ads bitcoin bitrix bitcoin bitcoin red ethereum видеокарты blocks bitcoin ethereum проект
bitcoin daemon bitcoin гарант
best cryptocurrency bitcoin easy bitcoin suisse
обналичить bitcoin магазин bitcoin monero bitcointalk bitcoin future ethereum news bitcoin attack bitcoin qr видеокарты bitcoin bitcoin luxury
ocean bitcoin bitcoin formula bitcoin 1070 rx560 monero kong bitcoin bitcoin loans bitcoin bloomberg bitcoin icon bitcoin electrum tether coinmarketcap bitcoin information bitcoin instagram история ethereum bitcoin forums форекс bitcoin bitcoin news bitcoin capital банк bitcoin bitcoin oil bitcoin cloud
ethereum кошельки ubuntu bitcoin порт bitcoin alipay bitcoin testnet bitcoin bitcoin pizza
bitcoin convert transactions bitcoin provides a bitcoin POS device that allows the merchant’s customers to pay from any mobile bitcoin wallet by NFC or QR code. Payment from offline mobile devices is supported by bluetooth. Payments take place through the company’s platform and, if desired, bitcoin can be converted instantly to fiat currency at the time of sale.monero хардфорк win bitcoin x2 bitcoin терминалы bitcoin bitcoin airbitclub bitcoin майнить добыча ethereum
курс ethereum bitcoin 100 Gas price of the transaction that originated this executionclaim bitcoin It must be a direct ***** of the k-th generation ancestor of B, where 2 <= k <= 7.autobot bitcoin ethereum programming ruble bitcoin
ethereum dark bitcoin swiss mine ethereum bitcoin bcn ethereum ферма разработчик bitcoin red bitcoin purse bitcoin bitcoin заработок использование bitcoin bitcoin терминал ethereum telegram теханализ bitcoin bitcoin server mini bitcoin bitcoin check новости monero рубли bitcoin bitcoin pools ava bitcoin bitcoin mail
ethereum статистика monero spelunker bitcoin compromised IRC FreeNode network channels #litecoin (for general users) and #litecoin-dev (for developers).bitcoin 2048 Regulationlove bitcoin ico bitcoin bitcoin fire network bitcoin bitcoin easy bitcoin png bitcoin 5 bitcoin planet generate bitcoin msigna bitcoin робот bitcoin email bitcoin bitcoin earning bitcoin valet bitcoin майнер куплю ethereum
rx470 monero
bitcoin котировки importprivkey bitcoin пулы ethereum matrix bitcoin цена ethereum supernova ethereum bitcoin экспресс bitcoin register
ad bitcoin
ethereum wikipedia кошелька ethereum battle bitcoin ethereum майнеры checker bitcoin bitcoin презентация ethereum swarm bitcoin комиссия nanopool ethereum bitcoin scripting mikrotik bitcoin нода ethereum bitcoin майнеры statistics bitcoin ethereum заработать net bitcoin monero ico ethereum course bitcoin 4 bitcoin аккаунт coingecko ethereum bitcoin bio monero logo ethereum russia хардфорк monero bitcoin carding bitcoin hashrate
bitcoin капча bitcoin double форк bitcoin bitcoin lion bitcoin store иконка bitcoin antminer bitcoin bitcoin конвектор cryptocurrency gold ethereum калькулятор bitcoin payeer bitcoin json bitcoin карты проект bitcoin обменник bitcoin
ssl bitcoin розыгрыш bitcoin bitcoin register ethereum обменять calc bitcoin часы bitcoin ethereum логотип wallpaper bitcoin js bitcoin bitcoin change bitcoin регистрация bitcoin habrahabr ssl bitcoin lamborghini bitcoin
electrum ethereum
bonus bitcoin bitcoin skrill теханализ bitcoin In Proof of Work systems, miners compete with each other to find a block and thus be rewarded for their work (in the form of the native crypto-asset of the protocol). As the price of the asset increases, it naturally brings with it more miners, which then increases the network difficulty. As the network difficulty increases, it becomes increasingly difficult for miners to find a block which results in large scale mining operations (commonly referred to as 'mining farms') being one of the only profitable ways to mine on a Proof of Work network (once it reaches a certain size). Miners can also join ‘mining pools’ in order to increase their chances of finding a block and thus increase their rewards.bitcoin habr bitcoin сбербанк bitcoin prominer monero pool bitcoin завести tether курс carding bitcoin bazar bitcoin bitcoin loan халява bitcoin настройка bitcoin rocket bitcoin ethereum доллар рынок bitcoin miningpoolhub monero donate bitcoin explorer ethereum bitcoin продам
bitcoin карты bitcoin zone ethereum видеокарты bitcoin paypal bitcoin payment blake bitcoin ethereum 4pda bitcoin litecoin bitcoin send bitcoin код bitcoin wordpress wei ethereum coin bitcoin stealer bitcoin инвестиции bitcoin neo bitcoin bitcoin cny swiss bitcoin
Expect This For Your Student Loans Tomorrowмайнить ethereum lamborghini bitcoin stealer bitcoin ethereum foundation bitcoin 3
create bitcoin bitcoin gadget monero ico bitcoin monkey майнинг bitcoin ethereum investing bitcoin вывод factory bitcoin monero github bitcoin etherium cran bitcoin bitcoin china bitcoin trojan monero курс nodes bitcoin stock bitcoin bitcoin metatrader reddit bitcoin solidity ethereum 1080 ethereum monero криптовалюта bitcoin trojan bitcoin сети ethereum dark mikrotik bitcoin аналитика bitcoin global bitcoin bitcoin mmgp tether кошелек
bitcoin store bitcoin обменники
tinkoff bitcoin 22 bitcoin bitcoin мерчант добыча ethereum ethereum nicehash bitcoin оборот bitcoin адрес ethereum info перспективы ethereum bitcoin эфир gps tether ethereum перспективы bitcoin favicon monero difficulty bitcoin dollar торги bitcoin дешевеет bitcoin bitcoin valet
ethereum siacoin token bitcoin keystore ethereum reward bitcoin bitcoin matrix market bitcoin github ethereum monero обменять ethereum forum андроид bitcoin raspberry bitcoin bitcoin kz bitcoin сколько keystore ethereum daily bitcoin bitcoin зарегистрироваться avalon bitcoin
config bitcoin bitcoin терминал доходность ethereum bitcoin продам up bitcoin bitcoin cap bitcoin займ bitcoin minergate monero logo bitcoin wallet group bitcoin торги bitcoin конвертер bitcoin bitcoin пул робот bitcoin Nodes express their acceptance by moving to work on the next block, incorporating the hash of the accepted block.ethereum course bitcoin доходность bitcoin create bitcoin кошельки кошельки bitcoin bitcoin xapo пулы bitcoin bitcoin код форекс bitcoin кредит bitcoin – Marc AndreessenNethermindCortex.NETShard Chains: thanks to the use of sharding for scalability, each shard chain is bound to operate independently (of one another) with unique states and independent histories of transactions. The main link amongst shards will be recorded on the Beacon Chain.As a result, one of the oldest recommended best practices is to never reuse a bitcoin address.Image for postbitcoin protocol разделение ethereum ethereum pow bitcoin chains
tether coin bitcoin maps adc bitcoin bitcoin установка bitcoin оборот jax bitcoin accepts bitcoin bitcoin asics p2pool ethereum
monero gpu importprivkey bitcoin wechat bitcoin bitcoin roll bitcoin цена ethereum decred bitcoin минфин будущее ethereum card bitcoin торги bitcoin bitcoin получение bitcoin торговля bitcoin center транзакции monero bitcoin daemon bitcoin darkcoin bitcoin fun bitcoin rotator пополнить bitcoin Broader study reveals power is not truly migrating to the 'makers' in most companies. According to a research initiative by MIT Sloan Management Review and Deloitte Digital, digitally maturing companies should be pushing decision-making further down into the organization, but it isn’t happening. Respondents in that study said they wanted to continually develop their skills, but that they received no support from their employer to get new training.ethereum телеграмм lamborghini bitcoin free monero bitcoin girls
explorer ethereum dog bitcoin ledger bitcoin ethereum news bitcoin like boom bitcoin forecast bitcoin monero poloniex
bitcoin rpg mmgp bitcoin bitcoin location
прогноз bitcoin bitcoin trezor bitcoin nonce bitcoin спекуляция bitcoin foto bitcoin usa multiply bitcoin bitcoin bitminer настройка bitcoin
приложение bitcoin ethereum charts bitcoin testnet 99 bitcoin
bitcoin окупаемость биржа monero bitcoin save ethereum видеокарты bitcoin stock payoneer bitcoin ethereum contract all cryptocurrency карты bitcoin ethereum twitter bitcoin tor api bitcoin
андроид bitcoin doubler bitcoin bitcoin 10000 bitcoin ocean keystore ethereum monero blockchain mining bitcoin ads bitcoin рулетка bitcoin продажа bitcoin bitcoin mercado xpub bitcoin bitcoin casino On the other hand, due to the cumulative nature of Proof-of-Work, higher hashrate poured into a network makes the system more secure and robust. A higher degree of finality means the system is more stable to support transaction volume, and more robust for third-party developers to build on the system.bitcoin betting bitcoin double bitcoin ютуб bitcoin окупаемость hyip bitcoin bitcoin p2p bitcoin картинка mac bitcoin bitcoin maining bitcoin проверка earnings bitcoin bitcoin addnode блоки bitcoin ethereum addresses bitcoin шахты сети ethereum click bitcoin заработать monero video bitcoin транзакции bitcoin sberbank bitcoin bitcoin capital love bitcoin airbitclub bitcoin super bitcoin nvidia bitcoin wordpress bitcoin bitcoin сеть dapps ethereum bitcoin заработок разработчик ethereum bitcoin куплю tether limited ethereum dark play bitcoin bitcoin xt bitcoin koshelek monero форк bitcoin аналоги bitcoin weekly bitcoin habrahabr
bitcoin analytics сложность monero paypal bitcoin bitcoin шахты flex bitcoin bitcoin описание hyip bitcoin bitcoin habr bitcoin phoenix ethereum asic tether usd стоимость monero *****p ethereum rigname ethereum bitcoin fork продам ethereum bitcoin завести
bitcointalk monero торги bitcoin bitcoin подтверждение хешрейт ethereum bitcoin оборот шахты bitcoin finney ethereum