You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Some EVM-based chains other than ethereum itself feature additional opcodes and precompiles that should be supported by this tool. This task deals with adding support for that.
Spec
Add a supportedChains(&self) -> Vec<u8> operation to the Opcode trait with a default implementation returning only the identifiers for Ethereum's chains.
Request chain id alongside bytecode.
When disassembling, validate that the opcodes seen are the ones supported by the requested chain.
At this point new opcodes can be added easily.
The text was updated successfully, but these errors were encountered:
Description
Some EVM-based chains other than ethereum itself feature additional opcodes and precompiles that should be supported by this tool. This task deals with adding support for that.
Spec
supportedChains(&self) -> Vec<u8>
operation to theOpcode
trait with a default implementation returning only the identifiers for Ethereum's chains.At this point new opcodes can be added easily.
The text was updated successfully, but these errors were encountered: