Skip to content

Commit

Permalink
Fix a typo in erc20-supply.adoc (OpenZeppelin#3005)
Browse files Browse the repository at this point in the history
Fix a typo
  • Loading branch information
fishmandev authored Dec 7, 2021
1 parent a05312f commit 8ef7655
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/modules/ROOT/pages/erc20-supply.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ In this guide you will learn how to create an ERC20 token with a custom supply m

The standard interface implemented by tokens built on Ethereum is called ERC20, and Contracts includes a widely used implementation of it: the aptly named xref:api:token/ERC20.adoc[`ERC20`] contract. This contract, like the standard itself, is quite simple and bare-bones. In fact, if you try to deploy an instance of `ERC20` as-is it will be quite literally useless... it will have no supply! What use is a token with no supply?

The way that supply is created is not defined in the ERC20 document. Every token is free to experiment with their own mechanisms, ranging from the most decentralized to the most centralized, from the most naive to the most researched, and more.
The way that supply is created is not defined in the ERC20 document. Every token is free to experiment with its own mechanisms, ranging from the most decentralized to the most centralized, from the most naive to the most researched, and more.

[[fixed-supply]]
== Fixed Supply
Expand Down

0 comments on commit 8ef7655

Please sign in to comment.