Mehdi

Results 4 comments of Mehdi

> It looks like Mirage isn't set up quite right or possibly not properly intercepting network requests. Mirage _should_ intercept network requests so you never get to this point. From...

Same situation Want to migrate from Hardhat to Foundry with deployed contracts using UUPS with OZ [email protected] Is it possible to migrate to Foundry and how to use proxies there...

What is different from doing this ? ```solidity vm.startBroadcast(deployPrivateKey); address implementation = address(new MyContract()); console2.log(implementation); address proxy = address(new ERC1967Proxy(implementation, "")); MyContract myContract = MyContract(proxy); vm.stopBroadcast(); ``` I believe both...

Can `OpenZeppelin/openzeppelin-foundry-upgrades ` be installed with a specific version ? My contracts are using [email protected] which is incoherent with Upgrades.sol imports using ERC1976Utils, that are not in the Proxy package...