The ERC721 token standard allows for the implementation of a standard API for NFTs within smart contracts. This standard provides basic functionality to track and transfer NFTs.
Use cases of NFTs being owned and transacted by individuals as well as consignment to third party brokers/wallets/auctioneers (“operators”). NFTs can represent ownership over digital or physical assets. Some examples of NFTs include:
Physical property — houses, unique artwork
Virtual collectables — unique pictures of kittens, collectable cards
“Negative value” assets — loans, burdens and other responsibilities
A standard interface for non-fungible tokens on the Ethereum blockchain
A standard interface for tokens on the Ethereum blockchain
The ERC20 token standard allows for the implementation of a standard API for tokens within smart contracts. This standard provides basic functionality to transfer tokens, as well as allow tokens to be approved so they can be spent by another on-chain third party.
November 19, 2015
A token is a representation of something on the blockchain.
A token is a representation of something in the blockchain. This something can be money, time, services, shares in a company, a virtual pet, anything. By representing things as tokens, we can allow smart contracts to interact with them, exchange them, create or destroy them.
# Ethereum Token Contracts
On Ethereum there is the distinction between token contracts and the actual tokens themselves.
A token contract is a smart contract. "Sending tokens" means "calling a method on a smart contract that someone wrote and deployed". A token contract is the mapping of addresses to balances, plus some methods to add and subtract from those balances.
These balances represent the tokens themselves. Someone "has tokens" when their balance in the token contract is non-zero. These balances could be considered money, experience points in a game, deeds of ownership, or voting rights, and each of these tokens would be stored in different token contracts.
# Types of tokens
Tokens generally have two distinct types of tokens, fungible and non-fungible tokens (NFTs). Fungible goods are equivalent and interchangeable, like Ether, fiat currencies and voting rights. Non-fungible goods are unique and distinct, like deeds of ownership or collectibles. Generally for NFTs you care about which NFTs you have, while in fungible tokens you care about how much you have.
# Common Token Standards within Ethereum
ERC20: the most widespread token standard for fungible assets, albeit somewhat limited by its simplicity.
ERC721: the de-facto solution for non-fungible tokens, often used for collectibles and games.
ERC777: a richer standard for fungible tokens, enabling new use cases and building on past learnings. Backwards compatible with ERC20.
ERC1155: a novel standard for multi-tokens, allowing for a single contract to represent multiple fungible and non-fungible tokens, along with batched operations for increased gas efficiency.
January 24, 2018
November 19, 2015
Soulbound-tokens (SBT) is digital identity token. It represent the traits, features, and achievements that make up a person or entity and was developed by Vitalik Buterin in 2022.
A standard interface for non-fungible tokens on the Ethereum blockchain
A standard interface for tokens on the Ethereum blockchain
A token is a representation of something on the blockchain.