From 5c95af494e667ba35102c1b3093c5d966f5c2264 Mon Sep 17 00:00:00 2001 From: Ko Fujimura Date: Sun, 11 Aug 2024 08:35:27 +0900 Subject: [PATCH] Update ERC-7303: Update erc-7303.md Merged by EIP-Bot. --- ERCS/erc-7303.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ERCS/erc-7303.md b/ERCS/erc-7303.md index ab2a23c5cb..109800737d 100644 --- a/ERCS/erc-7303.md +++ b/ERCS/erc-7303.md @@ -154,7 +154,7 @@ contract MyToken is ERC721, ERC7303 { _grantRoleByERC1155(BURNER_ROLE, 0x..., ...); } - function safeMint(address to, uint256 tokenId, string memory uri) + function safeMint(address to, uint256 tokenId) public onlyHasToken(MINTER_ROLE, msg.sender) { _safeMint(to, tokenId);