-
Notifications
You must be signed in to change notification settings - Fork 441
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support for state overrides on eth_call and trace_call #4021
Comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
It would be great to get the ability to do state overrides with nethermind.
State overrides are supported in geth for
eth_call
andtrace_call
.Here's an example snippet (from geth):
debug.traceCall({from: addr, to: zero, value: '0x1'}, 'latest', {'stateOverrides': {[addr]: {'balance': '0x0'}}})
This blog post explains the use case for state overrides quite well: https://www.libevm.com/2022/01/12/advance-geth-pt-2-stateoverrides/
The text was updated successfully, but these errors were encountered: