Changing Name of Deployed ERC721 Smart Contract

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 @Naqib_Solihin

If your contract is not upgradeable, then no.

1 Like

You can only change name and symbol if you had coded a setter function for them

1 Like