mirror of
https://github.com/autistic-symposium/decentralized-protocols-toolkit.git
synced 2025-05-02 06:46:10 -04:00
reorganize chapters
This commit is contained in:
parent
5a05bea513
commit
bf1f5938c1
23 changed files with 554 additions and 46 deletions
31
consensus/tendermint/README.md
Normal file
31
consensus/tendermint/README.md
Normal file
|
@ -0,0 +1,31 @@
|
|||
## tendermint
|
||||
|
||||
<br>
|
||||
|
||||
### tl; dr
|
||||
|
||||
<br>
|
||||
|
||||
* consensus protocol for ordering events in a distributed network under adversarial conditions (aka byzantine fault tolerant consenus, or atomic broadcast).
|
||||
* tendermint consists of two technical components: a blockchain consensus engine and a generic application interface, and works even if up to 1/3 of machines fail in arbitrary ways.
|
||||
* tendermint core (the consensus engine) performs BFT state machine replication (SMR) for arbitrary deterministic, finite state machines.
|
||||
* the application interface (abci) enables the transactions to be processed in any programming language.
|
||||
|
||||
<br>
|
||||
|
||||
<p align="center">
|
||||
<img src="https://github.com/go-outside-labs/decentralized-protocols-research/assets/138340846/fbb43593-d1d0-4efe-ae7e-80d880333a60" width="60%" align="center" style="padding:1px;border:1px solid black;" title="Jan 7th"/>
|
||||
</p>
|
||||
|
||||
<br>
|
||||
|
||||
---
|
||||
|
||||
### cool resources
|
||||
|
||||
<br>
|
||||
|
||||
* **[tendermint docs](https://docs.tendermint.com/)**
|
||||
* **[tenderming abci](https://github.com/tendermint/tendermint/tree/v0.34.x/abci)**
|
||||
* **[the latest gossip on BFT consensus, e. buchman et al.](https://arxiv.org/abs/1807.04938)**
|
||||
* **[cometbft (a distributed byzantine fault-tolerant derterministic state machine replication engine)](https://github.com/cometbft/cometbft)**
|
Loading…
Add table
Add a link
Reference in a new issue