You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The ERC1155 uri format cannot be customized or invoked within contracts that inherit from ERC1155
function uri(uint256) external view virtual override returns (string memory) { return _uri; }
uri methods cannot be called internally ,
It is recommended to use public modifiers, The following code: function uri(uint256) public view virtual override returns (string memory) { return _uri; }
The text was updated successfully, but these errors were encountered:
The ERC1155 uri format cannot be customized or invoked within contracts that inherit from ERC1155
function uri(uint256) external view virtual override returns (string memory) { return _uri; }
uri methods cannot be called internally ,
It is recommended to use public modifiers, The following code:
function uri(uint256) public view virtual override returns (string memory) { return _uri; }
The text was updated successfully, but these errors were encountered: