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
string public baseUri; // if this is public people would be able to see the entire collection so I suggest turning this into private
// create a function that shows the base URI once the revealed has been set to true
function showBaseUri() public view returns(string memory){
if(revealed == false){
return "";
}
return baseURI;
}