This is an old revision of this page, as edited by LarsPensjo (talk | contribs) at 18:11, 26 April 2017 (Fix incorrect link). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
Revision as of 18:11, 26 April 2017 by LarsPensjo (talk | contribs) (Fix incorrect link)(diff) ← Previous revision | Latest revision (diff) | Newer revision → (diff)
The Ethereum Project's logo, first used in 2014. | |
Initial release | 30 July 2015 |
---|---|
Repository | |
Written in | C++, Go, Rust |
Operating system | Clients available for Linux, Windows, macOS, POSIX, Raspbian |
Platform | x86, ARM |
Type | Decentralized computing |
License | Multiple open-source licenses |
Website | www |
Ethereum is an open-source, public, blockchain-based distributed computing platform featuring smart contract (scripting) functionality. It provides a decentralized Turing-complete virtual machine, the Ethereum Virtual Machine (EVM), which can execute scripts using an international network of public nodes. Ethereum also provides a value token called "ether", which can be transferred between participants and is used to compensate participant nodes for computations performed. Gas, an internal transaction pricing mechanism, is used to prevent spam on the network and allocate resources proportionally to the incentive offered by the request.
Ethereum was initially proposed in late 2013 by Vitalik Buterin, a cryptocurrency researcher and programmer. Development was funded by an online crowdsale during July–August 2014. The system went live on 30 July 2015. A hard fork on the network occurred on July 20, 2016, resulted in two separate blockchains: Ethereum and Ethereum Classic. Ethereum Classic is a separate blockchain that came into existence as a result of the DAO hard-fork, consolidating members of the Ethereum community who rejected this fork on philosophical grounds.
History
Origin
Ethereum was initially described in a white paper by Vitalik Buterin, a programmer involved with Bitcoin, in late 2013 with a goal of building decentralized applications. More specifically, Buterin "had argued to the bitcoin core developers that the platform needed a more robust scripting language for developing applications." Failing to gain agreement, he proposed development of a new platform with a more general scripting language. Buterin believes that many applications could benefit from Bitcoin-like software.
The Ethereum software project was initially developed in early 2014 by a Swiss company, Ethereum Switzerland GmbH (EthSuisse). Subsequently, a Swiss non-profit foundation, the Ethereum Foundation (Stiftung Ethereum) was set up as well. Development was funded by an online public crowdsale during July–August 2014, with the participants buying the Ethereum value token (ether) with another digital currency, bitcoin. While there was early praise for the technical innovations of Ethereum, questions were also raised about its security and scalability.
Launch
Ethereum's live blockchain was launched on 30 July 2015. The initial version of Ethereum—called "Frontier"—uses a proof of work consensus algorithm, although a later version is expected to replace that with a proof of stake algorithm.
Ethereum versions
Since the initial version, the Ethereum network has accomplished several so-called hard forks, important changes because they are backwards-incompatible.
Version | Code name | Release date | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Old version, no longer maintained: 1 | Frontier | July 2014 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Old version, no longer maintained: 1.1 | Protocol Update 1 | August 4, 2015 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Old version, no longer maintained: 2 | Homestead | February 29, 2016 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Old version, no longer maintained: 3 | The DAO | July 20, 2016 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Current stable version: 4 | Spurious Dragon | November 18, 2016 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Future release: ? | Metropolis | ? | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Future release: ? | Serenity | ? | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Legend:Old version, not maintainedOld version, still maintainedLatest versionLatest preview versionFuture release |
- First hard fork
The first hard fork introduced a difficulty bomb to incentivize an upgrade to proof of stake when this system will be ready.
- Second hard fork—Homestead release
The second hard fork was made in Spring 2016 and marked the first stable release: Homestead.
- Third hard fork—The DAO
In June 2016, The DAO, a platform for the autonomous governance of investment capital, was found to contain an unexpected code path which would allow any sophisticated user to withdraw an arbitrary amount of funds from the DAO. This was exploited by an unknown party on the 16th of June, who managed to move about one third of the Ether held then by the DAO (at the time valued at 50 million USD) into a clone of the DAO, a "ChildDAO" whose control was held by only this party. As a consequence of the way the DAO was programmed, these moved funds would remain unavailable for withdrawal for about a month.
The Ethereum community debated how and whether to reclaim the ether, and whether to shut down The DAO, as the decentralised nature of The DAO and of Ethereum meant a lack of a central authority that could take quick action, instead requiring community consensus. After a few weeks' discussion, on 20 July 2016 Ethereum hard-forked (a backward-incompatible change) creating a new fork to reverse the hack and return The DAO funds, with the original chain adopting the name Ethereum Classic. This was the first time any mainstream blockchain was forked to reverse a transaction in order to make reparations to investors in a failed enterprise.
After The DAO fork, Ethereum subsequently forked multiple times to deal with other attacks.
- Fourth hard fork—de-bloating & DDoS protection
Towards the end of November 2016, a fourth hard fork took place. This hard fork successfully de-bloated the blockchain and attempted to prevent further spam attacks by hackers.
Features
Ether
Unit | |
---|---|
Symbol | Ξ or ETH |
Demographics | |
User(s) | Worldwide |
Issuance | |
Currency type | Cryptocurrency |
The value token of the Ethereum blockchain is called ether. It is listed under the diminutive ETH and traded on cryptocurrency exchanges. It is also used to pay for transaction fees and computational services on the Ethereum network.
Tokens can be volatile per circumstances, such as ether's plunge from $21.50 to $8 when The DAO was hacked on June 17, 2016.
Smart contracts
Main article: Smart contractSmart contracts are applications with a state stored in the blockchain. They can facilitate, verify, or enforce the negotiation or performance of a contract. Ethereum contracts can be implemented in various Turing complete scripting languages. The Ethereum system has been described by the New York Times as "a single shared computer that is run by the network of users and on which resources are parceled out and paid for by Ether."
Contracts on the public blockchain
As the contracts can be public, it opens up the possibility to prove functionality, e.g. self-contained provably fair casinos.
One issue related to using smart contracts on a public blockchain is that bugs, including security holes, are visible to all but cannot be fixed quickly. One example of this is the 17 June 2016 attack on The DAO, which could not be quickly stopped or reversed.
There is ongoing research on how to use formal verification to express and prove non-trivial properties. A Microsoft Research report noted that writing solid smart contracts can be extremely difficult in practice, using The DAO hack to illustrate this problem. The report discussed tools that Microsoft had developed for verifying contracts, and noted that a large-scale analysis of published contracts is likely to uncover widespread vulnerabilities. The report also stated that it is possible to verify the equivalence of a Solidity program and the EVM code.
Programming languages
Main article: SolidityThe Ethereum Virtual Machine (EVM) works on a protocol defined in the Ethereum Yellow Paper by Gavin Wood. Smart contracts can be written in Solidity, Serpent and Viper (derivatives of Python), and LLL. The EVM also runs on Mutan (deprecated). The smart contracts are subsequently compiled into the EVM bytecode and deployed to run on the Ethereum blockchain.
Clients
The Ethereum Foundation funded reference implementations of the Ethereum client in several languages, including Python, C++, Go, and Java. Implementations not funded by the foundation are available in Rust, JavaScript, and Ruby.
Performance
In Ethereum all smart contracts are stored publicly on every node of the blockchain, which has trade-offs. The downside is that performance issues arise in that every node is calculating all the smart contracts in real time, resulting in slower speeds. Ethereum engineers have been working on sharding the calculations, but no solution had been detailed by early 2016. As of January 2016, the Ethereum protocol could process 25 transactions per second. In September 2016, Buterin presented proposals to increase scalability.
Uses
The Ethereum platform has multiple proposed uses. Bloomberg describes it as "shared software that can be used by all but is tamperproof." Ethereum is used as a platform for decentralized applications, decentralized autonomous organizations and smart contracts, with "dozens of functioning applications built" on it by March 2016 according to the New York Times. The intended scope of applications include projects related to finance, the internet-of-things, farm-to-table produce, electricity sourcing and pricing, and sports betting. Decentralized autonomous organizations may enable a wide range of possible business models that were previously impossible or too costly to run.
Adoption
The New York Times noted in March 2016 that Ethereum adoption was still at an early stage and that Ethereum could encounter technical and legal problems that would slow its growth. Some Bitcoin advocates say that Ethereum may "face more security problems than Bitcoin because of the greater complexity of the software." The article also said, "The system is complicated enough that even people who know it well have trouble describing it in plain English".
Microsoft announced a partnership with ConsenSys, a blockchain startup focused on Ethereum technology. Customers of popular cloud-based business service Microsoft Azure have access to third-party tools that "allow them to experience and build with cloud-based blockchain applications, from securities trading to cross-border payments".
Market capitalization
In March 2017, the market capitalization of the token ether was more than US$4 billion.
The all-time high was reached on March 16, 2017 with the bid price surpassing $55.00 on the GDAX exchange.
Applications
This list is not exhaustive and some elements can be outdated.
- Digital signatures that ensure authenticity and proof of existence of documents: the Luxembourg Stock Exchange has developed such a system
- Secure identity systems for the Internet: uPort
- Interactive grids for the Internet of Things (IoT), such as verification for physical assets utilizing Bluetooth low energy and near field communication chips. Slock.It is developing smart locks
- Digital tokens pegged to fiat currencies: Decentralized Capital. Spanish bank Santander is also involved in such a project
- Digital tokens pegged to gold: Digix
- Improved digital rights management for music: Imogen Heap used the technology
- Platforms for prediction markets: Augur (software), Gnosis
- Platforms for crowdfunding: the DAO (short for decentralized autonomous organization)
- Social media platforms with economic incentives: Backfeed, Akasha
- Decentralized marketplaces for physical items, financial products or energy: FreeMyVunk, Etheropt, TransActive Grid
- Mobile payments services for foreign workers: Everex
Enterprise software
Ethereum is being tested by enterprise software companies for various applications. Interested parties include Microsoft, IBM, JPMorgan Chase, Deloitte, R3, Innovate UK (cross-border payments prototype)
Wallets
- Mist — JS based wallet.
- cpp-ethereum — Ethereum C++ client.
- Coinbase — online wallet.
Permissioned ledgers
Ethereum is used and being investigated as a permissioned blockchain in various projects.
- J.P. Morgan Chase is developing a blockchain, atop Ethereum. The system, dubbed "Quorum," is designed to toe the line between private and public in the realm of shuffling derivatives and payments. The idea is to satisfy regulators who need seamless access to financial goings-on, while protecting the privacy of parties that don’t wish to reveal their identities nor the details of their transactions to the general public.
- Royal Bank of Scotland has announced that it has built a Clearing and Settlement Mechanism (CSM) based on the Ethereum distributed ledger and smart contract platform. According to a technical paper, "The test results evidenced a throughput of 100 payments per second, with 6 simulated banks, and a single trip mean time of 3 seconds and maximum time of 8 seconds. This is the level appropriate for a national level domestic payments system".
References
- Ehsani, Farzam (22 December 2016). "Blockchain in Finance: From Buzzword to Watchword in 2016". CoinDesk (News). Retrieved 22 December 2016.
- ^ Vigna, Paul (28 October 2015). "BitBeat: Microsoft to Offer Ethereum-Based Services on Azure". The Wall Street Journal (Blog). News Corp. Retrieved 17 February 2016.
- "Account Types, Gas, and Transactions — Ethereum Homestead 0.1 documentation". ethdocs.org. Retrieved 15 January 2017.
- Ethereum. "Gas and transaction costs | Ethereum Frontier Guide". ethereum.gitbooks.io. Retrieved 15 January 2017.
- "What is the "Gas" in Ethereum?". CryptoCompare. Retrieved 15 January 2017.
- ConsenSys (23 June 2016). "Ethereum, Gas, Fuel, & Fees". ConsenSys Media. Retrieved 15 January 2017.
- ^ Aitken, Roger (23 April 2016). "Digital Gold 'Done Right' With DigixDAO Crypto-Trading On OpenLedger". Forbes. Retrieved 28 April 2016.
- van Wirdum, Aaron (20 July 2016). "Rejecting Today's Hard Fork, the Ethereum Classic Project Continues on the Original Chain: Here's Why". Medium. Retrieved 20 July 2016.
- "White Paper · ethereum/wiki Wiki · GitHub".
- ^ Finley, Klint (27 January 2014). "Out in the Open: Teenage Hacker Transforms Web Into One Giant Bitcoin Network". Wired. Retrieved 21 March 2016.
- Schneider, Nathan (7 April 2014). "Code your own utopia: Meet Ethereum, bitcoin's most ambitious successor". Al Jazeera. Retrieved 21 February 2016.
- ^
Tapscott, Don; Tapscott, Alex (May 2016). The Blockchain Revolution: How the Technology Behind Bitcoin is Changing Money, Business, and the World. ISBN 978-0670069972.
{{cite book}}
:|access-date=
requires|url=
(help) - Schmid, Valentin (10 May 2014). "The Entrepreneur: Joe Lubin, COO of Ethereum". Epoch Times. Retrieved 31 March 2016.
-
"Company Overview of Ethereum Switzerland GmbH". Bloomberg. 20 August 2016. Retrieved 20 August 2016.
The company was founded in 2014 and is based in Baar, Switzerland.
{{cite web}}
: Check|archiveurl=
value (help); Unknown parameter|deadurl=
ignored (|url-status=
suggested) (help) -
Tapscott, Don; Tapscott, Alex (May 2016). The Blockchain Revolution: How the Technology Behind Bitcoin is Changing Money, Business, and the World. p. 87. ISBN 978-0670069972.
July 30, 2015, ... Ethereum ... went live. ... Ethereum is like bitcoin in that its ether motivates a network of peers to validate transactions, secure the network, and achieve consensus about what exists and what has occurred. But unlike bitcoin it contains some powerful tools to help developers and others create software services ranging from decentralized games to stock exchanges. ... a more robust scripting language for developing applications.
{{cite book}}
:|access-date=
requires|url=
(help) - https://www.nytimes.com/2016/03/28/business/dealbook/ethereum-a-virtual-currency-enables-transactions-that-rival-bitcoins.html?_r=0 Retrieved September-2-2016
- Tual, Stephen (4 August 2015). "Ethereum Protocol Update 1". Ethereum Blog. Retrieved 24 February 2017.
- Wilcke, Jeffrey (29 February 2016). "Homestead Release". Ethereum Blog. Retrieved 24 February 2017.
- Buterin, Vitalik (20 July 2016). "Hard Fork Completed". Ethereum Blog. Retrieved 24 February 2017.
- Jameson, Hudson (18 November 2016). "Hard Fork No. 4: Spurious Dragon". Ethereum Blog. Retrieved 24 February 2017.
- ^ "The Ethereum releases of Frontier, Homestead, Metropolis and Serenity".
- "Ethereum Prepares for the Spurious Dragon Hardfork - CryptoCoinsNews". 16 November 2016.
- ^ Popper, Nathaniel (17 June 2016). "Hacker May Have Taken $50 Million From Cybercurrency Project". The New York Times.
- ^ Price, Rob (17 June 2016). "Digital currency Ethereum is cratering amid claims of a $50 million hack". Business Insider.
- ^ Klint Finley for Wired. June 18, 2016 A $50 Million Hack Just Showed That The Dao Was All Too Human
- ^ Peck, Morgan (19 July 2016). ""Hard Fork" Coming to Restore Ethereum Funds to Investors of Hacked DAO". IEEE Spectrum: Technology, Engineering, and Science News. IEEE. Retrieved 20 July 2016.
- Vigna, Paul (20 July 2016). "Ethereum Gets Its Hard Fork, and the 'Truth' Gets Tested". Moneybeat. The Wall Street Journal. Retrieved 20 July 2016.
- Redman, Jamie (14 October 2016). "Ethereum to Hard Fork Two More Times Following Recent Attacks". Bitcoin.com. Bitcoin.com. Retrieved 22 November 2016.
- "Ethereum's Fourth Blockchain Fork: So Far, So Good". CoinDesk. 22 November 2016. Retrieved 7 December 2016.
- ^ Nathaniel Popper for the New York Times. March 27, 2016 Ethereum, a Virtual Currency, Enables Transactions That Rival Bitcoin's
- Jon, Evans. "Vapor No More: Ethereum Has Launched". techcrunch.com. Retrieved 25 February 2016.
-
"The great chain of being sure about things". The Economist. 31 October 2015. Retrieved 4 May 2016.
All sorts of companies and public bodies suffer from hard-to-maintain and often incompatible databases and the high transaction costs of getting them to talk to each other. This is the problem Ethereum, arguably the most ambitious distributed-ledger project, wants to solve. ... Ethereum's distributed ledger can deal with more data than bitcoin's can. And it comes with a programming language that allows users to write more sophisticated smart contracts, allow the formation of "decentralised autonomous organisations"—virtual companies that are basically just sets of rules running on Ethereum's blockchain.
- Piasecki, Piotr J. (2016). "Gaming Self-Contained Provably Fair Smart Contract Casinos". Ledger. 1: 99–110. doi:10.5195/ledger.2016.29.
- Peck, M. (28 May 2016). "Ethereum's $150-Million Blockchain-Powered Fund Opens Just as Researchers Call For a Halt". IEEE Spectrum. Institute of Electrical and Electronics Engineers.
- "Short Paper: Formal Verification of Smart Contracts" (PDF). microsoft.com/. Microsoft. Archived from the original (PDF) on 27 August 2016. Retrieved 25 August 2016.
- Ethereum Yellow Paper by Gavin Wood
- Rauhauser, Neal (12 November 2014). "Ethereum's Brave New World". Cryptocoinnews.com. Retrieved 12 December 2016.
- ^ Browning, David (May 2016). Digital Siege: Why Young Entrepreneurs Are Winning Paperback. ISBN 978-1628652963. Retrieved 8 January 2017.
- "Ethereum High Level Languages". Ethdocs.org. Retrieved 12 September 2016.
- Allison, Ian (2 November 2016). "Ethereum Bug Sends Smart Contracts Back to the Drawing Board". CoinDesk.com. Retrieved 12 December 2016.
- ethereum. "GitHub – ethereum/pyethapp". GitHub.
- ^ http://www.ethdocs.org/en/latest/ethereum-clients/index.html
- Roman Mandeleil. "Ethereum J". ethereumj.io.
- "Ethereum(J) — Ethereum Homestead 0.1 documentation". readthedocs.org. Retrieved 5 April 2016.
- "Press – Ethcore". ethcore.io.
- "Ethereum Venture Company Releases its Flagship Blockchain Suite". forklog.net. Retrieved 5 April 2016.
- "ethereumjs". ethereumjs.github.io.
- janx. "GitHub – janx/ruby-ethereum: A Ruby implementation of Ethereum". GitHub.
- ^ Allison, Ian (25 January 2016). "How are banks actually going to use blockchains and smart contracts?". International Business Times. Retrieved 4 May 2016.
- "Ethereum's Creator Proves Blockchain Scaling Vision is No Joke - CoinDesk". 19 September 2016.
- "This Is Your Company on Blockchain". Bloomberg Businessweek. Retrieved 14 September 2016.
- ^ Allison, Ian (20 January 2016). "R3 connects 11 banks to distributed ledger using Ethereum and Microsoft Azure". International Business Times. Retrieved 23 February 2016.
- Bordet, Julián (21 March 2016). "Decentralized Autonomous Organizations: Ethereum Sparks Up Googles of Tomorrow". The Cointelegraph. Retrieved 21 July 2016.
- "Luxembourg Stock Exchange introduces blockchain into reporting service". 18 October 2016. Retrieved 4 November 2016.
- EconoTimes. "ConsenSys uPort wins International Blockchain Summit - EconoTimes". EconoTimes. Retrieved 6 February 2017.
- Allison, Ian (23 September 2016). "ConsenSys uPort scoops first prize in International Blockchain Summit Demo Day". International Business Times UK. Retrieved 6 February 2017.
- Young, Joseph. "Chronicled Introduces New Ethereum-Powered IoT Open Registry". Nasdaq.
- "Ethcore Announces Pre-release Of Its Blockchain Technology Suite 'Parity'". EconoTimes. 11 February 2016. Retrieved 24 March 2016.
- Allison, Ian. "Ethereum-based Slock.it reveals first ever lock opened with money". International Business Times UK.
- Allison, Ian (12 September 2016). "Decentralized Capital issuing fiat-backed digital assets on the Ethereum blockchain". International Business Times.
- "Santander Confirms Fiat-backed Token Project on Ethereum Blockchain". CoinTelegraph. Retrieved 15 January 2017.
- Buntinx, JP (28 April 2016). "DigixDAO DGD Assets To Be Listed on OpenLedger". The Merkle. Retrieved 29 May 2016.
- Allison, Ian (4 October 2015). "Imogen Heap shows how smart music contracts work using Ethereum". International Business Times. Retrieved 24 March 2016.
- "Ethereum Prediction Market Service Takes First Steps With Beta Launch - CoinDesk". CoinDesk. 17 August 2016. Retrieved 6 February 2017.
- "ICO Roundup 2017 by Cointelegraph: Cashing In On Blockchain Apps' Mainstream Year". CoinTelegraph. Retrieved 6 February 2017.
- Rennie, Ellie (12 May 2016). "The radical DAO experiment". Swinburne News. Swinburne University of Technology. Retrieved 12 May 2016.
When it reaches the end of the funding phase on May 28, it will begin contracting blockchain-based start-ups to create innovative technologies. The extraordinary thing about The DAO is that no single entity owns it, and it has no conventional management structure or board of directors.
- Allison, Ian (30 April 2016). "Ethereum reinvents companies with launch of The DAO". International Business Times. Retrieved 1 May 2016.
- Vigna, Paul (16 May 2016). "Chiefless Company Rakes In More Than $100 Million". The Wall Street Journal. Retrieved 16 May 2016.
- Weinglass, Simona (19 August 2015). "Backfeed wants to decentralize the Internet and help you earn what you deserve". Geektime.com. Retrieved 24 March 2016.
- CFA, Adam Hayes, (3 February 2017). "This New Social Network is Powered by Ethereum Technology". Investopedia. Retrieved 6 February 2017.
{{cite news}}
: CS1 maint: extra punctuation (link) CS1 maint: multiple names: authors list (link) - Allison, Ian (22 December 2015). "Game-changers FreeMyVunk and Digix allow video gamers to trade virtual assets for physical gold". International Business Times. Retrieved 24 March 2016.
- "Decentralized Options Exchange Etheropt Uses Automated Ethereum Smart Contract".
- Rutkin, Aviva (2 March 2016). "Blockchain-based microgrid gives power to consumers in New York". New Scientist. Retrieved 24 March 2016.
- Mizrahi, Avi (1 December 2016). "Everex Helps Migrant Workers Send Remittance Back to Myanmar via Ethereum". Finance Magnates. Retrieved 14 December 2016.
- "Hyperledger blockchain code almost comes together for IoT". Rethink Research. Retrieved 23 April 2016.
- Allison, Ian (3 May 2016). "Deloitte to build Ethereum-based 'digital bank' with New York City's ConsenSys". International Business Times.
- "UK Government Awards £248k for Ethereum Prototype". CoinDesk.
- "Settlement using blockchain to Automate Foreign Exchange in a Regulated environment (SAFER)". Innovate UK.
- https://themerkle.com/a-review-of-the-bests-ethereum-wallets/
- https://github.com/ethereum/cpp-ethereum/
- Hacket, Robert. "Why J.P. Morgan Chase Is Building a Blockchain on Ethereum". Fortune.
- "Proving Ethereum for the Clearing Use Case" (PDF).
External links
Cryptocurrencies | |||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Technology | |||||||||||||||
Consensus mechanisms | |||||||||||||||
Proof of work currencies |
| ||||||||||||||
Proof of stake currencies | |||||||||||||||
ERC-20 tokens | |||||||||||||||
Stablecoins | |||||||||||||||
Other currencies | |||||||||||||||
Inactive currencies | |||||||||||||||
Crypto service companies | |||||||||||||||
Related topics |
| ||||||||||||||