zink
zink copied to clipboard
Introduce evm operators
Describe the feature
follow the implementation of wasm operators
https://docs.rs/wasmparser/0.107.0/wasmparser/enum.Operator.html
for example, the operator of opcode ADD
pub struct Add {
a: Vec<u8>,
b: Vec<u8>
}
Solution
No response