evmdasm 0.1.1

EVM bytecode disassembler
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
mod peek;
mod opcode;
mod operand;
mod instruction;

pub(self) use peek::Peek;
pub(self) use opcode::peek_opcode;
pub(self) use operand::operand;
pub(in crate::dasm) use instruction::disasm_one;

pub use opcode::OPCode;
pub use instruction::{Instruction, Instructions};