mirror of
https://github.com/paradigmxyz/reth.git
synced 2026-02-18 18:54:35 -05:00
24 lines
455 B
JavaScript
24 lines
455 B
JavaScript
{
|
|
// called once
|
|
setup: function(cfg) {
|
|
//<setup>
|
|
},
|
|
// required function that is invoked when a step fails
|
|
fault: function(log, db) {
|
|
//<fault>
|
|
},
|
|
// required function that returns the result of the tracer: empty object
|
|
result: function(ctx, db) {
|
|
//<result>
|
|
},
|
|
// optional function that is invoked for every opcode
|
|
step: function(log, db) {
|
|
//<step>
|
|
},
|
|
enter: function(frame) {
|
|
//<enter>
|
|
},
|
|
exit: function(res) {
|
|
//<exit>
|
|
}
|
|
} |