Skip to content
This repository has been archived by the owner on Jul 14, 2020. It is now read-only.

Commit

Permalink
Update understanding-consensus.md
Browse files Browse the repository at this point in the history
  • Loading branch information
nahern committed Jul 1, 2020
1 parent c3bd52b commit e86c5ce
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions learn-about-cardano/understanding-consensus.md
@@ -1,7 +1,7 @@
## Understanding consensus

Consensus is the process by which a majority opinion is reached by everyone who is involved in running the blockchain. Agreement must be made on which blocks to produce, which chain to adopt, and to determine the single state of the network. The blocks that are made determine the state of the ledger - which transactions are confirmed, as well as account balance details.
Consensus is the process by which a majority opinion is reached by everyone who is involved in running the blockchain. Agreement must be made on the slot leader, which blocks to produce, which chain to adopt, and to determine the single state of the network. The blocks that are made determine the state of the ledger inclduing confirmed transactions as well as account balance details.

In a cryptocurrency, agreement must be made by the participants on which transactions have happened on the blockchain — the history of the ledger — which also determines who owns how much money now. Blockchains create consensus by allowing participants to bundle transactions that others have submitted to the system in blocks, and adding them to their chain” (sequence of blocks). Determining who is allowed to produce a block when, and what to do in case of conflicts, (such as two participants adding different blocks at the same point of the chain), is the purpose of the different consensus protocols
Blockchains create consensus by allowing participants to bundle transactions that others have submitted to the system in *blocks*, and add them to their *chain*, or sequence of blocks. Determining who is allowed to produce a block and when, as well as what to do in case of conflicts, (such as two participants adding different blocks at the same point of the chain), is the purpose of the different consensus protocols.

The consensus protocol has three main responsibilities; to perform a leader check and decide if a block should be produced, to handle chain selection, and to verify blocks that are produced.
Our ground-breaking proof-of-stake consensus protocol [Ouroboros](https://iohk.io/en/blog/posts/2020/06/23/the-ouroboros-path-to-decentralization/) is proven to have the same security guarantees that proof of work has. Rigorous security guarantees are established by Ouroboros and it was delivered with several peer-reviewed papers that were presented in top-tier conferences and publications in the area of cybersecurity and cryptography. Different [implementations of Ouroboros](https://iohk.io/en/blog/posts/2020/03/23/from-classic-to-hydra-the-implementations-of-ouroboros-explained/) have been developed. For further details on each flavour of Ouroboros, you can read the technical specifications for [Classic](https://iohk.io/en/research/library/papers/ouroborosa-provably-secure-proof-of-stake-blockchain-protocol/), [Byzantine Fault Tolerance (BFT)](https://iohk.io/en/research/library/papers/ouroboros-bfta-simple-byzantine-fault-tolerant-consensus-protocol/), [Genesis](https://iohk.io/en/research/library/papers/ouroboros-genesiscomposable-proof-of-stake-blockchains-with-dynamic-availability/), [Praos](https://iohk.io/en/research/library/papers/ouroboros-praosan-adaptively-securesemi-synchronous-proof-of-stake-protocol/), and more recently the scalability solution [Hydra](https://eprint.iacr.org/2020/299.pdf).

0 comments on commit e86c5ce

Please sign in to comment.