evmdasm
A lightweight ethereum evm bytecode asm instruction registry and disassembler library.
What it is and what it does
evmdasm is a minimal, dependency-free library for working with Ethereum EVM bytecode at the instruction level. It provides a static registry of EVM opcodes and a disassembler that converts raw bytecode into a sequence of named instructions with operands. The library is intentionally lightweight—it does not perform high-level analysis, dynamic execution, or semantic interpretation, leaving those tasks to higher-level tools that build on top of it.
The package is designed as a foundation for other Ethereum analysis tools. Because it has no runtime dependencies and a narrow scope, it installs instantly and remains stable for basic bytecode inspection and disassembly tasks.
Use it for:
- Disassemble raw EVM bytecode into human-readable mnemonics and operands for manual inspection
- Build a higher-level Ethereum analysis tool that needs a reliable opcode registry and bytecode parser
- Analyze smart contract bytecode to extract instruction sequences for static analysis
- Integrate bytecode parsing into security auditing or reverse-engineering workflows
Worth the install?
AI-flagged interpretation of the facts on this page — verify before relying
evmdasm provides a lightweight registry of Ethereum EVM opcodes and a disassembler for EVM bytecode, with no external runtime dependencies.
Yes, if you need lightweight EVM bytecode disassembly with zero dependencies and accept that the project is no longer maintained. It is stable for its narrow scope. No, if you require active maintenance, support for recent EVM opcodes, or high-level analysis features—use a maintained alternative instead.
Install
evmdasm on PyPI
pip
pip install evmdasmuv
uv add evmdasmpoetry
poetry add evmdasmInstalling evmdasm
Before you install
Installation is frictionless with no runtime dependencies, but the project is abandoned—last commit was 2023-06-09 and no releases since 2022-03-11. It remains stable for its narrow scope, but expect no maintenance or updates.
License in practice
Licensed under GPLv2 (copyleft). Any derivative work or distribution must also be open-source under compatible terms; proprietary use is not permitted.
Quickstart
pip install evmdasm
from evmdasm import EvmBytecode
bytecode = EvmBytecode(bytecode_hex)
for instruction in bytecode:
print(instruction.mnemonic, instruction.operand)
Verify before relying
- Whether the opcode registry covers all EVM versions or only those current as of the 2022-03-11 release
- Whether the disassembler handles all EVM bytecode formats or has known limitations
- Specific API surface and available methods beyond basic bytecode iteration
Package facts
| License | GPLv2 (copyleft) |
| Python support | not specified |
| Install friction | low — pure-Python wheel |
| Runtime dependencies | none |
| Maintenance | abandoned — 1,617 days since the last release |
| Last repo commit | |
| First released | |
| Downloads | 131,436/month — #11,588 on PyPI (30-day window, as of 2026-08-14) |
| Known vulnerabilities | none known (OSV.dev, checked 2026-08-14) |
Evidence: evmdasm-0.1.10-py3-none-any.whl
Keywords: evmdasm, ethereum, blockchain, evm, disassembler
Tags
More Software Development packages
Provides backported and experimental type hints…
permissive · top 100 on PyPI
numpyNumPy provides an N-dimensional array object…
permissive · top 100 on PyPI
fastapiFastAPI is a Python web framework for building…
permissive · top 100 on PyPI
annotated-docProvides a way to document function parameters,…
permissive · top 100 on PyPI
typerTyper builds command-line applications from…
permissive · top 1,000 on PyPI
distlibDistlib provides low-level packaging utilities…
permissive · top 1,000 on PyPI
ethereum-dasmDisassembles Ethereum EVM bytecode into…
copyleft · top 15,000 on PyPI
pyevmasmpyevmasm assembles and disassembles Ethereum…
permissive · top 15,000 on PyPI
smdaSMDA is a recursive disassembler library that…
permissive · top 15,000 on PyPI
py-evmPy-EVM is a Python implementation of the…
permissive · top 15,000 on PyPI
qwasmDecodes and disassembles WebAssembly binary…
permissive · top 15,000 on PyPI
mythrilMythril analyzes EVM bytecode for security…
permissive · top 15,000 on PyPI
xdisDisassembles Python bytecode from any Python…
copyleft · top 15,000 on PyPI
nvidia-cuda-nvdisasmnvdisasm disassembles NVIDIA CUDA cubin files…
unclear · top 5,000 on PyPI
bytecodebytecode generates and modifies Python bytecode…
permissive · top 1,000 on PyPI
idaproEnables programmatic binary analysis and…
permissive · top 15,000 on PyPI