support state override for debug_traceTransaction ("offchain events") #7410
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
the
debug_traceCall
function supports state overrides, butdebug_traceTransaction
does not - it only accepts a transaction hash.I wrote this originally as the backbone for generating "offchain events" (as developed by shadow / ghost logs)
to prevent confusion with nodes that don't implement this feature I created a distinct function
debug_traceTransactionOverrides
.by overriding contracts bytecode it is possible to reexecute onchain transactions in different context, specifically to emit so called "offchain events" but not limited to this.
usage:
eg for mainnet:
note:
the format may differ a bit from other nodes (eg. in geth the keys ("stateOverride", "code") are case insensitive, in reth they are case sensitive)
this is unrelated to this patch.
see equivalent implementations:
geth: ethereum/go-ethereum#29423
erigon: erigontech/erigon#9847