Hi,
I want to create an ERC20 contract.
It's able to mint more token after initial issue.
At the same time, after its depolyment I want to tranfer the ownership of the contract to another account.
Only the owner of contract can mint token.
I have created mintable contract using:
contract ERC20MintableRatio is ERC20, MinterRole { }
so how can I add ownership function based on that? can you show some demo code for reference?
meanwhile, after the ownership transfer, will the mint capability also transfer to new account? it's a little confused.
Thanks for your help.