Ethereum

From Wikipedia, the free encyclopedia

This is an old revision of this page, as edited by GB fan (talk | contribs) at 01:06, 23 December 2017 (Reverted 1 edit by 66.27.76.146 (talk): What? (TW)). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

Ethereum
Initial release30 July 2015
Repository
Written inC++, Go, Rust
Operating systemClients available for Linux, Windows, macOS, POSIX, Raspbian
Platformx86, ARM
TypeDecentralized computing
LicenseGPLv3, LGPLv3[1]
Websitewww.ethereum.org
Ethereum Price History
Ethereum Price History

Ethereum is an open-source, public, blockchain-based distributed computing platform featuring smart contract (scripting) functionality.[2] 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.[3] "Gas", an internal transaction pricing mechanism, is used to mitigate spam and allocate resources on the network.[2][4]

Ethereum was proposed in late 2013 by Vitalik Buterin, a cryptocurrency researcher and programmer. Development was funded by an online crowdsale between July and August 2014.[5] The system went live on 30 July 2015, with 11.9 million coins "premined" for the crowdsale.[6] 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 forked into two separate blockchains - the new forked version became Ethereum (ETH), and the original continued as Ethereum Classic (ETC).[7][8][9]

History

Origin

Ethereum was initially described in a white paper by Vitalik Buterin,[10] a programmer involved with Bitcoin Magazine, in late 2013 with a goal of building decentralized applications.[11][12] 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.[13]: 88 

At the time of public announcement in January 2014, the core Ethereum team was Vitalik Buterin, Mihai Alisie, Anthony Di Iorio, and Charles Hoskinson.[14] Formal development of the Ethereum software project began in early 2014 through a Swiss company, Ethereum Switzerland GmbH (EthSuisse).[15][16] 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.[5] While there was early praise for the technical innovations of Ethereum, questions were also raised about its security and scalability.[11]

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.[17][18] 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.[19][20]

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.[21][22]

"Homestead" was the first to be considered stable.[23][24] It includes improvements to transaction processing, gas pricing, and security.[25][23][26]

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.[22] Metropolis also adds supports for zkSnarks (from Zcash); with the first zksnarks transaction occurring on testnet on September 19, 2017.[27]

"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).[22][28] Improvements to scalability, specifically sharding, are also said to be a key objective on the development roadmap.[29][30]

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 [27]
Future release: 4 Serenity TBA
Legend:
Old version
Older version, still maintained
Latest version
Latest preview version
Future 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.[31] The DAO was exploited in June when US$50 million in ether were claimed by an anonymous entity.[32][33] The event sparked a debate in the crypto-community about whether Ethereum should perform a contentious "hard fork" to reappropriate the affected funds.[34] 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.[35] The hard fork created a rivalry between the two networks.[36]

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.[37] By the end of November 2016, Ethereum had increased its DDoS protection, de-bloated the blockchain, and thwarted further spam attacks by hackers.[26]

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.[38]

Ethereum Virtual Machine

The Ethereum Virtual Machine (EVM)[39][40] 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.[41][better source needed][42] 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).[43][44]

Smart contracts

Smart contracts are deterministic exchange mechanisms controlled by digital means that can carry out the direct transaction of value between untrusted agents.[45] 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.[2]

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.[46]

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.[47] One example of this is the 17 June 2016 attack on The DAO, which could not be quickly stopped or reversed.[32]

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.[48]

Programming languages

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).[49]

Performance

In Ethereum all smart contracts are stored publicly on every node of the blockchain, which has trade-offs.[50] 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.[50] As of January 2016, the Ethereum protocol could process 25 transactions per second.[50] 19 December, Ethereum exceeded one million transactions in a single day for the first time.[51]

  • Micro Raiden was launched November 2017.[52]
  • 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.[53] 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.[53]
  • Ethereum engineers have been working on sharding the calculations, and the next step (called Ethereum 2) was presented at Devcon 3.[54]

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.[55][unreliable source?] 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%.[56][57]

Proposed uses

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

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[62]
  • KeepKey: Hardware wallet[63]
  • Ledger Nano S: Hardware wallet[64]
  • Mist: Desktop wallet[65]

Decentralized applications

Enterprise software

Ethereum-based customized software and networks, independent from the public Ethereum chain, are being tested by enterprise software companies.[90] Interested parties include Microsoft, IBM, JPMorgan Chase,[38][91] Deloitte,[92] R3,[93] Innovate UK (cross-border payments prototype).[94][95]

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.[96] 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.[97][98][99]

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.[96]

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

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."[102] 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.[103]
  • 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.[104][105]

Ethereum Name Service

Ethereum Name Service

Academic and professional reception

Dan Boneh of Stanford and Vipul Goyal of Carnegie Mellon told CNBC that some of their respective students are starting their own cryptocurrency projects.[106] Cornell University, UC Berkeley, and Technion – Israel Institute of Technology formed the Initiative for Cryptocurrencies and Contracts (aka IC3), which later joined the Enterprise Ethereum Alliance.[107]

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.[108] 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.[109]

Speculative 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.[110]

References

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

External links

  1. ^ "COMMITTEE DETAILS FOR COMMITTEE ID C00660670". docquery.fec.gov. Retrieved 14 December 2017.