Deploy upgradable contracts using Remix

constructorcontract-deploymentcontract-upgradingremixupgrading

How can I deploy a contract that has the initialize method from Remix? I have just seen here that Remix now supports this feature but I haven't found any example I could follow.

Best Answer

I do not know how to do it.

You might be better off using Truffle and this tutorial: https://forum.openzeppelin.com/t/openzeppelin-upgrades-step-by-step-tutorial-for-truffle/3579

And then connecting to localhost: https://remix-ide.readthedocs.io/en/latest/remixd.html


Found this question because I've deployed upgradeable contract using Truffle and figuring out how to interact with it using Remix - I've just tested and it works, out of the box.

Related Topic