How to get implementation and admin address for beacon proxy contract

Hi,
I am using Truffle for beacon proxy contract using openzepplin/truffle-upgrade package.While using deployBeacon, deployBeaconProxy it deploys contract successfully.

Is there programmtic method to find implementation as well as admin address from beacon proxy contract

You can use:

There is no concept of admin address for beacon. The UpgradeableBeacon contract uses Ownable to define the owner of the beacon.

1 Like