DEV Community

Cover image for Ethereum-Solidity Quiz Q15: What is the main difference between Transparent and UUPS upgradeable proxy patterns?
MihaiHng
MihaiHng

Posted on

Ethereum-Solidity Quiz Q15: What is the main difference between Transparent and UUPS upgradeable proxy patterns?

The main difference between Transparent and UUPS proxy patterns is where the upgrade logic lives:

  1. Transparent Proxy: in the proxy contract itself

  2. UUPS Proxy: in the implementation contract

Top comments (0)