Hello, I recently deployed a smart contract but forgot to change the name.
constructor(string memory baseURI) ERC721("TEST_CC", "TCC") {
_baseTokenURI = baseURI;
}
Is there any other way for me to change the ("TEST_CC", "TCC")?
Hello, I recently deployed a smart contract but forgot to change the name.
constructor(string memory baseURI) ERC721("TEST_CC", "TCC") {
_baseTokenURI = baseURI;
}
Is there any other way for me to change the ("TEST_CC", "TCC")?
You can only change name and symbol if you had coded a setter function for them