fuel-etk-dasm

Disassemble EVM bytecode into readable Fuel assembly instructions.

cargomacoslinuxwindows
Try with needOr install directly
Source

About

EVM Toolkit disassembler

Commands

fuel-etk-dasm

Examples

convert EVM bytecode to assembly code$ fuel-etk-dasm 0x6080604052
read bytecode from a file and disassemble it$ fuel-etk-dasm $(cat bytecode.hex)
analyze smart contract binary for debugging$ fuel-etk-dasm 0x608060405234801561001057600080fd5b50
save disassembled output to a file$ fuel-etk-dasm 0x6080604052 > output.asm
view human readable instructions from compiled contract$ fuel-etk-dasm --input contract.bin