Blazej Kolad
Blazej Kolad
we had bug in our hashing function, fixed in: https://github.com/ConsenSys/handel/issues/124 The implementation still suffers from problems described by @nikkolasg.
https://github.com/Sovereign-Labs/sovereign-sdk/pull/1785#discussion_r2399050921
Some useful resources: 1. The `Handler` trait: Useful for overriding evm behaviour. https://github.com/bluealloy/revm/blob/7482d2100fcde82283cfe69229d2dfa29e50fcee/crates/handler/src/handler.rs#L67 2. The `Cgf` trait: We can disable some functionality here (for example nonce checks) https://github.com/bluealloy/revm/blob/7482d2100fcde82283cfe69229d2dfa29e50fcee/crates/context/interface/src/cfg.rs#L60 3. The...