Add deed name, rename return variables

This commit is contained in:
William Entriken 2018-02-01 21:42:43 -05:00
parent c0e6345a4d
commit ea4ed40d45
1 changed files with 7 additions and 3 deletions

View File

@ -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);
}
```