Skip to content

Commit

Permalink
Update EIP-6093: Rename ERC721InexistentToken to `ERC721Nonexistent…
Browse files Browse the repository at this point in the history
…Token`

Merged by EIP-Bot.
  • Loading branch information
ernestognw authored Jun 2, 2023
1 parent 3b42b46 commit 76a22a8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions EIPS/eip-6093.md
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ Used in balance queries.
- MUST not be used for transfers.
- Use `ERC721IncorrectOwner` instead.

### `ERC721InexistentToken(uint256 tokenId)`
### `ERC721NonexistentToken(uint256 tokenId)`

Indicates a `tokenId` whose `owner` is the zero address.

Expand Down Expand Up @@ -353,7 +353,7 @@ interface ERC20Errors {
/// https://eips.ethereum.org/EIPS/eip-6093
interface ERC721Errors {
error ERC721InvalidOwner(address owner);
error ERC721InexistentToken(uint256 tokenId);
error ERC721NonexistentToken(uint256 tokenId);
error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner);
error ERC721InvalidSender(address sender);
error ERC721InvalidReceiver(address receiver);
Expand Down

0 comments on commit 76a22a8

Please sign in to comment.