|
|
|
|
|
by nostrademons
2142 days ago
|
|
Ethereum + proof of stake + sharding. Right now every node on the Ethereum network validates every transaction using a similar proof of work system as Bitcoin. This creates a transaction bottleneck; I believe Bitcoin can do something like 7 TPS, Ethereum about 11, which is woefully inadequate for a global financial system (for comparison, I believe Visa does something like 20,000). Proof-of-stake replaces this massive electricity waste with game theory. Every validator must put up a deposit (in ETH) to participate. If it cheats, it loses that deposit. The damage it can do to the network is limited to less than the deposit. Therefore, it's never profitable to cheat - and so they won't, or if they do, they will go bankrupt, remove themselves from the network, and self-limit the problem. And transaction validation can now be split among thousands of nodes (instead of having those thousands of nodes all validate the same PoW), which means the network can scale to tens or hundreds of thousands of transactions per second. |
|