From ea4ed40d451fa54f4d05739dba86cf0714454ea4 Mon Sep 17 00:00:00 2001 From: William Entriken Date: Thu, 1 Feb 2018 21:42:43 -0500 Subject: [PATCH] Add deed name, rename return variables --- EIPS/eip-721.md | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/EIPS/eip-721.md b/EIPS/eip-721.md index 9818b989..92f94008 100644 --- a/EIPS/eip-721.md +++ b/EIPS/eip-721.md @@ -149,11 +149,15 @@ interface ERC721Metadata { /// @notice A descriptive name for a collection of deeds managed by this /// contract /// @dev Wallets and exchanges MAY display this to the end user. - function name() public pure returns (string _deedName); + function name() public pure returns (string _name); /// @notice An abbreviated name for deeds managed by this contract /// @dev Wallets and exchanges MAY display this to the end user. - function symbol() public pure returns (string _deedSymbol); + 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. /// @dev If: @@ -171,7 +175,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. - function deedUri(uint256 _deedId) external view returns (string _uri); + function deedUri(uint256 _deedId) external view returns (string _deedUri); } ```