fuel-etk-asm

Assemble EVM bytecode from human-readable Ethereum assembly language.

cargomacoslinuxwindows
Try with needOr install directly
Source

About

EVM Toolkit assembler

Commands

fuel-etk-asm

Examples

convert assembly code file to EVM bytecode$ fuel-etk-asm contract.asm -o contract.bin
assemble and display bytecode output to terminal$ fuel-etk-asm contract.asm
compile assembly with optimization enabled$ fuel-etk-asm --optimize contract.asm -o optimized.bin
generate assembly from bytecode hex string$ fuel-etk-asm --disassemble 0x6080604052
validate syntax of assembly file without output$ fuel-etk-asm --check contract.asm