I’m looking to deploy an upgradeable contract but my environment uses @nomiclabs/hardhat-truffle5
. The problem with this approach, is that the deployment under hardhat is by using a custom made script where I don’t have access to the deployer instance present in Truffle’s migration phase.
Can somebody throw me a hint about how to manually deploy an upgradeable contract by using basic Truffle’s require and a well configured web3 instance? maybe using @openzeppelin/upgrades-core
, but I couldn’t find any example.
Thanks!