> For the complete documentation index, see [llms.txt](https://web3-encyclopedia.gitbook.io/web3-encyclopedia/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://web3-encyclopedia.gitbook.io/web3-encyclopedia/ethereum/ethereum-token-standards-erc-20-erc-721-and-erc-1155.md).

# Ethereum Token Standards (ERC-20, ERC-721 and ERC-1155)

Here are some of the most popular token standards on Ethereum:

* [ERC-20](https://ethereum.org/en/developers/docs/standards/tokens/erc-20/) – A standard interface for fungible (interchangeable) tokens, like voting tokens, staking tokens or virtual currencies.
* [ERC-721](https://ethereum.org/en/developers/docs/standards/tokens/erc-721/) – A standard interface for non-fungible tokens, like a deed for artwork or a song.
* [ERC-777](https://ethereum.org/en/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](https://ethereum.org/en/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.
* [ERC-4626](https://ethereum.org/en/developers/docs/standards/tokens/erc-4626/) – A tokenized vault standard designed to optimize and unify the technical parameters of yield-bearing vaults.

<details>

<summary>Source</summary>

<https://ethereum.org/en/developers/docs/standards/tokens/>

</details>


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://web3-encyclopedia.gitbook.io/web3-encyclopedia/ethereum/ethereum-token-standards-erc-20-erc-721-and-erc-1155.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
