Skip to content

Commit

Permalink
included missing 'I' for inheriting interfaces on code snippets
Browse files Browse the repository at this point in the history
  • Loading branch information
ernanirst committed Jan 9, 2024
1 parent d67c2f7 commit 7b71add
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ERCS/erc-7589.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ Compliant contracts MUST implement the following interface:
/// @title ERC-7589 Semi-Fungible Token Roles
/// @dev See https://eips.ethereum.org/EIPS/eip-7589
/// Note: the ERC-165 identifier for this interface is 0xc4c8a71d.
interface IERC7589 /* is ERC165 */ {
interface IERC7589 /* is IERC165 */ {
/** Events **/
Expand Down Expand Up @@ -217,7 +217,7 @@ some use cases.
/// @title ERC-7589 Semi-Fungible Token Roles, optional single transaction extension
/// @dev See https://eips.ethereum.org/EIPS/eip-7589
/// Note: the ERC-165 identifier for this interface is 0x5c3d7d74.
interface ICommitTokensAndGrantRoleExtension /* is ERC7589 */ {
interface ICommitTokensAndGrantRoleExtension /* is IERC7589 */ {
/// @notice Commits tokens and grant role in a single transaction.
/// @param _grantor The owner of the SFTs.
/// @param _tokenAddress The token address.
Expand Down Expand Up @@ -256,7 +256,7 @@ implementation much more complex (increasing smart contract risk).
/// @title ERC-7589 Semi-Fungible Token Roles, optional role balance extension
/// @dev See https://eips.ethereum.org/EIPS/eip-7589
/// Note: the ERC-165 identifier for this interface is 0x2f35b73f.
interface IRoleBalanceOfExtension /* is ERC7589 */ {
interface IRoleBalanceOfExtension /* is IERC7589 */ {
/// @notice Returns the sum of all tokenAmounts granted to the grantee for the given role.
/// @param _role The role identifier.
/// @param _tokenAddress The token address.
Expand Down

0 comments on commit 7b71add

Please sign in to comment.