Difference between revisions of "Ethereum"

From CoinWiki
Jump to: navigation, search
(Ethereum ERC Tokens)
(Ethereum Name Service)
 
(21 intermediate revisions by 2 users not shown)
Line 1: Line 1:
Ethereum is a open-software platform that is operating using [[blockchain]] technology co-founded by [https://en.wikipedia.org/wiki/Vitalik_Buterin Vitalik Buterin]. [[Ethereum]] was released 2015.  [[Ethereum]] gives a [[cryptocurrency]] called "ether" that can be moved from different accounts. While [[Bitcoin]] was designed for consumer payments, [[Ethereum]]
+
Ethereum is a open-software platform that is operating using [[blockchain]] technology co-founded by [https://en.wikipedia.org/wiki/Vitalik_Buterin Vitalik Buterin] and [[Joseph Lubin]]. [[Ethereum]] was released 2015.  [[Ethereum]] gives a [[cryptocurrency]] called [[ether]] that can be moved from different accounts. While [[Bitcoin]] was designed for consumer payments, [[Ethereum]]
was designed to allow for more complex party interactions called [[smart contracts]].
+
was designed to allow for more complex party interactions called [[Smart contracts]].  These can be defined using [[Solidity]].
  
 
== Ethereum ERC Tokens ==
 
== Ethereum ERC Tokens ==
An Ethereum based token is a fungible tradable asset that operates on Ethereum's [[blockchain]]. The Ethereum Request for Comments (ERC) for tokens are a way of describing a set of functions and rules that the token should posses and follow. The three most common standards can be seen here:
+
An ERC token is a fungible tradable asset that operates on Ethereum's [[blockchain]]. The Ethereum Request for Comments (ERC) for tokens is a way of describing a set of functions and rules that the token should posses and follow. The three most common standards can be seen here:
  
=== ERC20 ===
+
=== Token Standards ===
The ERC20 token is the most commonly used standard. As such, it is the most popular token for companies running an [[ICO]].
+
* [[ERC20]]
* The ERC20 token required functions are:
+
* [[ERC223]]
Get the total token supply
+
* [[ERC721]]
<code>function totalSupply() public constant returns (uint);</code>
 
  
<code>function balanceOf(address tokenOwner) public constant returns (uint balance);</code>
+
== Development on Ethereum ==
 +
Ethereum has a set of tools for developers to create, deploy and interact with smart contracts, tokens, DApps and more.
  
<code>function allowance(address tokenOwner, address spender) public constant returns (uint remaining);</code>
+
* [[MetaMask]]
 +
* [[Ethereum Virtual Machine]]
 +
* [[Remix]]
 +
* [[Truffle Suite]]
  
<code>function transfer(address to, uint tokens) public returns (bool success);</code>
+
== Ethereum Name Service ==
 +
The Ethereum Name Service (ENS) allows Ethereum users to replace their long wallet addresses with “human readable names” attached to a domain. The two available TLDs are:
 +
* [[.luxe]]
 +
* [[.eth]]
  
<code>function approve(address spender, uint tokens) public returns (bool success);</code>
+
== See Also ==
 
 
<code>function transferFrom(address from, address to, uint tokens) public returns (bool success);</code>
 
 
 
<code>event Transfer(address indexed from, address indexed to, uint tokens);</code>
 
 
 
<code>event Approval(address indexed tokenOwner, address indexed spender, uint tokens);</code>
 
}
 
 
 
Examples:
 
* [[EOS]]
 
 
* [[KredCoins]]
 
* [[KredCoins]]
 
=== ERC223 ===
 
 
=== ERC721 ===
 
 
== See Also ==
 
 
* [[dApps]]
 
* [[dApps]]
 
* [[Bitcoin]]
 
* [[Bitcoin]]
Line 42: Line 32:
 
== Resources ==
 
== Resources ==
 
* [https://ethereum.org Ethereum main site]
 
* [https://ethereum.org Ethereum main site]
* [https://www.cryptokitties.co Crypto Kitties] Viral<ref>https://techcrunch.com/2017/12/03/people-have-spent-over-1m-buying-virtual-cats-on-the-ethereum-blockchain/</ref> virtual cat game based on the Etherium Blockchain
 
 
* [https://metamask.io/ MetaMask] Chrome plug in that allows It allows you to run Ethereum [[dApps]] right in your browser without running a full [[Ethereum node]]
 
* [https://metamask.io/ MetaMask] Chrome plug in that allows It allows you to run Ethereum [[dApps]] right in your browser without running a full [[Ethereum node]]
  
== References ==
+
__NOTOC__
<references />
 

Latest revision as of 21:10, 8 March 2019

Ethereum is a open-software platform that is operating using blockchain technology co-founded by Vitalik Buterin and Joseph Lubin. Ethereum was released 2015. Ethereum gives a cryptocurrency called ether that can be moved from different accounts. While Bitcoin was designed for consumer payments, Ethereum was designed to allow for more complex party interactions called Smart contracts. These can be defined using Solidity.

Ethereum ERC Tokens

An ERC token is a fungible tradable asset that operates on Ethereum's blockchain. The Ethereum Request for Comments (ERC) for tokens is a way of describing a set of functions and rules that the token should posses and follow. The three most common standards can be seen here:

Token Standards

Development on Ethereum

Ethereum has a set of tools for developers to create, deploy and interact with smart contracts, tokens, DApps and more.

Ethereum Name Service

The Ethereum Name Service (ENS) allows Ethereum users to replace their long wallet addresses with “human readable names” attached to a domain. The two available TLDs are:

See Also

Resources