UUPS Proxy Type Issue
ZrowGz opened this issue · 1 comments
ZrowGz commented
The script currently uses TransparentUpgradeableProxy
type when deploying a UUPS Proxy.
https://github.com/odyslam/foundry-upgrades/blob/6bf12c9919ce7e43e7a4d235335c59281275c913/src/utils/DeployProxy.sol#L125
Is there a reason you don't utilize the UUPSUpgradeable type?
openzeppelin-contracts-upgradeable/contracts/proxy/utils/UUPSUpgradeable.sol
This would be similar to how I'm seeing it done in https://github.com/jordaniza/OZ-Upgradeable-Foundry/blob/fd21a7715f7c6969fe62423d92052870181e4435/src/UpgradeUUPS.sol#L11
gabkov commented
Have you found out why are they using TransparentUpgradeableProxy
?