October 13, 2018 by Leo Webb
2674
No Comments
Ethereum tokens are the most popular, and the Ethereum environment constantly grows as developers create new solutions based on the Ethereum blockchain. However, understanding this blockchain may be a tough task even for people with a nice technical background. Despite the complexity of this system, more and more people realize that the understanding of Ethereum, and tokenization in general, is not just useful but necessary. What is good about Ethereum is that if you understand the main principles of its work, understanding other cryptocurrencies will certainly be easier.
Let’s start with the definition of a token. A token is something that serves as a representation of something else or can be exchanged for something else. The same principle is used in cryptocurrency. A token is a cryptographic line that has no actual data but relates to some data, which is often referred to as “tokenized data.” This term may be used for cryptocurrency tokens, like BTC or ETH, as well as for other tokens that exist on a blockchain of another cryptocurrency.
The ETH coin is a very popular cryptocurrency, however, it’s not the only token associated with the Ethereum blockchain. There are dozens of tokens, and their market caps differ dramatically. Why do people need so many tokens? There are many decentralized applications (dApps) running on the Ethereum blockchain, and they have their own tokens. These tokens simplify the execution of smart contracts and represent a certain value. Most often, they can be easily exchanged for ETH. There are a few different standards for Ethereum tokens, and in this article, we are going to consider them in more detail.
A Little Bit of History
Vitalik Buterin, a co-founder of Ethereum, was 17 years old when he decided to expand the range of possible applications for cryptocurrencies. Although Bitcoin has been used for financial transactions, the underlying technology has certainly had a bigger potential. Buterin’s project, Ethereum, was different from Bitcoin because it could trade not only cryptocurrencies. The variety of possible Ethereum-based applications depends only on the creativity of developers, which is a reason why it quickly turned into a massive ecosystem with hundreds of dApps and various tokens.
After Ethereum made it possible to use blockchain for virtually any tasks associated with the data value, creators of Ethereum-based systems started looking for their own solutions to ensure the execution of smart contracts inside an application. At first, they needed to re-invent the wheel every time, writing their own versions of tokens that had the same basic functions. On the other hand, each token had its own principles of transferring, arguments, and a unique name. Thus, there was a problem with trading Token X and Token Y, as developers needed to understand and take into account all the particular features of another token to make the trade possible. If we imagine a cryptocurrency market that consists of hundreds of tokens, all of which have different systems of transferring, a simple token exchange that processes token contracts would grow in complexity exponentially.
To make things simpler, Ethereum introduced its ERC20 standard — a protocol that already includes a basic set of commands for any token. These commands make any token suitable for trading. Tokens based on ERC20 take the same arguments and have the same functions. Thus, no matter how many tokens there are, one system can support trading between any of them. This solution increased the liquidity of tokens dramatically. It also reduced the complexity of trading and risk. However, ERC20 was just the beginning of the evolution of tokens.
What Makes Ethereum Tokens so Popular
- The first reason is that Ethereum uses a Merkle Patricia Tree, which makes it possible to quickly verify and modify states which are necessary to execute an ICO. It contains not only a transaction ledger but also a set of program states for smart contracts. This system automatically calculates the amount of funds raised, confirms transactions, and distributes new tokens.
- Secondly, Ethereum is written in a Turing-complete language and has a feature called “gas” payment, which is used to process instructions in the code. Gas provides a basis for incentives for people who offer their computing power to execute Ethereum-based programs. Any program is aborted if it runs out of gas, which lowers the risk of DOS attacks, preventing infinite loops. If an ICO is under attack, executions are terminated.
- Ethereum also has a protocol called Greedy Heaviest Observed Subtree (GHOST), which makes it possible to create blocks faster without sacrificing the security of the blockchain. Transactions with new tokens can be quickly added to the crowdsale. The distribution of the new tokens also becomes quicker.
Now let’s take a closer look at the standards for Ethereum tokens.
ERC20
This standard consists of six functions which ensure the basic functionality of a token. The code of ERC20 is simple, in fact, even people who don’t have a diploma in computer science can easily understand it.
- The totalSupply() function reflects the total amount of tokens created by a certain project or exchanged within it.
- The transfer() function distributes the created tokens among the users’ wallets. This function was the main reason why ICOs started using the ERC20 standard, for the simplicity of sending tokens to investors after ICO is completed.
- The balanceOf() function tracks the balance of tokens in the wallet of any user.
- The transferFrom() function allows token holders to exchange their tokens with each other.
- The allowance() function is used to make sure that transactions are validated before they are recorded in the blockchain.
- The approve() function helps maintain the constant total supply of tokens within the economy of a certain project so that nobody can create tokens out of nowhere.
These six functions make developing platforms and creating tokens much simpler, and the ERC20 standard is used for all of the Top 20 Ethereum tokens.
What do You Need to Create an ERC20 Token?
ERC223
Even though ERC20 is good, it’s not perfect. For example, to date, people have lost $3 million ERC20 tokens by mistakenly sending them to smart contracts, using the same processes which send tokens to their wallets. ERC223 allows users to perform both these actions using the same function. In addition, this standard requires only one step for a transaction, unlike its predecessor that requires two steps. Thus, it’s more efficient and cheaper, as it also requires twice less gas.
However, despite the advantages of this standard and its backward compatibility with ERC20, developers don’t rush to adopt it. Most Ethereum wallets don’t support such tokens yet.
ERC721
These tokens were first introduced as a part of the Ethereum-based dApp CryptoKitties. This game, which became popular at the end of 2017, is about collecting different kinds of cats and breeding them. ERC721 made it possible to tokenize unique assets, and now developers can create non-fungible tokens (NFT). This means that tokens exchanged within the same ecosystem or platform can have a different value.
Tokenization of unique assets allows users to not only collect unique breeds of digital cats but also to trade works of art, real estate, or vintage wines. 0x protocol, which is one of the most promising Ethereum-based projects, added support for ERC721 in its v2 release, and another project, 0xcert, is going to focus exclusively on non-fungible tokens.
ERC721 allows people to transfer the ownership of any real-world asset on the Ethereum blockchain, no matter is it a Super Bowl ticket or a Picasso’s painting. Any items can be easily traced with the use of supply chains.
ERC777 and ERC820
Just like ERC223, ERC777 was intended to improve the ERC20 standard. It is also backward compatible with its predecessor. It has fixed the drawback of ERC20 that made users lose their money and it also expands the mechanisms of transactions.
It’s easier to understand ERC777 if we look at another standard, ERC820. ERC820 has a central registry of smart contracts, which makes everyone able to check the address of a smart contract and its supported functions. ERC777 also has such a registry, using it to simplify the verification of functions. This standard has a different set of functions, getting rid of such ERC20 functions as ‘approve’ and ‘transfer,’ and replacing them with ‘send.’ This function transfers Ether itself.
ERC777 also includes a new feature called “approved operators,” which means that now users can move tokens on their behalf, approving smart contracts. This feature makes ERC777 customizable because now developers can add more functionality, such as a recovery function when a user loses private keys or mixer contracts for better privacy. In addition, this protocol introduced a standard for burning tokens, which may be a useful thing for projects with specific token economics.
However, there are as yet no popular applications that use ERC777, and we will see whether or not it is going to be widely used in the future. It has a great potential and almost any modern decentralized application would certainly benefit from using it.
Press release: Pandora Boxchain Created Reputation Token for the Ethereum network
Plans for Future Development
The future of Ethereum tokens, in general, depends on the future of the Ethereum blockchain, as well as on the future of dApps. During the last year, developers created a really impressive number of new tokens, and this trend is not going to stop. People constantly build innovative solutions based on the Ethereum blockchain, and this means that new tokens will keep coming.
Although ERC20 remains the most popular standard for tokens, there are also new protocols, and many of them offer amazing opportunities. New standards for tokens go far beyond the limitations of ERC20, allowing us to tokenize virtually anything, from cryptocurrencies to more tangible assets from the real world. There’s no doubt that tokens will keep getting more versatile, and our understanding of tokenizing will expand with each innovation.
How to Earn Income via Validating POS Networks? Learn in article
Other blockchain related content
FAQs
What are ERC-20 and ERC-721 tokens? ›
Ethereum Crypto Realm Assets
ERC20 tokens represent fungible assets. For example, these tokens represent project ownership, service vouchers, staking tokens, or governance tokens. In contrast, ERC721 tokens represent non-fungible assets. Presently, the sole prominent application of ERC721 tokens is in-game assets.
ERC-20, ERC-721, and ERC-1155 appear as the three popular ERC token standards or protocols that have their applications across major industries. The Ethereum community fully approves these token standards, which differ in specific features and functionalities.
Which ERC standard is the most widely used and supported 721 1155 20 777? ›These include ERC-20, ERC-721, ERC-777, and ERC-1155. The original token standard, ERC-20 is also still the most widespread, making the tokens that use it compatible with any project on the Ethereum network and any Ethereum-based wallet.
What is erc777 token? ›ERC-777 is a token standard for fungible tokens introduced on the Ethereum network that is fully compatible with existing decentralized exchanges. In simpler words, the ERC-777 tokenization standard refers to Ethereum's blockchain protocol that specifies the type of tokens compatible with ETH.
What does ERC 721 stand for? ›The ERC-721 (Ethereum Request for Comments 721), proposed by William Entriken, Dieter Shirley, Jacob Evans, Nastassia Sachs in January 2018, is a Non-Fungible Token Standard that implements an API for tokens within Smart Contracts.
What is the difference between ERC-721 and ERC 1155? ›Token Support: ERC-721 only supports the creation of NFTs, while ERC-1155 not only supports the creation of NFTs but also fungible and semi-fungible tokens, facilitating the conversion of these types of tokens to NFTs and vice-versa. This flexibility is a significant advantage for ERC-1155.
How many Ethereum tokens are there? ›The network started with an initial supply of 72 million ETH tokens.
What are all the ERC standards? ›Types of ERCs
ERC-20: This is the standard API used for fungible tokens, including transfer and balance tracking functionalities. ERC-223: This standard protects users from accidental contract transfers. ERC-721: This is the most popular non-fungible token (NFT) standard.
The most crucial highlight of the difference between ERC 1155 and ERC 721 focuses on the way ERC-1155 addresses the limitations of ERC-721. While ERC-721 offered the foundation for non-fungible tokens, ERC-1155 offers the traits required for future NFTs.
What are ERC 1155 tokens How do they differ from ERC-20 and ERC 721 tokens? ›ERC-1155 is a multi-token standard that combines the attributes of both ERC-20 and ERC-721 token standards. It can be better explained as a common token Smart contract interface for various Ethereum tokens: fungible, semi-fungible, and non-fungible tokens.
Where do I find my ERC 1155 address? ›
To view an address's ERC-1155 token transfers, simply head to its tab in the Address page. Clicking on any Transaction Details page that involves ERC-1155 token transfers will show the token IDs & quantities transferred and, where relevant, details of a trade. ERC-1155 tokens are correctly displayed in Token page.
What is the best ERC token? ›- Best Metaverse Coins.
- Buy ApeCoin.
- Buy Axie Infinity.
- Buy Decentraland.
- Buy DeFi Kingdoms.
- Buy Enjin.
- Buy Gala.
- Buy GMT.
ERC-20 — the most famous ERC standard
Since 2015 the ERC-20 standard was known as the most significant on Ethereum. ERC-20 has emerged as the technical standard and it is used for all smart contracts on the Ethereum blockchain for token implementation.
An ERC20 token is a standard used for creating and issuing smart contracts on the Ethereum blockchain. Smart contracts can then be used to create smart property or tokenized assets that people can invest in. ERC stands for "Ethereum request for comment," and the ERC20 standard was implemented in 2015.
What are the key features of ERC 777? ›The ERC-777 makes advantage of the new ERC-820 standard, which enables the registration of contract meta-data for rudimentary introspection. This enables for both backward and forward compatibility as well as the addition of new features. Contracts that are ERC-777 communicate in the same manner as ERC-20 contracts do.
What is ERC677 token? ›The LINK token is an ERC677 token that inherits functionality from the ERC20 token standard and allows token transfers to contain a data payload. Read more about the ERC677 transferAndCall token standard. Networks: Ethereum. BNB Chain.
Which ERC standard is improved? ›In 2022, ERC-20 and ERC-721 remain the two most widely used token standard on the Ethereum ecosystem. However, the Ethereum community is constantly proposing new mechanisms and enhancements to unlock new use cases such as SaaS applications (ERC-1337) and improvements to the user experience (e.g. ERC-777).
How do I create a NFT code? ›- Step 1: Connect to the Ethereum network.
- Step 2: Create your app (and API key)
- Step 3: Create an Ethereum account (address)
- Step 4: Add ether from a Faucet.
- Step 5: Check your Balance.
- Step 6: Initialize our project.
- Step 7: Install Hardhat.
Look up your NFT listing on OpenSea to get the required on-chain information. If the full information is not being displayed and you see an ellipsis, you can find the contract address and token ID by looking at the URL. Copy the string of letters and numbers under the name.
How many ERC 721 tokens are there? ›At the time of writing, there are a total of 1.941 different ERC-721 tokens created.
What coins are ERC-20? ›
...
Popular ERC20 tokens list
- Chainlink (LINK)
- Tether (USDT)
- Shiba Inu (SHIB)
- Wrapped Bitcoin (WBTC)
- OmiseGO (OMG)
- 0x (ZRX)
Strictly speaking, Ethereum is not the same as Ether, as Ethereum refers to the blockchain network that underpins Ether and all other Ethereum-based tokens, while Ether is the primary token on the blockchain.
Which coins are under Ethereum? ›# | Name | 30D % |
---|---|---|
1 | TetherUSDT | -0.42% |
2 | USD CoinUSDC | -0.41% |
3 | Binance USDBUSD | -0.46% |
4 | DaiDAI | -0.41% |
An ERC20 token is a standard used for creating and issuing smart contracts on the Ethereum blockchain. Smart contracts can then be used to create smart property or tokenized assets that people can invest in. ERC stands for "Ethereum request for comment," and the ERC20 standard was implemented in 2015.