From 481e999d4af90122d31d5b5c133a37abb1a013f8 Mon Sep 17 00:00:00 2001 From: William Entriken Date: Tue, 13 Feb 2018 22:54:27 -0500 Subject: [PATCH] remove deedName --- EIPS/eip-721.md | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/EIPS/eip-721.md b/EIPS/eip-721.md index d6039b41..7279c769 100644 --- a/EIPS/eip-721.md +++ b/EIPS/eip-721.md @@ -110,7 +110,7 @@ interface ERC721 { /// Approve to emit. However, an exception, the Approve event will not emit when /// Transfer emits, this is because Transfer implicitly denotes the "approved taker" /// is reset to the zero address. - event Approval(address indexed owner, address indexed approved, uint256 indexed deedId); + event Approval(address indexed from, address indexed to, uint256 indexed deedId); /// @notice Set the "approved taker" for your deed, or revoke approval by /// setting the zero address. You may `approve` any number of times while @@ -155,11 +155,7 @@ interface ERC721Metadata { /// @dev Wallets and exchanges MAY display this to the end user. function symbol() public pure returns (string _symbol); - /// @notice A distinct name for a deed managed by this contract - /// @dev Wallets and exchanges MAY display this to the end user. - function deedName(uint256 _deedId) public pure returns (string _deedName); - - /// @notice A distinct URI (RFC 3986) for a given token. + /// @notice A distinct URI (RFC 3986) for a given deed. /// @dev If: /// * The URI is a URL /// * The URL is accessible @@ -175,6 +171,7 @@ interface ERC721Metadata { /// Wallets and exchanges MAY display this to the end user. /// Consider making any images at a width between 320 and 1080 pixels and /// aspect ratio between 1.91:1 and 4:5 inclusive. + /// Throws if `_deedId` is not a valid deed. function deedUri(uint256 _deedId) external view returns (string _deedUri); } ```