mirror of
https://github.com/autistic-symposium/blockchains-security-toolkit.git
synced 2025-05-14 04:32:17 -04:00
31 lines
951 B
Markdown
31 lines
951 B
Markdown
## Token standards
|
|
|
|
<br>
|
|
|
|
* ERC stands for Ethereum request for comments.
|
|
* These are technical documents written by Ethereum developers for Ethereum community.
|
|
* Each such document contains a set of rules required to implement tokens for the Ethereum ecosystem.
|
|
* You can say ERC is a specific type of EIP.
|
|
|
|
|
|
<br>
|
|
|
|
---
|
|
|
|
### [ERC20](https://github.com/bt3gl-labs/Blockchain-Hacking-Toolkit/blob/main/Solidity-Expert/Token-standards/erc20.md)
|
|
|
|
* In the case of ERC20, a transaction sending ether to an address changes the state of an address. A transaction transferring a token to an address only changes the state of the token contract, not the state of the recipient address.
|
|
|
|
|
|
<br>
|
|
|
|
---
|
|
|
|
### [ERC777](https://github.com/bt3gl-labs/Blockchain-Hacking-Toolkit/blob/main/Solidity-Expert/Token-standards/erc777.md)
|
|
|
|
|
|
<br>
|
|
|
|
---
|
|
|
|
### [ERC721](https://github.com/bt3gl-labs/Blockchain-Hacking-Toolkit/blob/main/Solidity-Expert/Token-standards/erc721.md)
|