Julian M. Rodriguez

Results 14 comments of Julian M. Rodriguez

Same issue in MacOS had to run the command above. Definitely should be part of main README!

HI, im having trouble parsing custom errors in my tests. Im using solc `0.8.4` and I get the following error when trying to parse the revert reason. Is there a...

Worth to mention I found this workaround to check for custom errors in tests. Replace `YourCustomError()` with the actual error you expect to throw. ``` errMsg = web3.keccak(text='YourCustomError()')[:4].hex() with brownie.reverts('typed...

Maybe bring to a concrete example the **Debugging-first approach** that Hardhat promotes. Like if you look at the site **"Hardhat is the best choice for Solidity debugging. You get Solidity...

I think Im facing this issue! What is strange in my case is that i works locally but not in CI. When the test runs in Github actions I get:...

> @julianmrodri Hey there, I stumbled upon similar issue. Do you happen to find any solution yet? No.. had to move to another installation method using Docker.

Hi all, Im also interested in the 0.6 version of the Ugrades contract. In my case we are working on a quite extense Smart contract which has been developed on...

@spalladino is the support for Initializable in 0.6 enough to make a smart contract in 0.6.2 Upgradable and Pausable? Which use case does it cover? Thanks!

@abcoathup actually I coundt find the Pausable contract in the 3.0 version (Candidate release). Looks like it has been removed is it possible?

@frangio im trying to skip the validation for external libraries but im not sure where to place the `/// @custom:oz-upgrades-unsafe-allow external-library-linking` in the code. I added it before the `import`,...