<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>https://coin.wiki/index.php?action=history&amp;feed=atom&amp;title=What_are_ERC20_tokens</id>
		<title>What are ERC20 tokens - Revision history</title>
		<link rel="self" type="application/atom+xml" href="https://coin.wiki/index.php?action=history&amp;feed=atom&amp;title=What_are_ERC20_tokens"/>
		<link rel="alternate" type="text/html" href="https://coin.wiki/index.php?title=What_are_ERC20_tokens&amp;action=history"/>
		<updated>2026-05-03T09:30:11Z</updated>
		<subtitle>Revision history for this page on the wiki</subtitle>
		<generator>MediaWiki 1.29.2</generator>

	<entry>
		<id>https://coin.wiki/index.php?title=What_are_ERC20_tokens&amp;diff=737&amp;oldid=prev</id>
		<title>QuintonP: Created page with &quot;The ERC20 token is the most commonly used token standard on the Ethereum blockchain. As such, it is the most popular token for companies running an ICO.   == Token Fun...&quot;</title>
		<link rel="alternate" type="text/html" href="https://coin.wiki/index.php?title=What_are_ERC20_tokens&amp;diff=737&amp;oldid=prev"/>
				<updated>2019-01-04T19:32:43Z</updated>
		
		<summary type="html">&lt;p&gt;Created page with &amp;quot;The ERC20 token is the most commonly used token standard on the &lt;a href=&quot;/index.php/Ethereum&quot; title=&quot;Ethereum&quot;&gt;Ethereum&lt;/a&gt; blockchain. As such, it is the most popular token for companies running an &lt;a href=&quot;/index.php/ICO&quot; title=&quot;ICO&quot;&gt;ICO&lt;/a&gt;.   == Token Fun...&amp;quot;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;The ERC20 token is the most commonly used token standard on the [[Ethereum]] blockchain. As such, it is the most popular token for companies running an [[ICO]]. &lt;br /&gt;
&lt;br /&gt;
== Token Functions ==&lt;br /&gt;
The ERC20 token required functions are:&lt;br /&gt;
* Get the total token supply:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;function totalSupply() public constant returns (uint);&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Get the account balance of another account:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;function balanceOf(address tokenOwner) public constant returns (uint balance);&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Returns the amount which the spender is still allowed to withdraw from the owner:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;function allowance(address tokenOwner, address spender) public constant returns (uint remaining);&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Send amount of tokens to address:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;function transfer(address to, uint tokens) public returns (bool success);&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Allow spender to withdraw from your account, multiple times, up to the amount written. If this function is called again it overwrites the current allowance with the value:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;function approve(address spender, uint tokens) public returns (bool success);&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Send amount of tokens from one address to another address:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;function transferFrom(address from, address to, uint tokens) public returns (bool success);&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Triggered when tokens are transferred&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;event Transfer(address indexed from, address indexed to, uint tokens);&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Triggered whenever approve is called:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;event Approval(address indexed tokenOwner, address indexed spender, uint tokens);&amp;lt;/code&amp;gt;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== ERC20 Examples ==&lt;br /&gt;
* [[QTUM]]&lt;br /&gt;
* [[EOS]]&lt;br /&gt;
* [[KredCoins]]&lt;br /&gt;
&lt;br /&gt;
== Links ==&lt;br /&gt;
[https://blocktorial.com/guides--tutorials/how-to-create-your-own-erc-20-token-in-2o-minutes-or-less Create your own ERC20 token]&lt;/div&gt;</summary>
		<author><name>QuintonP</name></author>	</entry>

	</feed>