工作量证明
工作量证明
Consensus Mechanisms
28 个参考
一种共识机制,区块生产者必须执行计算工作才能提出区块。安全性来自于重写历史的成本,这需要重做工作。
出现在 28 个白皮书章节中
Abstract
...ork timestamps transactions by hashing them into an ongoing chain of hash-based proof-of-work, forming a record that cannot be changed without redoing the proof-of-work. The...
Proof-of-Work
...t a distributed timestamp server on a peer-to-peer basis, we will need to use a proof-of-work system similar to Adam Back's Hashcash [^6], rather than newspaper or Usenet po...
Network
...llects new transactions into a block.
3. Each node works on finding a difficult proof-of-work for its block.
4. When a node finds a proof-of-work, it broadcasts the block to...
Simplified Payment Verification
...work node. A user only needs to keep a copy of the block headers of the longest proof-of-work chain, which he can get by querying network nodes until he's convinced he has t...
Calculations
...; i <= k; i++)
poisson *= lambda / i;
sum -= poisson * (1 - pow(q / p, z - k));
}
return sum;
}
```
Running some results, we can see th...
Conclusion
...revent double-spending. To solve this, we proposed a peer-to-peer network using proof-of-work to record a public history of transactions that quickly becomes computationally...
Introduction and Existing Concepts
...raphy with a consensus algorithm for keeping track of who owns coins, known as "proof of work." The mechanism behind proof of work was a breakthrough in the space because it...
Mining
... of the previous block and less than 2 hours into the future.
3. Check that the proof of work on the block is valid.
4. Let `S[0]` be the state at the end of the previous bl...
Blockchain and Mining
...preserving network security.
The mining algorithm works similarly to Bitcoin's proof-of-work, requiring miners to find a nonce such that the hash of the block is below a ce...
Miscellanea And Concerns
...ifferent nodes process different subsets of transactions, and a transition from proof-of-work to proof-of-stake consensus, which could enable more efficient block production...
Technology Stack
...ed, immutable ledger maintained by a decentralized network of miners performing proof-of-work computation. As of 2016, the Bitcoin network represents the most battle-tested ...
Proof of Reserves
... Revoke Tokens (destruction) transactions that have been confirmed by Bitcoin's proof-of-work consensus. The blockchain provides a perfect, continuously updated accounting o...
Abstract
...while maintaining provable safety guarantees against Byzantine failures. Unlike proof-of-work systems that require massive computational expenditure and suffer from probabil...
Introduction
...ted payment system could operate without a trusted central authority by using a proof-of-work consensus mechanism. In Bitcoin, nodes compete to solve computationally expensi...
Existing Consensus Algorithms
...r open, permissionless networks where adversarial participants are expected.
**Proof-of-Work (Bitcoin).** Bitcoin's Nakamoto consensus uses proof-of-work to achieve Byzanti...
Unique Node Lists
...ode List (UNL) is the mechanism by which RPCA achieves Sybil resistance without proof-of-work. In a naive voting system where each node has equal influence, an attacker coul...
Discussion
... identifying areas where future improvements may be possible.
**Latency versus proof-of-work.** Compared to Bitcoin's proof-of-work consensus, RPCA achieves consensus laten...
Conclusion
...er than requiring global agreement among all nodes or computationally expensive proof-of-work, RPCA achieves consensus in a matter of seconds while maintaining provable safe...
References
...kamoto, S. (2008). "Bitcoin: A Peer-to-Peer Electronic Cash System." Introduced proof-of-work consensus as a solution to the double-spending problem in digital currency, ena...
Abstract
...to a widely used digital currency with a vibrant community. Built on the Scrypt proof-of-work algorithm, Dogecoin features fast block times, low transaction fees, and an inf...
Background
...ate of a shared ledger without requiring a trusted central authority. Bitcoin's proof-of-work mechanism, based on the SHA-256 hashing algorithm, provided a Sybil-resistant m...
Technical Specifications
Dogecoin operates on a proof-of-work consensus mechanism using the Scrypt hashing algorithm. Scrypt was chosen throu...
Network Architecture
...he most significant changes in Dogecoin's history was the adoption of Auxiliary Proof of Work (AuxPoW), commonly known as merge mining, in August 2014 with the release of Do...
Development History
...tial protocol upgrade in Dogecoin's history was the implementation of Auxiliary Proof of Work (AuxPoW) in version 1.8, released in September 2014. This change enabled merge ...
Conclusion
...strating pragmatic engineering in service of the project's survival. The Scrypt proof-of-work algorithm, one-minute block time, and inflationary monetary policy combine to c...
Technical Specifications
...shares the fundamental technical architecture of Bitcoin, including the SHA-256 proof-of-work consensus mechanism, the UTXO transaction model, the secp256k1 elliptic curve f...
Network Architecture
... unilateral control over the protocol.
Mining on Bitcoin Cash uses the SHA-256 proof-of-work algorithm, identical to Bitcoin. This means that the same ASIC mining hardware ...
相关文章
Whitepaper Deep Dive
Bitcoin 白皮书:逐节深度解析
深入分析Satoshi Nakamoto于2008年发布的原版白皮书,逐节解读从摘要到概率计算的全部内容。
Origin StorySatoshi Nakamoto 之谜:Bitcoin 白皮书如何改变了世界
一位匿名创始人在密码学邮件列表上发布了一篇9页论文,由此引发了一场万亿美元级别的革命。
Origin StoryLitecoin:Charlie Lee 的「Bitcoin 黄金,Litecoin 白银」
一位Google工程师如何创建了一个拥有更快区块和Scrypt挖矿的Bitcoin分叉,为随后的数千种altcoin树立了模板。
Technical ExplainerProof-of-Work 挖矿的实际运作原理:从哈希谜题到区块奖励
以易于理解的方式解释SHA-256挖矿、难度调整,以及为什么Bitcoin的耗电量超过某些国家。