diff --git a/src/interfaces/IERC173.sol b/src/interfaces/IERC173.sol index 2a107488..a729e222 100644 --- a/src/interfaces/IERC173.sol +++ b/src/interfaces/IERC173.sol @@ -4,6 +4,7 @@ pragma solidity >=0.8.30; /// @title ERC-173 Contract Ownership Standard Interface /// @notice Interface for contract ownership with custom errors /// @dev This interface includes all custom errors used by ERC-173 implementations +/// @author ogazboiz interface IERC173 { /// @notice Thrown when attempting to transfer ownership while not being the owner. error OwnableUnauthorizedAccount(); diff --git a/src/interfaces/IERC20.sol b/src/interfaces/IERC20.sol index 56fb7612..28f0032e 100644 --- a/src/interfaces/IERC20.sol +++ b/src/interfaces/IERC20.sol @@ -4,6 +4,7 @@ pragma solidity >=0.8.30; /// @title ERC-20 Token Standard Interface /// @notice Interface for ERC-20 token contracts with custom errors /// @dev This interface includes all custom errors used by ERC-20 implementations +/// @author ogazboiz interface IERC20 { /// @notice Thrown when an account has insufficient balance for a transfer or burn. /// @param _sender Address attempting the transfer. diff --git a/src/interfaces/IERC721.sol b/src/interfaces/IERC721.sol index 4d4d70cd..6f164f35 100644 --- a/src/interfaces/IERC721.sol +++ b/src/interfaces/IERC721.sol @@ -4,6 +4,7 @@ pragma solidity >=0.8.30; /// @title ERC-721 Token Standard Interface /// @notice Interface for ERC-721 token contracts with custom errors /// @dev This interface includes all custom errors used by ERC-721 implementations +/// @author ogazboiz interface IERC721 { /// @notice Error indicating the queried owner address is invalid (zero address). error ERC721InvalidOwner(address _owner); diff --git a/src/interfaces/IERC721Enumerable.sol b/src/interfaces/IERC721Enumerable.sol index f7bb1827..0e28a43f 100644 --- a/src/interfaces/IERC721Enumerable.sol +++ b/src/interfaces/IERC721Enumerable.sol @@ -4,6 +4,7 @@ pragma solidity >=0.8.30; /// @title ERC-721 Enumerable Token Standard Interface /// @notice Interface for ERC-721 token contracts with enumeration support and custom errors /// @dev This interface includes all custom errors used by ERC-721 Enumerable implementations +/// @author ogazboiz interface IERC721Enumerable { /// @notice Thrown when querying or transferring from an invalid owner address. error ERC721InvalidOwner(address _owner); @@ -106,6 +107,6 @@ interface IERC721Enumerable { /// @param _from The current owner of the token. /// @param _to The recipient address. /// @param _tokenId The token ID to transfer. - /// @param _data Additional data to send to the receiver contract. + /// @param _data Additional data to send to the receiver. function safeTransferFrom(address _from, address _to, uint256 _tokenId, bytes calldata _data) external; }