Change name of deployed erc20 token

I have been working on erc20 contract with the support of openzeppelin erc20 contracts . One thing I am trying to do is to have the ability to change basic details of contract like contract name or contract symbol after it is deployed for admins . I have successfully implemented access controls but I am unable to change details . Here is basic function which I wrote

  function changename(string memory name) public onlyadmin{
    	    	name = name;

    }

but it doesn’t change contract name.
Anyone can help me what mistake I am doing ?

1 Like

Hi @Mohammad_Obaid,

Welcome to the community :wave:

I would be cautious about changing things such as token name as users may not expect this to change. (Though changing the name isn’t prohibited in the EIP).
I would recommend being clear with users under what circumstances these changes would occur.
Also suggest checking what support there is for name changing, e.g. Etherscan didn’t display my name change.


With regards changing the name:
_name is a private state variable in ERC20Detailed https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v2.3.0/contracts/token/ERC20/ERC20Detailed.sol#L9
The name function returns the value of _name in ERC20Detailed https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v2.3.0/contracts/token/ERC20/ERC20Detailed.sol#L27

A possible implementation would involve overriding the name function.

I deployed the following sample token contract using Remix to Kovan.
Though Etherscan didn’t pick up the change in name.
https://kovan.etherscan.io/token/0xc4de55d1d5c20fdf40c9a0d41cfc8a9245040d9b

pragma solidity ^0.5.0;

import "https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v2.3.0/contracts/token/ERC20/ERC20.sol";
import "https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v2.3.0/contracts/token/ERC20/ERC20Detailed.sol";
import "https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v2.3.0/contracts/ownership/Ownable.sol";

contract Token is ERC20, ERC20Detailed, Ownable {

    string private _name;
    
    event NameChanged(string newName, address by);

    constructor () public ERC20Detailed("Token", "TKN", 18) {
        _mint(msg.sender, 1000000 * (10 ** uint256(decimals())));
    }
    
    function changeName(string memory name) public onlyOwner{
        _name = name;
        emit NameChanged(name, msg.sender);
    }
    
    function name() public view returns (string memory) {
        return _name;
    }
}

Hi @Mohammad_Obaid,

I wanted to check if you needed more information, or the above reply resolved your question?

A post was split to a new topic: Changing name of ERC20 token in OpenZeppelin Contracts 3.x