Hello,
I am working on a UUPS upgradeable contract that I need to transfer the ownership of to an admin.
I am implementing AccessControl on this smart contract.
I read that for upgradeable contracts, the owner is not msg.sender, but it is the ProxyAdmin.
Is this also true for UUPS upgradeable contracts?
If yes, how do I find this proxyAdmin address?
And how do I use this proxyAdmin address to grant the admin role to another user?
UUPS upgradeable contracts do not make use of a ProxyAdmin. A UUPS proxy controls who can upgrade it by the _authorizeUpgrade function that you need to override. You can use Wizard and select both UUPS and Roles (which uses AccessControl) for an example.
Roles are not addresses. They are identifiers (of type bytes32). So you cannot do myContract.connect(ADMIN_ROLE) and you cannot "transfer" a role, but you can grant or revoke a role for an actual address. See https://docs.openzeppelin.com/contracts/4.x/api/access#AccessControl
That looks right. In this case the account that you are using (the wallet that ethers.js is connected to) has role DEFAULT_ADMIN_ROLE which is the admin role for all roles, so it has permission to grant ADMIN_ROLE to other.address.
Reference from the above doc:
By default, the admin role for all roles is DEFAULT_ADMIN_ROLE , which means that only accounts with this role will be able to grant or revoke other roles. More complex role relationships can be created by using _setRoleAdmin.
Thank you @ericglau for all the insight and feedback!
One further confirmation:
When a role is set in function _authorizeUpgrade in a smart contract, the address with that role automatically has the permissions to authorize an upgrade without any further grantRole post-deployment interactions in ethers.js. Correct?
To use more specific phrasing, if _authorizeUpgrade has a modifier onlyRole(CUSTOM_ROLE), then whichever addresses have the role CUSTOM_ROLE (whether that role was granted to the address in the initializer or granted post-deployment of the proxy) will be able to upgrade the proxy.