Hello everyone. I have created a token with the following function:
function mint(uint256 amount) public onlyOwner returns (bool) {
_mint(_msgSender(), amount);
I am wondering how I can mint more tokens without creating a new smart contract.
By the way, how can I add address to be in the Minter role?