Ethereum

From Infogalactic: the planetary knowledge core
(Redirected from Ether (value token))
Jump to: navigation, search

Lua error in package.lua at line 80: module 'strict' not found. Lua error in package.lua at line 80: module 'strict' not found.

Ethereum
Ethereum logo 2014.svg
The Ethereum Project's logo, first used in 2014
Initial release 30 July 2015
Development status Active
Written in C++, Go, Rust
Operating system Clients available for Linux, Windows, macOS, POSIX, Raspbian
Platform x86, ARM
Type Decentralized computing
License GPLv3, LGPLv3[1]
Website www.ethereum.org

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 of 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 Ethereum was forked into two separate blockchains, as a result of the collapse of The DAO project, thereby creating Ethereum Classic.[7][8][9]. The new forked version was Ethereum (ETH) and the one that continued its existence is Ethereum Classic (ETC).

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 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. The last of these prototypes culminated in a public beta pre-release known as "Olympic".[17][18] The Olympic network provided users with a bug bounty of 25,000 ether for stress testing the limits of the Ethereum blockchain.

After Olympic, the Foundation announced the beginning of the Frontier network to mark the tentative experimental release of the Ethereum platform in July 2015.[19][20] Since the initial launch, Ethereum has undergone several planned protocol upgrades called milestones, which are important changes affecting the underlying functionality and/or incentive structures of the platform.[21][22]

The current milestone is named "Homestead" and is 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, i.e. Metropolis and Serenity. Metropolis is intended to reduce the complexity of the EVM and provide more flexibility for smart contract developers.[22] The move to Serenity is still uncertain, but 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][27] Improvements to scalability, specifically sharding, are also said to be a key objective on the development roadmap.[28][29] Metropolis adds supports for zkSnarks (from Zcash), and the first zksnarks transaction occurred on testnet on September 19, 2017.[30]

Version Code name Release date
Old version, no longer supported: 0 Olympic May, 2015
Old version, no longer supported: 1 Frontier 30 July 2015
Old version, no longer supported: 2 Homestead 14 March 2016
Current stable version: 3 Metropolis (vByzantium) 16 October 2017
Future release: 3.5 Metropolis (vConstantinople) TBA [31]
Future release: 4 Serenity TBA
Legend:
Old version
Older version, still supported
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.[32] The DAO was exploited in June when US$50 million in ether were claimed by an anonymous entity.[33][34] The event sparked a debate in the crypto-community about whether Ethereum should perform a contentious "hard fork" to reappropriate the stolen funds.[35] As a result of the dispute, the network split in two. Ethereum (the subject of this article) continued as on the forked blockchain, while Ethereum Classic continued on the original blockchain.[36] The hard fork created a rivalry between the two networks.[37]

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.[38] 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
Currency type Cryptocurrency
User(s) Worldwide
Symbol Ξ or ETH

The value token of the Ethereum blockchain is called ether. It is listed under the code ETH and traded on cryptocurrency exchanges. It is also used to pay for transaction fees and computational services on the Ethereum network.[39]

Tokens can be volatile per circumstances, such as ether's plunge from $21.50 to $8 when The DAO was hacked on 17 June 2016.[34] As of June 2017, the value of ether had risen to more than $400, a 5,000% rise since the beginning of the year.[40]

Price volatility on any single exchange can exceed the volatility on Ether token prices more generally. A "flash crash" triggered by a large sell order on one exchange briefly dropped the price on that exchange to $0.10 as every offer to buy was absorbed, after which the price quickly recovered to more than $300.[41]

Ethereum Virtual Machine

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

Smart contracts

<templatestyles src="Module:Hatnote/styles.css"></templatestyles>

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

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

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

Programming languages

<templatestyles src="Module:Hatnote/styles.css"></templatestyles>

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

Performance

In Ethereum all smart contracts are stored publicly on every node of the blockchain, which has trade-offs.[53] The downside is that performance issues arise in that every node is calculating all the smart contracts in real time, resulting in lower speeds.[53] Ethereum engineers have been working on sharding the calculations, but no solution had been detailed by early 2016.[53] As of January 2016, the Ethereum protocol could process 25 transactions per second.[53] In September 2016, Buterin presented proposals to increase scalability.[29] 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.[54] 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.[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][39] Use case proposals have included finance, the internet-of-things, farm-to-table produce, electricity sourcing and pricing, and sports betting.[39][60] Ethereum is (as of 2017) the leading blockchain platform for initial coin offering project 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:

  • Geth: Client implementation in Go
  • Jaxx: Web wallet[62]
  • KeepKey: Hardware wallet[63]
  • Ledger Nano S: Hardware wallet[64]
  • Mist: Desktop wallet[65]
  • Parity: Client implementation in Rust

Decentralized applications

Enterprise software

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

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.[94] 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, Merck KGaA, DTCC, Deloitte, Accenture, Banco Santander, BNY Mellon, ING, and National Bank of Canada.[95][96][97]

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

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

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."[100] 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.[101]
  • 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.[102][103]

Criminal activity

A finance blogger on FT Alphaville has pointed out that criminals are using Ethereum to run Ponzi schemes and other forms of investment fraud.[104] 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.[105]

References

  1. Lua error in package.lua at line 80: module 'strict' not found.
  2. 2.0 2.1 2.2 Lua error in package.lua at line 80: module 'strict' not found.
  3. Cryptocurrencies: A Brief Thematic Review. Social Science Research Network. Date accessed 28 august 2017.
  4. Lua error in package.lua at line 80: module 'strict' not found.
  5. 5.0 5.1 5.2 Lua error in package.lua at line 80: module 'strict' not found.
  6. Lua error in package.lua at line 80: module 'strict' not found.
  7. Lua error in package.lua at line 80: module 'strict' not found.
  8. Lua error in package.lua at line 80: module 'strict' not found.
  9. Lua error in package.lua at line 80: module 'strict' not found.
  10. Lua error in package.lua at line 80: module 'strict' not found.
  11. 11.0 11.1 Lua error in package.lua at line 80: module 'strict' not found.
  12. Lua error in package.lua at line 80: module 'strict' not found.
  13. Lua error in package.lua at line 80: module 'strict' not found.
  14. Lua error in package.lua at line 80: module 'strict' not found.
  15. Lua error in package.lua at line 80: module 'strict' not found.
  16. Lua error in package.lua at line 80: module 'strict' not found.
  17. Lua error in package.lua at line 80: module 'strict' not found.
  18. Lua error in package.lua at line 80: module 'strict' not found.
  19. Lua error in package.lua at line 80: module 'strict' not found.
  20. Lua error in package.lua at line 80: module 'strict' not found.
  21. Lua error in package.lua at line 80: module 'strict' not found.
  22. 22.0 22.1 22.2 Lua error in package.lua at line 80: module 'strict' not found.
  23. 23.0 23.1 Lua error in package.lua at line 80: module 'strict' not found.
  24. Lua error in package.lua at line 80: module 'strict' not found.
  25. Lua error in package.lua at line 80: module 'strict' not found.
  26. 26.0 26.1 Lua error in package.lua at line 80: module 'strict' not found.
  27. Lua error in package.lua at line 80: module 'strict' not found.
  28. Lua error in package.lua at line 80: module 'strict' not found.
  29. 29.0 29.1 Lua error in package.lua at line 80: module 'strict' not found.
  30. Lua error in package.lua at line 80: module 'strict' not found.
  31. Lua error in package.lua at line 80: module 'strict' not found.
  32. 32.0 32.1 Lua error in package.lua at line 80: module 'strict' not found.
  33. 33.0 33.1 Lua error in package.lua at line 80: module 'strict' not found.
  34. 34.0 34.1 Lua error in package.lua at line 80: module 'strict' not found.
  35. Lua error in package.lua at line 80: module 'strict' not found.
  36. Lua error in package.lua at line 80: module 'strict' not found.
  37. Lua error in package.lua at line 80: module 'strict' not found.
  38. Lua error in package.lua at line 80: module 'strict' not found.
  39. 39.0 39.1 39.2 39.3 Lua error in package.lua at line 80: module 'strict' not found.
  40. Lua error in package.lua at line 80: module 'strict' not found.
  41. Lua error in package.lua at line 80: module 'strict' not found.
  42. Lua error in package.lua at line 80: module 'strict' not found.
  43. Lua error in package.lua at line 80: module 'strict' not found.
  44. Ethereum Yellow Paper by Gavin Wood
  45. Lua error in package.lua at line 80: module 'strict' not found.
  46. Lua error in package.lua at line 80: module 'strict' not found.
  47. Lua error in package.lua at line 80: module 'strict' not found.
  48. Lua error in package.lua at line 80: module 'strict' not found.
  49. Lua error in package.lua at line 80: module 'strict' not found.
  50. Lua error in package.lua at line 80: module 'strict' not found.
  51. Lua error in package.lua at line 80: module 'strict' not found.
  52. Lua error in package.lua at line 80: module 'strict' not found.
  53. 53.0 53.1 53.2 53.3 Lua error in package.lua at line 80: module 'strict' not found.
  54. 54.0 54.1 Lua error in package.lua at line 80: module 'strict' not found.
  55. Lua error in package.lua at line 80: module 'strict' not found.
  56. Lua error in package.lua at line 80: module 'strict' not found.
  57. Lua error in package.lua at line 80: module 'strict' not found.
  58. Lua error in package.lua at line 80: module 'strict' not found.
  59. Lua error in package.lua at line 80: module 'strict' not found.
  60. Lua error in package.lua at line 80: module 'strict' not found.
  61. Lua error in package.lua at line 80: module 'strict' not found.
  62. Lua error in package.lua at line 80: module 'strict' not found.
  63. Lua error in package.lua at line 80: module 'strict' not found.
  64. Lua error in package.lua at line 80: module 'strict' not found.
  65. Lua error in package.lua at line 80: module 'strict' not found.
  66. Lua error in package.lua at line 80: module 'strict' not found.
  67. Lua error in package.lua at line 80: module 'strict' not found.
  68. Lua error in package.lua at line 80: module 'strict' not found.
  69. Lua error in package.lua at line 80: module 'strict' not found.
  70. Lua error in package.lua at line 80: module 'strict' not found.
  71. Lua error in package.lua at line 80: module 'strict' not found.
  72. Lua error in package.lua at line 80: module 'strict' not found.
  73. Lua error in package.lua at line 80: module 'strict' not found.
  74. https://www.cryptocoinsnews.com/stox-prediction-platform-closes-ico-one-day-raises-30-million/
  75. https://cointelegraph.com/news/less-than-month-after-ico-stox-kicks-off-alpha-with-luis-suarez&usg=AFQjCNGAjj6rsU0-2SGL-_UPrOQI5VmF9Q
  76. Lua error in package.lua at line 80: module 'strict' not found.
  77. Lua error in package.lua at line 80: module 'strict' not found.
  78. Lua error in package.lua at line 80: module 'strict' not found.
  79. Lua error in package.lua at line 80: module 'strict' not found.
  80. Lua error in package.lua at line 80: module 'strict' not found.
  81. Lua error in package.lua at line 80: module 'strict' not found.
  82. Lua error in package.lua at line 80: module 'strict' not found.
  83. Lua error in package.lua at line 80: module 'strict' not found.
  84. Lua error in package.lua at line 80: module 'strict' not found.
  85. Lua error in package.lua at line 80: module 'strict' not found.
  86. Lua error in package.lua at line 80: module 'strict' not found.
  87. Lua error in package.lua at line 80: module 'strict' not found.
  88. Lua error in package.lua at line 80: module 'strict' not found.
  89. Lua error in package.lua at line 80: module 'strict' not found.
  90. Lua error in package.lua at line 80: module 'strict' not found.
  91. Lua error in package.lua at line 80: module 'strict' not found.
  92. Lua error in package.lua at line 80: module 'strict' not found.
  93. Lua error in package.lua at line 80: module 'strict' not found.
  94. 94.0 94.1 Lua error in package.lua at line 80: module 'strict' not found.
  95. Lua error in package.lua at line 80: module 'strict' not found.
  96. Lua error in package.lua at line 80: module 'strict' not found.
  97. Lua error in package.lua at line 80: module 'strict' not found.
  98. https://www.inc.com/brian-d-evans/the-enterprise-ethereum-alliance-just-got-a-whole-.html
  99. https://www.ethnews.com/mastercard-cisco-and-others-join-the-enterprise-ethereum-alliance
  100. Lua error in package.lua at line 80: module 'strict' not found.
  101. Lua error in package.lua at line 80: module 'strict' not found.
  102. Lua error in package.lua at line 80: module 'strict' not found.
  103. Lua error in package.lua at line 80: module 'strict' not found.
  104. Lua error in package.lua at line 80: module 'strict' not found.
  105. Lua error in package.lua at line 80: module 'strict' not found.

External links