aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHsuan Lee <jacky@17.media>2019-02-24 08:26:27 +0800
committerHsuan Lee <jacky@17.media>2019-02-24 08:26:27 +0800
commit01d870d1200d5d6feba96b5a50988c1be1dbd9a6 (patch)
tree79ee0a7b17624147497ff15cb27d1c7989e82c30
parent2033e2d08f6bba8f0edb01db2600f708e7e53622 (diff)
downloaddexon-wiki-01d870d1200d5d6feba96b5a50988c1be1dbd9a6.tar
dexon-wiki-01d870d1200d5d6feba96b5a50988c1be1dbd9a6.tar.gz
dexon-wiki-01d870d1200d5d6feba96b5a50988c1be1dbd9a6.tar.bz2
dexon-wiki-01d870d1200d5d6feba96b5a50988c1be1dbd9a6.tar.lz
dexon-wiki-01d870d1200d5d6feba96b5a50988c1be1dbd9a6.tar.xz
dexon-wiki-01d870d1200d5d6feba96b5a50988c1be1dbd9a6.tar.zst
dexon-wiki-01d870d1200d5d6feba96b5a50988c1be1dbd9a6.zip
Updated Blockchain Comparison (markdown)
-rw-r--r--Blockchain-Comparison.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/Blockchain-Comparison.md b/Blockchain-Comparison.md
index 0040f31..df660dc 100644
--- a/Blockchain-Comparison.md
+++ b/Blockchain-Comparison.md
@@ -18,7 +18,7 @@ This document explains how DEXON is different compared to other blockchain infra
### Table of Contents
| Project | Throughput (TPS) | Latency (seconds) | Data Structure | Consensus | Smart Contract |
| --- | --- | --- | ------------- | --- | --- |
-|[DEXON](#dexon)|1M+|2|DAG|total ordering|O|
+|[DEXON](#dexon)|1M+|1|DAG|total ordering|O|
|[Algorand](#algorand)|875|< 60|chain|Byzantine agreement|△|
|[Bitcoin](#bitcoin)|7|3600|chain|longest chain rule|X|
|[Cardano](#cardano)|250|300|chain|Ouroboros|O|
@@ -48,9 +48,9 @@ This document explains how DEXON is different compared to other blockchain infra
## DEXON
|Throughput (TPS)|Latency (seconds)|Data Structure|Consensus|Smart Contract|
|-|-|-|-|-|
-|1M+|2|DAG|total ordering|O|
+|1M+|1|DAG|DEXON Byzantine agreement|O|
-DEXON is a scalable, low-latency, energy efficient and inter-chain operable DApp ecosystem. DEXON uses total ordering as its main consensus algorithm, of which throughput can scale linearly with the number of nodes while latency remains nearly constant. Instead of processing blocks sequentially like traditional blockchain, DEXON blocklattice data structure processes blocks in parallel. With such high throughput and low latency, practical DApp can finally be developed and widely used.
+DEXON is a scalable, low-latency, energy efficient and inter-chain operable DApp ecosystem. DEXON uses an efficient Byzantine agreement as its main consensus algorithm, of which throughput can scale linearly with the number of nodes while latency remains nearly constant. With the adoption of verifiable random function, DEXON can provide high performance while keeping the network decentralized (~ 100K nodes). With such high throughput and low latency, practical DApp can finally be developed and widely used.
## Algorand
|Throughput (TPS)|Latency (seconds)|Data Structure|Consensus|Smart Contract|