-
Any ideas? I see foundry uses revm as its evaluator for e.g. running tests. Would this require, perhaps, forking evm to support a custom precompile and then re-compiling foundry/forge with this revm fork? Thanks for any help. |
Beta Was this translation helpful? Give feedback.
Answered by
samtay
Mar 24, 2023
Replies: 1 comment
-
In case anyone else needs to do this, the original idea above has worked well for me. I have a |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
samtay
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
In case anyone else needs to do this, the original idea above has worked well for me. I have a
revm
fork that adds the necessary precompiles, and then a standard cargopatch
infoundry/Cargo.toml
so that when I compile foundry, it looks for my revm fork instead of the revm on crates.io.