remove deedName

This commit is contained in:
William Entriken 2018-02-13 22:54:27 -05:00
parent 6149eccfca
commit 481e999d4a

View File

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