From 868a208451d037fa6b3baf6d55fec525827dab44 Mon Sep 17 00:00:00 2001 From: William Entriken Date: Fri, 23 Feb 2018 11:03:36 -0500 Subject: [PATCH] Remove my name as interface author, that isn't helping anything --- EIPS/eip-721.md | 3 --- 1 file changed, 3 deletions(-) diff --git a/EIPS/eip-721.md b/EIPS/eip-721.md index fdcc0ba3..c59e6df0 100644 --- a/EIPS/eip-721.md +++ b/EIPS/eip-721.md @@ -47,7 +47,6 @@ pragma solidity ^0.4.20; import "./ERC165.sol"; /// @title Required part of ERC-721 Deed Standard -/// @author William Entriken (https://phor.net) /// @dev See https://github.com/ethereum/EIPs/blob/master/EIPS/eip-721.md /// Note: the ERC-165 (DRAFT) identifier for this interface is 0xb3a99827 interface ERC721 /* is ERC165 */ { @@ -136,7 +135,6 @@ The **metadata extension** is OPTIONAL for ERC-721 implementations (see "caveats ```solidity /// @title Optional metadata extension to ERC-721 Deed Standard -/// @author William Entriken (https://phor.net) /// @dev See https://github.com/ethereum/EIPs/blob/master/EIPS/eip-721.md /// Note: the ERC-165 (DRAFT) identifier for this interface is 0x2a786f11 interface ERC721Metadata /* is ERC721 */ { @@ -181,7 +179,6 @@ The **enumeration extension** is OPTIONAL for ERC-721 implementations (see "cave ```solidity /// @title Optional enumeration extension to ERC-721 Deed Standard -/// @author William Entriken (https://phor.net) /// @dev See https://github.com/ethereum/EIPs/blob/master/EIPS/eip-721.md /// Note: the ERC-165 (DRAFT) identifier for this interface is 0x5576ab6a interface ERC721Enumerable /* is ERC721 */ {