Arsenii Kulikov
Arsenii Kulikov
> main rationale is that the src/ dir of forge-std takes ~3-4s to compile on my machine I've done some testing and just want to share the results: - Removing...
I was not able to reproduce this on latest nightly for both `script` and `create` :/ @cxkoda @sakulstra @rocketman-21 @sendra @mpeyfuss could you please upgrade to latest nightly and try...
@mpeyfuss today's nightly includes fix for eip-1559 estimation, could you please check if the issue is resolved?
You can fetch specific artifact via `VM::getDeployedCode("DeployConfig.s.sol:DeployConfig.0.8.15")` What would you like as a default behavior in this case? It seems that you compile sources with different solc versions and some...
`xxx.version.json` is used only when the same `xxx` contract is getting compiled with different solc versions
By default, solc versions are determined automatically if [auto_detect_solc](https://book.getfoundry.sh/reference/config/solidity-compiler#auto_detect_solc) is set to true, otherwise, you may specify [solc_version](https://book.getfoundry.sh/reference/config/solidity-compiler#solc_version) to lock specific version
> We never see the eth_call to fetch the balance of the address on the precompile. Our theory is that Foundry is doing some checks against the bytecode returned by...
Yeah, `eth_getStorageAt` queries don't work as precompiles do not store any data in the actual smart contract storage. There is currently no way to run tests without `eth_getStorage` as we...
`expectRevert` expects the next frame to revert. delegatecalls to a library is a frame as well In your case `getNumeratorC512` is a public function thus it is getting dispatched as...
@oscarsernarosero mind sharing logs?