pub trait InstructionProvider {
type Context;
type InterpreterTypes: InterpreterTypes;
type Output;
// Required method
fn instruction_table(
&self,
) -> &InstructionTable<Self::InterpreterTypes, Self::Context>;
}
Expand description
Stores instructions for EVM.