Proxy Contract

A proxy contract is a type of smart contract that acts as an intermediary smart contract that delegates calls to another smart contract known as the “implementation contract”.

In cases where a proxy contract is used, interaction with the underlying implementation contract must be done through the proxy contract.

  1. The user initiates a function call to the Proxy Smart Contract.

  2. The Proxy Smart Contract redirects the function call to the Implementation Contract.

  3. The Implementation Contract executes the intended smart contract code for the function the user originally requested.

  4. The return is then fed back from the Implementation Contract through the Proxy Contract and back to the User.

A proxy contract is considered "not upgradeable" when the ownership of the proxy contract has been renounced to the null address.

Last updated