Skip to content

Commit

Permalink
ERC777: Prevent minting and burning for 0x0
Browse files Browse the repository at this point in the history
  • Loading branch information
0xjac committed Apr 29, 2019
1 parent aa84e71 commit b2f1607
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions EIPS/eip-777.md
Original file line number Diff line number Diff line change
Expand Up @@ -581,7 +581,7 @@ as the minting process is generally specific for every token.

Nonetheless, the rules below MUST be respected when minting for a *recipient*:

- Tokens MAY be minted for any *recipient* address.
- Tokens MAY be minted for any *recipient* address (except `0x0`).

- The total supply MUST be increased by the amount of tokens minted.

Expand Down Expand Up @@ -664,7 +664,7 @@ The token contract MAY also define other functions to burn tokens.

The rules below MUST be respected when burning the tokens of a *holder*:

- Tokens MAY be burned from any *holder* address.
- Tokens MAY be burned from any *holder* address (except `0x0`).

- The total supply MUST be decreased by the amount of tokens burned.

Expand Down

0 comments on commit b2f1607

Please sign in to comment.