Misplaced Pages

Ethereum

Article snapshot taken from Wikipedia with creative commons attribution-sharealike license. Give it a read and then ask your questions in the chat. We can research this topic together.

This is an old revision of this page, as edited by Prokaryotes (talk | contribs) at 18:51, 12 January 2018 (Address Format: CN). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

Revision as of 18:51, 12 January 2018 by Prokaryotes (talk | contribs) (Address Format: CN)(diff) ← Previous revision | Latest revision (diff) | Newer revision → (diff)

Ethereum
The Ethereum Project's logo, first used in 2014
Initial release30 July 2015
Repositorygithub.com/ethereum
Written inC++, Go, Rust
Operating systemClients available for Linux, Windows, macOS, POSIX, Raspbian
Platformx86, ARM
TypeDecentralized computing, Blockchain, Cryptocurrency
LicenseGPLv3, LGPLv3, MIT
Websitewww.ethereum.org

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 cryptocurrency token called "ether", which can be transferred between accounts and used to compensate participant nodes for computations performed. "Gas", an internal transaction pricing mechanism, is used to mitigate spam and allocate resources on the network.

Ethereum was proposed in late 2013 by Vitalik Buterin, a cryptocurrency researcher and programmer. Development was funded by an online crowdsale that took place between July and August 2014. The system went live on 30 July 2015, with 11.9 million coins "premined" for the crowdsale. This accounts for approximately 13 percent of the total circulating supply.

In 2016, as a result of the collapse of The DAO project, Ethereum was split into two separate blockchains – the new separate version became Ethereum (ETH), and the original continued as Ethereum Classic (ETC). The value of the Ethereum currency grew over 13.000 percent in 2017.

History

Origin

Ethereum was initially described in a white paper by Vitalik Buterin, a programmer involved with Bitcoin Magazine, in late 2013 with a goal of building decentralized applications. Buterin had argued that Bitcoin needed a scripting language for application development. Failing to gain agreement, he proposed development of a new platform with a more general scripting language.

At the time of public announcement in January 2014, the core Ethereum team was Vitalik Buterin, Mihai Alisie, Anthony Di Iorio, and Charles Hoskinson. Formal development of the Ethereum software project began in early 2014 through a Swiss company, Ethereum Switzerland GmbH (EthSuisse). Subsequently, a Swiss non-profit foundation, the Ethereum Foundation (Stiftung Ethereum), was created 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.

Milestones

Several codenamed prototypes of the Ethereum platform were developed by the Foundation, as part of their Proof-of-Concept series, prior to the official launch of the Frontier network.

"Olympic" was the last of these prototypes, and public beta pre-release. The Olympic network provided users with a bug bounty of 25,000 ether for stress testing the limits of the Ethereum blockchain.

"Frontier" marked the tentative experimental release of the Ethereum platform in July 2015.

Since the initial launch, Ethereum has undergone several planned protocol upgrades, which are important changes affecting the underlying functionality and/or incentive structures of the platform.

"Homestead" was the first to be considered stable. It includes improvements to transaction processing, gas pricing, and security.

There are at least two other protocol upgrades planned in the future:

"Metropolis" is intended to reduce the complexity of the EVM and provide more flexibility for smart contract developers. Metropolis also adds supports for zkSnarks (from Zcash); with the first zksnarks transaction occurring on testnet on September 19, 2017.

"Serenity" should include a fundamental change to Ethereum's consensus algorithm to enable a basic transition from hardware mining (proof-of-work) to virtual mining (proof-of-stake). Improvements to scalability, specifically sharding, are also said to be a key objective on the development roadmap.

Version Code name Release date
Old version, no longer maintained: 0 Olympic May, 2015
Old version, no longer maintained: 1 Frontier 30 July 2015
Old version, no longer maintained: 2 Homestead 14 March 2016
Current stable version: 3 Metropolis (vByzantium) 16 October 2017
Future release: 3.5 Metropolis (vConstantinople) TBA
Future release: 4 Serenity TBA
Legend:Old versionOld version, still maintainedLatest versionLatest preview versionFuture release

The DAO event

In 2016 a decentralized autonomous organization called The DAO, a set of smart contracts developed on the platform, raised a record US$150 million in a crowdsale to fund the project. The DAO was exploited in June when US$50 million in ether were claimed by an anonymous entity. The event sparked a debate in the crypto-community about whether Ethereum should perform a contentious "hard fork" to reappropriate the affected funds. As a result of the dispute, the network split in two. Ethereum (the subject of this article) continued on the forked blockchain, while Ethereum Classic continued on the original blockchain. The hard fork created a rivalry between the two networks.

Hard Forks

After the hard fork related to The DAO, Ethereum subsequently forked twice in the fourth quarter of 2016 to deal with other attacks. By the end of November 2016, Ethereum had increased its DDoS protection, de-bloated the blockchain, and thwarted further spam attacks by hackers.

Architecture

Ether

Ether
Unit
SymbolΞ or ETH‎
Demographics
User(s)Worldwide
Issuance
Currency typeCryptocurrency

The value token of the Ethereum blockchain is called ether. It is listed under the code ETH and traded on cryptocurrency exchanges, and the Greek uppercase Xi character (Ξ) is generally used for its currency symbol. It is also used to pay for transaction fees and computational services on the Ethereum network.

Ethereum Virtual Machine

The Ethereum Virtual Machine (EVM) is the runtime environment for smart contracts in Ethereum. The formal definition of the EVM is specified in the Ethereum Yellow Paper, original version by Gavin Wood. It is sandboxed and also completely isolated from the network, filesystem or other processes of the host computer system. Every Ethereum node in the network runs an EVM implementation and executes the same instructions. Ethereum Virtual Machines have been implemented in C++, Go, Haskell, Java, JavaScript, Python, Ruby, Rust, and WebAssembly (currently under development).

Smart contracts

Main article: Smart contract

Smart contracts are deterministic exchange mechanisms controlled by digital means that can carry out the direct transaction of value between untrusted agents. They can be used to facilitate, verify, and enforce the negotiation or performance of economically-laden procedural instructions and potentially circumvent censorship, collusion, and counter-party risk. In Ethereum, smart contracts are treated as autonomous scripts or stateful decentralized applications that are stored in the Ethereum blockchain for later execution by the EVM. Instructions embedded in Ethereum contracts are paid for in ether (or more technically "gas") and can be implemented in a variety of Turing complete scripting languages.

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: Solidity

Smart contracts are high-level programming abstractions that are compiled down to EVM bytecode and deployed to the Ethereum blockchain for execution. They can be written in Solidity (a language library with similarities to C and JavaScript), Serpent (similar to Python), LLL (a low-level Lisp-like language), and Mutan (Go-based, but deprecated). There is also a research-oriented language under development called Viper (a strongly-typed Python-derived decidable language).

Performance

In Ethereum all smart contracts are stored publicly on every node of the blockchain, which has trade-offs. Being a blockchain means it is secure by design and is an example of a distributed computing system with high Byzantine fault tolerance. The downside is that performance issues arise in that every node is calculating all the smart contracts in real time, resulting in lower speeds. As of January 2016, the Ethereum protocol could process 25 transactions per second. On 19 December 2016, Ethereum exceeded one million transactions in a single day for the first time.

  • Micro Raiden was launched November 2017.
  • Buterin and Joseph Poon (a co-author of Bitcoin's lightning network whitepaper) announced in 2017 their plan to launch a scaling solution called Plasma which creates "child" blockchains to the "main" parent blockchain. The plasma project is not without skeptics, specifically Vlad Zamfir (Ethereum's lead researcher on proof of stake) has publicly questioned the plasma project's viability.
  • Ethereum engineers have been working on sharding the calculations, and the next step (called Ethereum 2) was presented at Devcon 3.

Ethereum's blockchain uses Merkle tree's for transactions, to confirm verifications via hashing, an implementation for scalability purposes.

Ether supply increase rate

The supply of Ether was projected to increase by 14.75% in 2017, with an algorithm in place to gradually decline to 1.59% by 2065. However, a new implementation of Ethereum named "Casper" based on proof of stake rather than proof of work is expected to reduce the inflation rate to between 0.5% to 2%.

Proposed uses

Many uses have been proposed for Ethereum platform, including ones that are impossible or unfeasible. Use case proposals have included finance, the internet-of-things, farm-to-table produce, electricity sourcing and pricing, and sports betting. Ethereum is (as of 2017) the leading blockchain platform for initial coin offering projects, with over 50% market share.

Address Format

The Ethereum address format begins with 0x followed by 40 alphanumeric characters. eg. 0x141dd11458288fc8df60de4fe9816cd21f97bf76 The address is generated from taking the public key and generating a hash using the Keccak-256 algorithm. The hash contains 64 characters. The address is the last 40 alphanumeric characters with 0x appended to the beginning.

Ecosystem

The projects listed in this section are not exhaustive and may be outdated.

Clients and wallets

These cryptocurrency wallets support Ethereum:

  • Jaxx: Desktop wallet
  • KeepKey: Hardware wallet
  • Ledger Nano S: Hardware wallet
  • Mist: Desktop wallet
  • Blockchain Online and iOS/Android Wallet
  • Trust Wallet

Decentralized applications

Enterprise software

Ethereum-based customized software and networks, independent from the public Ethereum chain, are being tested by enterprise software companies. Interested parties include Microsoft, IBM, JPMorgan Chase, Deloitte, R3, Innovate UK (cross-border payments prototype). Barclays, UBS and Credit Suisse are experimenting with Ethereum blockchain to automate Markets in Financial Instruments Directive (MiFID) II requirements.

Enterprise Ethereum Alliance (EEA)

In March 2017, various blockchain start-ups, research groups, and Fortune 500 companies announced the creation of the Enterprise Ethereum Alliance (EEA) with 30 founding members. By May, the nonprofit organization had 116 enterprise members—including ConsenSys, CME Group, Cornell University's research group, Toyota Research Institute, Samsung SDS, Microsoft, Intel, J.P. Morgan, Cooley LLP, Merck KGaA, DTCC, Deloitte, Accenture, Banco Santander, BNY Mellon, ING, and National Bank of Canada.

The purpose of the EEA is to coordinate the engineering of an open-source reference standard and private "permissioned" version of the Ethereum blockchain that can address the common interests of enterprises in banking, management, consulting, automotive, pharmaceutical, health, technology, mobile, entertainment, and other industries, while working with developers from the Ethereum ecosystem. Certain members of the alliance have also indicated a desire to investigate and collaborate on hybrid architectures to potentially anchor private blockchains to the public Ethereum blockchain in the future, although concerns remain over the security, compliance, and regulations involved in bridging such permissioned and "permissionless" blockchains.

By July 2017, there were over 150 members in the alliance, including recent additions MasterCard, Cisco Systems, and Scotiabank. (Mastercard wanted their name excluded from the press release.)

Permissioned ledgers

Ethereum-based permissioned blockchain variants are used and being investigated for various projects.

  • J.P. Morgan Chase is developing a permissioned-variant of Ethereum blockchain dubbed "Quorum." It's 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.

Criticisms

Criminal use

A finance blogger on FT Alphaville has pointed out that criminals are using Ethereum to run Ponzi schemes and other forms of investment fraud. The article was based on a paper from the University of Cagliari, which placed the number of Ethereum smart contracts which facilitate Ponzi schemes at nearly 10% of 1384 smart contracts examined. However, it also estimated that only 0.05% of the transactions on the network were related to such contracts.

Speculative bubble

Main article: Cryptocurrency bubble

CBS noted in 2017 that price hikes in Ethereum, (as well as Litecoin and Bitcoin), are creating most of the excitement, rather than technology.

References

  1. "ethereum". GitHub. Retrieved 11 January 2018.
  2. "Go Ethereum GitHub repository". Archived from the original on 3 October 2016. {{cite web}}: Unknown parameter |deadurl= ignored (|url-status= suggested) (help)
  3. ^ Understanding Ethereum (Report). CoinDesk. 24 June 2016.
  4. Cryptocurrencies: A Brief Thematic Review Archived 25 December 2017 at the Wayback Machine. Social Science Research Network. Date accessed 28 august 2017.
  5. ConsenSys (23 June 2016). "Ethereum, Gas, Fuel, & Fees". ConsenSys Media. Archived from the original on 23 May 2017. Retrieved 15 January 2017. {{cite news}}: Unknown parameter |deadurl= ignored (|url-status= suggested) (help)
  6. ^ Aitken, Roger (23 April 2016). "Digital Gold 'Done Right' With DigixDAO Crypto-Trading On OpenLedger". Forbes. Archived from the original on 28 April 2016. Retrieved 28 April 2016. {{cite news}}: Unknown parameter |deadurl= ignored (|url-status= suggested) (help)
  7. etherchain.org. "Accounts - etherchain.org - The ethereum blockchain explorer". www.etherchain.org. Archived from the original on 7 August 2017. Retrieved 30 May 2017. {{cite web}}: Unknown parameter |deadurl= ignored (|url-status= suggested) (help)
  8. De Jesus, Cecille (19 July 2016). "The DAO Heist Undone: 97% of ETH Holders Vote for the Hard Fork". Futurism, LLC. Archived from the original on 7 August 2017. Retrieved 16 May 2017. {{cite web}}: Unknown parameter |deadurl= ignored (|url-status= suggested) (help)
  9. Quentson, Andrew (17 July 2016). "Miners Vote Overwhelmingly in Support of Ethereum's Hardfork". Cryptocoinnews. Archived from the original on 26 June 2017. Retrieved 14 May 2017. {{cite web}}: Unknown parameter |deadurl= ignored (|url-status= suggested) (help)
  10. Bradley, Miles (17 November 2016). "CoinDesk Research: Ethereum Hard Fork Had Little Impact on Sentiment". Coindesk. Archived from the original on 8 July 2017. Retrieved 14 May 2017. {{cite web}}: Unknown parameter |deadurl= ignored (|url-status= suggested) (help)
  11. "Ethereum hits a fresh record high and is up over 13,000% in a year". CNBC. 8 January 2017.
  12. "White Paper· ethereum/wiki Wiki · GitHub". Archived from the original on 28 March 2015. {{cite web}}: Unknown parameter |deadurl= ignored (|url-status= suggested) (help)
  13. ^ Finley, Klint (27 January 2014). "Out in the Open: Teenage Hacker Transforms Web Into One Giant Bitcoin Network". Wired. Archived from the original on 18 March 2016. Retrieved 21 March 2016. {{cite web}}: Unknown parameter |deadurl= ignored (|url-status= suggested) (help)
  14. Schneider, Nathan (7 April 2014). "Code your own utopia: Meet Ethereum, bitcoin's most ambitious successor". Al Jazeera. Archived from the original on 23 February 2016. Retrieved 21 February 2016. {{cite web}}: Unknown parameter |deadurl= ignored (|url-status= suggested) (help)
  15. Tapscott, Don; Tapscott, Alex (7 May 2016). The Blockchain Revolution: How the Technology Behind Bitcoin is Changing Money, Business, and the World. Portfolio. ISBN 978-0670069972.
  16. Vitalik Buterin (23 January 2014). "Ethereum: Now Going Public". Archived from the original on 2 March 2014.
  17. Schmid, Valentin (10 May 2014). "The Entrepreneur: Joe Lubin, COO of Ethereum". Epoch Times. Archived from the original on 25 April 2016. Retrieved 31 March 2016. {{cite news}}: Unknown parameter |deadurl= ignored (|url-status= suggested) (help)
  18. "Company Overview of Ethereum Switzerland GmbH". Bloomberg. 20 August 2016. Archived from the original on 20 August 2016. Retrieved 20 August 2016. The company was founded in 2014 and is based in Baar, Switzerland. {{cite web}}: Unknown parameter |deadurl= ignored (|url-status= suggested) (help)
  19. Buterin, Vitalik (9 May 2015). "Olympic: Frontier Pre-Release". Ethereum Foundation. Archived from the original on 2 June 2017. Retrieved 5 June 2017. {{cite web}}: Unknown parameter |deadurl= ignored (|url-status= suggested) (help)
  20. Lombardo, Hans (17 May 2015). "Ethereum Debuts "eπ" Ethereum-on-Raspberry Pi as Olympic Whirs before Frontier Release". Allcoinsnews. Archived from the original on 20 August 2017. Retrieved 5 June 2017. {{cite web}}: Unknown parameter |deadurl= ignored (|url-status= suggested) (help)
  21. Gupta, Vinay (12 March 2015). "Getting to the Frontier". Ethereum Foundation. Archived from the original on 8 May 2015. Retrieved 5 June 2015. {{cite web}}: Unknown parameter |deadurl= ignored (|url-status= suggested) (help)
  22. Vigna, Paul (31 July 2015). "BitBeat: Ethereum Opens Its 'Frontier' for Business". The Wall Street Journal. Archived from the original on 6 September 2017. Retrieved 5 June 2017. {{cite web}}: Unknown parameter |deadurl= ignored (|url-status= suggested) (help)
  23. Gupta, Vinay (3 March 2015). "The Ethereum Launch Process". Ethereum Foundation. Archived from the original on 6 June 2017. Retrieved 5 June 2017. {{cite web}}: Unknown parameter |deadurl= ignored (|url-status= suggested) (help)
  24. ^ Silva, Los (25 February 2017). "Ethereum's Road Map for 2017". ETHNews. Archived from the original on 2 June 2017. Retrieved 5 June 2017. {{cite web}}: Unknown parameter |deadurl= ignored (|url-status= suggested) (help)
  25. ^ "Ethereum Homestead Documentation: The Homestead Release". Ethereum Foundation. n.d. Archived from the original on 6 June 2017. Retrieved 5 June 2017. {{cite web}}: Unknown parameter |deadurl= ignored (|url-status= suggested) (help)
  26. Donnelly, Jacob (14 March 2016). "Ethereum Blockchain Project Launches First Production Release". CoindDesk. Archived from the original on 6 June 2017. Retrieved 5 June 2017. {{cite web}}: Unknown parameter |deadurl= ignored (|url-status= suggested) (help)
  27. Wilcke, Jeffrey (29 February 2016). "Homestead Release". Ethereum Foundation. Archived from the original on 3 June 2017. Retrieved 5 June 2017. {{cite web}}: Unknown parameter |deadurl= ignored (|url-status= suggested) (help)
  28. ^ Hertig, Alyssa (22 November 2016). "Ethereum's Fourth Blockchain Fork: So Far, So Good". CoinDesk. Archived from the original on 27 May 2017. Retrieved 5 June 2017. {{cite news}}: Unknown parameter |deadurl= ignored (|url-status= suggested) (help)
  29. ^ O'Leary, Rachel Rose (19 September 2017). "Ethereum's Byzantium Testnet Just Verified A Private Transaction". CoinDesk. Archived from the original on 23 September 2017. Retrieved 24 September 2017. {{cite web}}: Unknown parameter |deadurl= ignored (|url-status= suggested) (help)
  30. Hertig, Alyssa (18 January 2017). "Where's Casper? Inside Ethereum's Race to Reinvent its Blockchain". CoinDesk. Archived from the original on 30 May 2017. Retrieved 5 June 2017. {{cite web}}: Unknown parameter |deadurl= ignored (|url-status= suggested) (help)
  31. Hertig, Alyssa (n.d.). "How Will Ethereum Scale?". CoinDesk. Archived from the original on 10 June 2017. Retrieved 5 June 2017. {{cite web}}: Unknown parameter |deadurl= ignored (|url-status= suggested) (help)
  32. Rizzo, Pete (19 September 2016). "Ethereum's Creator Proves Blockchain Scaling Vision is No Joke". CoinDesk. Archived from the original on 6 June 2017. Retrieved 5 June 2017. {{cite web}}: Unknown parameter |deadurl= ignored (|url-status= suggested) (help)
  33. ^ Vigna, Paul (16 May 2016). "Chiefless Company Rakes In More than $100 Million". Wall Street Journal. Archived from the original on 25 June 2017. Retrieved 14 May 2017. {{cite news}}: Unknown parameter |deadurl= ignored (|url-status= suggested) (help)
  34. ^ Popper, Nathaniel (18 June 2016). "Hacker May Have Taken $50 Million From Cybercurrency Project". The New York Times. Archived from the original on 20 June 2017. Retrieved 14 May 2017. {{cite news}}: Unknown parameter |deadurl= ignored (|url-status= suggested) (help)
  35. Price, Rob (17 June 2016). "Digital Currency Ethereum is Cratering Amid Claims of a $50 Million Hack". Business Insider. Business Insider. Archived from the original on 11 June 2017. Retrieved 14 May 2017. {{cite web}}: Unknown parameter |deadurl= ignored (|url-status= suggested) (help)
  36. 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. Archived from the original on 3 March 2017. Retrieved 14 May 2017. {{cite web}}: Unknown parameter |deadurl= ignored (|url-status= suggested) (help)
  37. "What is Ethereum? | The Ultimate Beginners' Guide – CoinCentral". coincentral.com. Archived from the original on 11 September 2017. Retrieved 11 September 2017. {{cite web}}: Unknown parameter |deadurl= ignored (|url-status= suggested) (help)
  38. Hertig, Alyssa (28 July 2016). "Ethereum's Two Ethereums Explained". CoinDesk. Archived from the original on 24 May 2017. Retrieved 15 May 2017. {{cite web}}: Unknown parameter |deadurl= ignored (|url-status= suggested) (help)
  39. Redman, Jamie (14 October 2016). "Ethereum to Hard Fork Two More Times Following Recent Attacks". Bitcoin.com. Bitcoin.com. Archived from the original on 2 November 2016. Retrieved 22 November 2016. {{cite web}}: Unknown parameter |deadurl= ignored (|url-status= suggested) (help)
  40. ^ Popper, Nathaniel (27 March 2016). "Ethereum, a Virtual Currency, Enables Transactions That Rival Bitcoin's". New York Times. Archived from the original on 24 July 2016. Retrieved 2 September 2016. {{cite news}}: Unknown parameter |deadurl= ignored (|url-status= suggested) (help)
  41. "What Is Ethereum?—Ethereum Homestead 0.1 documentation". ethdocs.org. Archived from the original on 27 April 2017. {{cite web}}: Unknown parameter |deadurl= ignored (|url-status= suggested) (help)
  42. Dannen, Chris (2017). "The EVM". Introducing Ethereum and Solidity: Foundations of Cryptocurrency and Blockchain Programming for Beginners. Apress. pp. 47–67. ISBN 9781484225356.
  43. Ethereum Yellow Paper Archived 18 February 2015 at the Wayback Machine by Gavin Wood
  44. Triantafyllidis, Nikolaos Petros (19 February 2016). "The Ethereum Project: Ethereum History". Developing an Ethereum Blockchain Application (Report). University of Amsterdam. p. 20.
  45. Dannen, Chris (27 March 2017). "Ethereum Devs Publish Roadmap for EVM Upgrade". CryptoNews. Archived from the original on 25 December 2017. {{cite web}}: Unknown parameter |deadurl= ignored (|url-status= suggested) (help)
  46. "Ethereum Client Implementations - EntEthAlliance - Confluence". entethalliance.atlassian.net.
  47. Szabo, Nick (1997). "The Idea of Smart Contracts". Archived from the original on 2 May 2017. {{cite web}}: Unknown parameter |deadurl= ignored (|url-status= suggested) (help)
  48. Piasecki, Piotr J. (2016). "Gaming Self-Contained Provably Fair Smart Contract Casinos". Ledger. 1: 99–110. doi:10.5195/ledger.2016.29. Archived from the original on 24 December 2016. {{cite journal}}: Unknown parameter |deadurl= ignored (|url-status= suggested) (help)
  49. 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. Archived from the original on 30 May 2016. {{cite web}}: Unknown parameter |deadurl= ignored (|url-status= suggested) (help)
  50. "Short Paper: Formal Verification of Smart Contracts" (PDF). microsoft.com/. Microsoft. Archived from the original (PDF) on 27 August 2016. Retrieved 25 August 2016. {{cite web}}: Unknown parameter |deadurl= ignored (|url-status= suggested) (help)
  51. Rivlin, Brianne (14 November 2016). "Geth, Viper, and Wafr: New Ethereum Developments". ETHNews. Archived from the original on 4 September 2017. {{cite web}}: Unknown parameter |deadurl= ignored (|url-status= suggested) (help)
  52. ^ Allison, Ian (25 January 2016). "How are banks actually going to use blockchains and smart contracts?". International Business Times. Archived from the original on 8 May 2016. Retrieved 4 May 2016. {{cite web}}: Unknown parameter |deadurl= ignored (|url-status= suggested) (help)
  53. Filiba, Jack. "Ethereum Breaks One Million Transactions in a Single Day". Archived from the original on 22 December 2017. {{cite web}}: Unknown parameter |dead-url= ignored (|url-status= suggested) (help)
  54. Higgins, Stan. "'Microraiden' Payment Channels Go Live on Ethereum Network". Archived from the original on 22 December 2017. {{cite web}}: Unknown parameter |dead-url= ignored (|url-status= suggested) (help)
  55. ^ Hertig, Alyssa (12 August 2017). "Ethereum + Lightning? Buterin and Poon Unveil 'Plasma' Scaling Plan". CoinDesk. Archived from the original on 24 August 2017. Retrieved 23 August 2017. {{cite web}}: Unknown parameter |deadurl= ignored (|url-status= suggested) (help)
  56. Galeon, Dom. "Ethereum's Co-Founder Just Unveiled His Plan for the Future of Cryptocurrency". Archived from the original on 9 November 2017. {{cite web}}: Unknown parameter |dead-url= ignored (|url-status= suggested) (help)
  57. "Concept of Merkle Tree in Ethereum". Etherworld.co.
  58. "Spreadsheet of Ether inflation rate". Presale. Google Docs. Retrieved 4 July 2017.
  59. Hertig, Alyssa (18 January 2017). "Where's Casper? Inside Ethereum's Race to Reinvent its Blockchain". CoinDesk. Archived from the original on 27 June 2017. Retrieved 4 July 2017. {{cite web}}: Unknown parameter |deadurl= ignored (|url-status= suggested) (help)
  60. Buterin, Vitalik (27 June 2017). "Once Casper comes out, ~0.5-2% annual seems feasible. Once we add partial tx fee burning and if fees go up, may go to 0 or lower". Twitter. Archived from the original on 5 September 2017. Retrieved 4 July 2017. {{cite web}}: Unknown parameter |deadurl= ignored (|url-status= suggested) (help)
  61. Greenspan, Gideon (17 April 2016). "Why Many Smart Contract Use Cases Are Simply Impossible - CoinDesk". CoinDesk. Archived from the original on 7 August 2017. {{cite news}}: Unknown parameter |deadurl= ignored (|url-status= suggested) (help)
  62. "This Is Your Company on Blockchain". Bloomberg Businessweek. Archived from the original on 14 September 2016. Retrieved 14 September 2016. {{cite web}}: Unknown parameter |deadurl= ignored (|url-status= suggested) (help)
  63. Bordet, Julián (21 March 2016). "Decentralized Autonomous Organizations: Ethereum Sparks Up Googles of Tomorrow". The Cointelegraph. Archived from the original on 27 June 2016. Retrieved 21 July 2016. {{cite web}}: Unknown parameter |deadurl= ignored (|url-status= suggested) (help)
  64. "ICO Market Research: The Leading Blockchain Platforms Of 2017 - ICO Watch List Blog". ICO Watch List Blog. 17 August 2017. Archived from the original on 17 August 2017. Retrieved 20 August 2017. {{cite news}}: Unknown parameter |deadurl= ignored (|url-status= suggested) (help)
  65. Redman, Jamie (13 February 2016). "Jaxx: The New Fleet of Bitcoin & Ethereum Wallets". Saint Bitts LLC. Archived from the original on 5 August 2017. {{cite web}}: Unknown parameter |deadurl= ignored (|url-status= suggested) (help)
  66. Silva, Los (23 November 2016). "KeepKey Hard Wallet Supports Ethereum". ETHNews. Archived from the original on 19 February 2017. {{cite web}}: Unknown parameter |deadurl= ignored (|url-status= suggested) (help)
  67. Faife, Corin (26 November 2016). "Ledger Launches Hardware Wallet for the Smart Contract Era". CoinDesk. Archived from the original on 30 June 2017. {{cite web}}: Unknown parameter |deadurl= ignored (|url-status= suggested) (help)
  68. "A Review of The Best Ethereum Wallets". Archived from the original on 26 March 2017. {{cite web}}: Unknown parameter |deadurl= ignored (|url-status= suggested) (help)
  69. "Blockchain Digital Wallet".
  70. "Trust Wallet".
  71. "Luxembourg Stock Exchange introduces blockchain into reporting service". 18 October 2016. Retrieved 4 November 2016.
  72. Allison, Ian. "Ethereum-based Slock.it reveals first ever lock opened with money". International Business Times UK. Archived from the original on 2 April 2016. {{cite web}}: Unknown parameter |deadurl= ignored (|url-status= suggested) (help)
  73. Allison, Ian (12 September 2016). "Decentralized Capital issuing fiat-backed digital assets on the Ethereum blockchain". International Business Times. Archived from the original on 18 September 2016. {{cite web}}: Unknown parameter |deadurl= ignored (|url-status= suggested) (help)
  74. "Santander Confirms Fiat-backed Token Project on Ethereum Blockchain". CoinTelegraph. Archived from the original on 17 December 2016. Retrieved 15 January 2017. {{cite news}}: Unknown parameter |deadurl= ignored (|url-status= suggested) (help)
  75. Buntinx, JP (28 April 2016). "DigixDAO DGD Assets To Be Listed on OpenLedger". The Merkle. Archived from the original on 2 June 2016. Retrieved 29 May 2016. {{cite web}}: Unknown parameter |deadurl= ignored (|url-status= suggested) (help)
  76. Allison, Ian (4 October 2015). "Imogen Heap shows how smart music contracts work using Ethereum". International Business Times. Archived from the original on 21 March 2016. Retrieved 24 March 2016. {{cite web}}: Unknown parameter |deadurl= ignored (|url-status= suggested) (help)
  77. "Ethereum Prediction Market Service Takes First Steps With Beta Launch - CoinDesk". CoinDesk. 17 August 2016. Archived from the original on 7 February 2017. Retrieved 6 February 2017. {{cite news}}: Unknown parameter |deadurl= ignored (|url-status= suggested) (help)
  78. "ICO Roundup 2017 by Cointelegraph: Cashing In On Blockchain Apps' Mainstream Year". CoinTelegraph. Archived from the original on 7 February 2017. Retrieved 6 February 2017. {{cite news}}: Unknown parameter |deadurl= ignored (|url-status= suggested) (help)
  79. "Stox Prediction Platform Closes ICO after One Day; Raises over $30 Million". CryptoCoinsNews. 2 August 2017. Archived from the original on 29 September 2017. Retrieved 17 November 2017. {{cite web}}: Unknown parameter |deadurl= ignored (|url-status= suggested) (help)
  80. Rennie, Ellie (12 May 2016). "The radical DAO experiment". Swinburne News. Swinburne University of Technology. Archived from the original on 16 May 2016. Retrieved 12 May 2016. When it reaches the end of the funding phase on 28 May, 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. {{cite news}}: Unknown parameter |deadurl= ignored (|url-status= suggested) (help)
  81. Allison, Ian (30 April 2016). "Ethereum reinvents companies with launch of The DAO". International Business Times. Archived from the original on 1 May 2016. Retrieved 1 May 2016. {{cite news}}: Unknown parameter |deadurl= ignored (|url-status= suggested) (help)
  82. Weinglass, Simona (19 August 2015). "Backfeed wants to decentralize the Internet and help you earn what you deserve". Geektime.com. Archived from the original on 14 March 2016. Retrieved 24 March 2016. {{cite web}}: Unknown parameter |deadurl= ignored (|url-status= suggested) (help)
  83. CFA, Adam Hayes, (3 February 2017). "This New Social Network is Powered by Ethereum Technology". Investopedia. Archived from the original on 6 February 2017. Retrieved 6 February 2017. {{cite news}}: Unknown parameter |deadurl= ignored (|url-status= suggested) (help)CS1 maint: extra punctuation (link) CS1 maint: multiple names: authors list (link)
  84. Allison, Ian (22 December 2015). "Game-changers FreeMyVunk and Digix allow video gamers to trade virtual assets for physical gold". International Business Times. Archived from the original on 17 March 2016. Retrieved 24 March 2016. {{cite web}}: Unknown parameter |deadurl= ignored (|url-status= suggested) (help)
  85. "Decentralized Options Exchange Etheropt Uses Automated Ethereum Smart Contract". Archived from the original on 8 January 2017. {{cite web}}: Unknown parameter |deadurl= ignored (|url-status= suggested) (help)
  86. Rutkin, Aviva (2 March 2016). "Blockchain-based microgrid gives power to consumers in New York". New Scientist. Archived from the original on 22 March 2016. Retrieved 24 March 2016. {{cite web}}: Unknown parameter |deadurl= ignored (|url-status= suggested) (help)
  87. Mizrahi, Avi (1 December 2016). "Everex Helps Migrant Workers Send Remittance Back to Myanmar via Ethereum". Finance Magnates. Archived from the original on 20 December 2016. Retrieved 14 December 2016. {{cite web}}: Unknown parameter |deadurl= ignored (|url-status= suggested) (help)
  88. Bitcoinist. "Ethereum Dice Game Etheroll Announces Crowdfund Opening Feb. 13". bitcoinist.com. Archived from the original on 19 August 2017. Retrieved 18 August 2017. {{cite web}}: Unknown parameter |deadurl= ignored (|url-status= suggested) (help)
  89. Higgins, Stan. "Why a German Power Company is Using Ethereum to Test Blockchain Car Charging". CoinDesk. Archived from the original on 2 July 2017. Retrieved 2 May 2017. {{cite news}}: Unknown parameter |deadurl= ignored (|url-status= suggested) (help)
  90. EconoTimes. "ConsenSys uPort wins International Blockchain Summit - EconoTimes". EconoTimes. Archived from the original on 8 February 2017. Retrieved 6 February 2017. {{cite news}}: Unknown parameter |deadurl= ignored (|url-status= suggested) (help)
  91. Allison, Ian (23 September 2016). "ConsenSys uPort scoops first prize in International Blockchain Summit Demo Day". International Business Times UK. Archived from the original on 8 February 2017. Retrieved 6 February 2017. {{cite news}}: Unknown parameter |deadurl= ignored (|url-status= suggested) (help)
  92. Tkatchuk, Ralph (20 November 2017). "Can Blockchain Supercharge the Gig Economy?". Dataconomy. Archived from the original on 20 November 2017. {{cite news}}: Unknown parameter |deadurl= ignored (|url-status= suggested) (help)
  93. Gebron, Hunter (12 February 2017). "Ethlance And The Rise Of The On-Demand Economy". Archived from the original on 1 December 2017. {{cite news}}: Unknown parameter |deadurl= ignored (|url-status= suggested) (help)
  94. "CryptoKitties craze slows down transactions on Ethereum". 12 May 2017. {{cite news}}: Unknown parameter |deadurl= ignored (|url-status= suggested) (help)
  95. "Big Business Giants From Microsoft to J.P. Morgan Are Getting Behind Ethereum". Fortune. Archived from the original on 29 September 2017. Retrieved 8 November 2017. {{cite news}}: Unknown parameter |deadurl= ignored (|url-status= suggested) (help)
  96. "Hyperledger blockchain code almost comes together for IoT". Rethink Research. Archived from the original on 16 August 2016. Retrieved 23 April 2016. {{cite web}}: Unknown parameter |deadurl= ignored (|url-status= suggested) (help)
  97. Allison, Ian (3 May 2016). "Deloitte to build Ethereum-based 'digital bank' with New York City's ConsenSys". International Business Times. Archived from the original on 6 May 2016. {{cite web}}: Unknown parameter |deadurl= ignored (|url-status= suggested) (help)
  98. Allison, Ian (20 January 2016). "R3 connects 11 banks to distributed ledger using Ethereum and Microsoft Azure". International Business Times. Archived from the original on 23 February 2016. Retrieved 23 February 2016. {{cite news}}: Unknown parameter |deadurl= ignored (|url-status= suggested) (help)
  99. "UK Government Awards £248k for Ethereum Prototype". CoinDesk. Archived from the original on 5 June 2016. {{cite web}}: Unknown parameter |deadurl= ignored (|url-status= suggested) (help)
  100. "Settlement using blockchain to Automate Foreign Exchange in a Regulated environment (SAFER)". Innovate UK. Archived from the original on 4 May 2016. {{cite web}}: Unknown parameter |deadurl= ignored (|url-status= suggested) (help)
  101. "Barclays, UBS, Credit Suisse Seek Ethereum Blockchain Solution For MiFID II Regulations". ETHNews.com. Retrieved 29 December 2017.
  102. ^ Popper, Nathaniel (27 February 2017). "Business Giants to Announce Creation of a Computing System Based on Ethereum". New York Times. Archived from the original on 20 June 2017. Retrieved 5 June 2017. {{cite news}}: Unknown parameter |deadurl= ignored (|url-status= suggested) (help)
  103. Peck, Morgan (2 March 2017). "Corporate Titans Unite to Build an Enterprise Version of the Ethereum Blockchain". Institute of Electrical and Electronics Engineers (IEEE). Archived from the original on 17 June 2017. Retrieved 5 June 2017. {{cite web}}: Unknown parameter |deadurl= ignored (|url-status= suggested) (help)
  104. "Enterprise Ethereum Alliance expands dramatically announcing 86 new members" (PDF) (Press release). Enterprise Ethereum Alliance (EEA). 19 May 2017. Archived from the original (PDF) on 7 June 2017. Retrieved 5 June 2017. {{cite press release}}: Unknown parameter |deadurl= ignored (|url-status= suggested) (help)
  105. Shin, Laura (22 May 2017). "Ethereum Enterprise Alliance Adds 86 New Members Including DTCC, State Street And Infosys". Forbes. Archived from the original on 22 May 2017. Retrieved 22 May 2017. {{cite web}}: Unknown parameter |deadurl= ignored (|url-status= suggested) (help)
  106. https://www.inc.com/brian-d-evans/the-enterprise-ethereum-alliance-just-got-a-whole-.html
  107. "Enterprise Ethereum Alliance Joined By Mastercard, Cisco, Et Al". ETHNews.com. 18 July 2017. Archived from the original on 4 September 2017. Retrieved 17 November 2017. {{cite web}}: Unknown parameter |deadurl= ignored (|url-status= suggested) (help)
  108. "JP Morgan's Quorum blockchain powers new correspondent banking network » Banking Technology". www.bankingtech.com. Archived from the original on 9 November 2017. Retrieved 8 November 2017. {{cite web}}: Unknown parameter |deadurl= ignored (|url-status= suggested) (help)
  109. Hacket, Robert. "Why J.P. Morgan Chase Is Building a Blockchain on Ethereum". Fortune. Archived from the original on 2 February 2017. {{cite web}}: Unknown parameter |deadurl= ignored (|url-status= suggested) (help)
  110. "Proving Ethereum for the Clearing Use Case" (PDF). Archived from the original (PDF) on 10 October 2016. {{cite news}}: Unknown parameter |deadurl= ignored (|url-status= suggested) (help)
  111. Allison, Ian (7 December 2016). "Blockchain: RBS builds Ethereum-based distributed clearing house". IB Times. Archived from the original on 13 April 2017. Retrieved 8 May 2017. {{cite web}}: Unknown parameter |deadurl= ignored (|url-status= suggested) (help)
  112. Kaminska, Izabella (1 June 2017). "It's not a ponzi, it's a smart ponzi". FT Alphaville. Archived from the original on 23 July 2017. {{cite news}}: Unknown parameter |deadurl= ignored (|url-status= suggested) (help)
  113. Bartoletti, Carta; et al. "Dissecting Ponzi schemes on Ethereum: identification, analysis, and impact" (PDF). Universita di Cagliari. Archived from the original (PDF) on 17 August 2017. Retrieved 30 July 2017. {{cite journal}}: Cite journal requires |journal= (help); Explicit use of et al. in: |last1= (help); Unknown parameter |deadurl= ignored (|url-status= suggested) (help)
  114. "3 reasons to doubt bitcoin, ethereum, litecoin and other cryptocurrencies". CBS. 13 December 2017. Archived from the original on 15 December 2017. {{cite web}}: Unknown parameter |deadurl= ignored (|url-status= suggested) (help)

External links

Cryptocurrencies
Technology
Consensus mechanisms
Proof of work currencies
SHA-256-based
Ethash-based
Scrypt-based
Equihash-based
RandomX-based
X11-based
Other
Proof of stake currencies
ERC-20 tokens
Stablecoins
Other currencies
Inactive currencies
Crypto service companies
Related topics
Categories: