You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As noted in the deprecation warning, when parsing compiler output, ethabi fills in a `false`. This causes trouble in `ethers` and `foundry` by making it so compiler outputted ABIs aren't parseable by `ethers.js` due to bad `constant` settings (i.e. `false` for a `pure`).
This PR fixes that by keeping it concrete for derive, but making it optional in the main implementation. This allows us to parse json from the solc compiler correctly and pipe that out to a valid ABI json. This could be an incorrect implementation, but it seems to work
0 commit comments