Paul Berg

Results 723 comments of Paul Berg

Well, implementing this would help with lowering the overall gas prices of bootstrapping the protocol. At current ETH prices, that'd be helpful.

See https://github.com/EthWorks/Waffle/issues/437.

We could use [config-lerna-scopes](https://github.com/conventional-changelog/commitlint/tree/3fced838935de6c90a278674fe4ae975940262d2/%40commitlint/config-lerna-scopes) for this. It's compatible with yarn workspaces.

Oh, I didn't know about the config file. Thanks for the tip @danielpza!

Yes, this would be helpful. [This](https://github.com/hifi-finance/prb-math/blob/v2.2.0/contracts/PRBMathUD60x18Typed.sol#L39-L41) is the specific place where I am reverting with a custom error that mimics `Panic`: ```sol if (rValue < x.value) { revert PRBMathUD60x18__AddOverflow(x.value, y.value);...

+1 for this feature. I'm porting my math library to Foundry and there are lots and lots of situations where table tests would be useful. Possibly dumb question, but couldn't...

In the meantime, if you're using @emilianobonassi's solution (which is great!) and compiling with Solidity v0.8, consider wrapping the increment in an `unchecked` block: ```solidity modifier parametrizedTest() { for (uint256...

@ChainsightLabs it doesn't, but it's fast enough for my needs.

This is not strictly related to the use case mentioned by @wighawag, but: > Make the HardhatArguments, including the network name, and the taskName available in the config. This will...

It looks like Hardhat is now returning a [RETURNDATA_SIZE_ERROR](https://github.com/NomicFoundation/hardhat/blob/4e35c9295badc835c574bb49a8a268569ea7123a/packages/hardhat-core/src/internal/hardhat-network/stack-traces/solidity-errors.ts#L248) error instead of [NONCONTRACT_ACCOUNT_CALLED_ERROR](https://github.com/NomicFoundation/hardhat/blob/4e35c9295badc835c574bb49a8a268569ea7123a/packages/hardhat-core/src/internal/hardhat-network/stack-traces/solidity-errors.ts#L251-L252). The latter is what I'd expected Hardhat to return because the test is set up to perform...