Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add ERC-223 to token standards list at the Advanced Standards tab #10782

Merged
merged 2 commits into from
Jul 25, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/content/developers/docs/standards/tokens/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ Many Ethereum development standards focus on token interfaces. These standards h
Here are some of the most popular token standards on Ethereum:

- [ERC-20](/developers/docs/standards/tokens/erc-20/) - A standard interface for fungible (interchangeable) tokens, like voting tokens, staking tokens or virtual currencies.
- [ERC-223](/developers/docs/standards/tokens/erc-223/) - A fungible token standard with "transaction handling" model that makes token behave identical to ether.
- [ERC-721](/developers/docs/standards/tokens/erc-721/) - A standard interface for non-fungible tokens, like a deed for artwork or a song.
- [ERC-777](/developers/docs/standards/tokens/erc-777/) - ERC-777 allows people to build extra functionality on top of tokens such as a mixer contract for improved transaction privacy or an emergency recover function to bail you out if you lose your private keys.
- [ERC-1155](/developers/docs/standards/tokens/erc-1155/) - ERC-1155 allows for more efficient trades and bundling of transactions – thus saving costs. This token standard allows for creating both utility tokens (such as $BNB or $BAT) and Non-Fungible Tokens like CryptoPunks.
Expand Down
2 changes: 2 additions & 0 deletions src/data/developer-docs-links.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -195,6 +195,8 @@
items:
- id: docs-nav-erc-20
to: /developers/docs/standards/tokens/erc-20/
- id: docs-nav-erc-223
to: /developers/docs/standards/tokens/erc-223/
- id: docs-nav-erc-721
to: /developers/docs/standards/tokens/erc-721/
- id: docs-nav-erc-777
Expand Down
1 change: 1 addition & 0 deletions src/intl/en/page-developers-docs.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
"docs-nav-development-networks-description": "Local blockchain environments used to test dapps before deployment",
"docs-nav-dot-net": ".NET",
"docs-nav-erc-20": "ERC-20: Fungible Tokens",
"docs-nav-erc-223": "ERC-223",
"docs-nav-erc-721": "ERC-721: NFTs",
"docs-nav-erc-777": "ERC-777",
"docs-nav-erc-1155": "ERC-1155",
Expand Down